summaryrefslogtreecommitdiff
path: root/utils/TableGen/InstrInfoEmitter.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-07-06 23:23:38 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-07-06 23:23:38 +0000
commitc419bd3396cc035942b219efae30dd2890ae430f (patch)
treece12f6a54c3cd1fd27b84e2a2c759d7698cc1ff4 /utils/TableGen/InstrInfoEmitter.cpp
parent4b9cb7d135fbd0fbecbf8579d741e15e4b02f176 (diff)
downloadllvm-c419bd3396cc035942b219efae30dd2890ae430f.tar.gz
llvm-c419bd3396cc035942b219efae30dd2890ae430f.tar.bz2
llvm-c419bd3396cc035942b219efae30dd2890ae430f.tar.xz
ImmutablePredicateOperand is no more.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37963 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/InstrInfoEmitter.cpp')
-rw-r--r--utils/TableGen/InstrInfoEmitter.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp
index a57770de46..af01e4cd75 100644
--- a/utils/TableGen/InstrInfoEmitter.cpp
+++ b/utils/TableGen/InstrInfoEmitter.cpp
@@ -107,8 +107,7 @@ InstrInfoEmitter::GetOperandInfo(const CodeGenInstruction &Inst) {
// Predicate operands. Check to see if the original unexpanded operand
// was of type PredicateOperand.
- if (Inst.OperandList[i].Rec->isSubClassOf("PredicateOperand") &&
- !Inst.OperandList[i].Rec->getValueAsBit("isImmutable"))
+ if (Inst.OperandList[i].Rec->isSubClassOf("PredicateOperand"))
Res += "|M_PREDICATE_OPERAND";
// Fill in constraint info.