Added clobbersPred.
authorEvan Cheng <evan.cheng@apple.com>
Wed, 6 Jun 2007 10:15:28 +0000 (10:15 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 6 Jun 2007 10:15:28 +0000 (10:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37466 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Target.td

index 36a8f2a354c97d624d50942b7bb11a3b3e0bdd39..d646e28c1d1f7f1eae76956a5d75cdaf18f24216 100644 (file)
@@ -188,6 +188,7 @@ class Instruction {
   bit usesCustomDAGSchedInserter = 0; // Pseudo instr needing special help.
   bit hasCtrlDep   = 0;     // Does this instruction r/w ctrl-flow chains?
   bit noResults    = 0;     // Does this instruction produce no results?
+  bit clobbersPred = 0;     // Does it clobbers condition code / predicate?
   
   InstrItinClass Itinerary = NoItinerary;// Execution steps used for scheduling.