Do away with ImmutablePredicateOperand.
authorEvan Cheng <evan.cheng@apple.com>
Fri, 6 Jul 2007 23:22:46 +0000 (23:22 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Fri, 6 Jul 2007 23:22:46 +0000 (23:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37961 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMInstrInfo.td
lib/Target/PowerPC/PPCInstrInfo.td

index c609ee6174db2effc25098aad3e7b2be96c322b9..6884e0001c8ce5710ce2e4e660aee6e434ddbf03 100644 (file)
@@ -288,7 +288,7 @@ def pred : PredicateOperand<OtherVT, (ops i32imm, CCR),
 
 // Conditional code operand for conditional branches and conditional moves.
 // No AlwaysVal value.
-def ccop : ImmutablePredicateOperand<OtherVT, (ops i32imm, CCR), (ops)> {
+def ccop : PredicateOperand<OtherVT, (ops i32imm, CCR), (ops)> {
   let PrintMethod = "printPredicateOperand";
 }
 
index 4ffde0a97faa82482364e80c4ecdaeccfefd9264..fe189784009f66f78d372a2daba3ecce13171d96 100644 (file)
@@ -272,8 +272,8 @@ def memrix : Operand<iPTR> {   // memri where the imm is shifted 2 bits.
 
 // PowerPC Predicate operand.  20 = (0<<5)|20 = always, CR0 is a dummy reg
 // that doesn't matter.
-def pred : ImmutablePredicateOperand<OtherVT, (ops imm, CRRC),
-                                              (ops (i32 20), CR0)> {
+def pred : PredicateOperand<OtherVT, (ops imm, CRRC),
+                                     (ops (i32 20), CR0)> {
   let PrintMethod = "printPredicateOperand";
 }