summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-07-06 23:22:46 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-07-06 23:22:46 +0000
commit76a97c5f8a7db07693eb6a09d8f42fbc0df099cc (patch)
tree07bddfcb078a5b36fbf432b217276c6e9a1911e8 /llvm/lib
parentd771e05121e04db3c648f334222515e73004a825 (diff)
downloadbcm5719-llvm-76a97c5f8a7db07693eb6a09d8f42fbc0df099cc.tar.gz
bcm5719-llvm-76a97c5f8a7db07693eb6a09d8f42fbc0df099cc.zip
Do away with ImmutablePredicateOperand.
llvm-svn: 37961
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/ARM/ARMInstrInfo.td2
-rw-r--r--llvm/lib/Target/PowerPC/PPCInstrInfo.td4
2 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.td b/llvm/lib/Target/ARM/ARMInstrInfo.td
index c609ee6174d..6884e0001c8 100644
--- a/llvm/lib/Target/ARM/ARMInstrInfo.td
+++ b/llvm/lib/Target/ARM/ARMInstrInfo.td
@@ -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";
}
diff --git a/llvm/lib/Target/PowerPC/PPCInstrInfo.td b/llvm/lib/Target/PowerPC/PPCInstrInfo.td
index 4ffde0a97fa..fe189784009 100644
--- a/llvm/lib/Target/PowerPC/PPCInstrInfo.td
+++ b/llvm/lib/Target/PowerPC/PPCInstrInfo.td
@@ -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";
}
OpenPOWER on IntegriCloud