Do away with ImmutablePredicateOperand.

llvm-svn: 37961
This commit is contained in:
Evan Cheng 2007-07-06 23:22:46 +00:00
parent d771e05121
commit 76a97c5f8a
2 changed files with 3 additions and 3 deletions

View 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";
}

View 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";
}