forked from OSchip/llvm-project
[SystemZ] Make AnyRegBitRegClass unallocatable.
AnyReg is just for the assembler and it is better to have it as not allocatable in order to simplify (make more intuitive) the RegPressureSets. Review: Ulrich Weigand llvm-svn: 327715
This commit is contained in:
parent
573102e344
commit
a9f05a9d50
|
|
@ -130,7 +130,7 @@ defm AnyReg : SystemZRegClass<"AnyReg",
|
|||
[i64, f64, v8i8, v4i16, v2i32, v2f32], 64,
|
||||
(add (sequence "R%uD", 0, 15),
|
||||
(sequence "F%uD", 0, 15),
|
||||
(sequence "V%u", 0, 15))>;
|
||||
(sequence "V%u", 0, 15)), 0/*allocatable*/>;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Floating-point registers
|
||||
|
|
|
|||
Loading…
Reference in New Issue