aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-06-06 10:15:28 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-06-06 10:15:28 +0000
commitc1d7384cb0d6ecb0be2ec0f07a5c44d5e950cfbd (patch)
tree0bb77981e56e164dd4fb50e428b4ada700932cec
parentb5c1c9c8e30d8498cdb2d0ee215f05ca8dc3e4e2 (diff)
Added clobbersPred.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37466 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/Target.td1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/Target.td b/lib/Target/Target.td
index 36a8f2a354..d646e28c1d 100644
--- a/lib/Target/Target.td
+++ b/lib/Target/Target.td
@@ -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.