diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-06-06 10:15:28 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-06-06 10:15:28 +0000 |
commit | c1d7384cb0d6ecb0be2ec0f07a5c44d5e950cfbd (patch) | |
tree | 0bb77981e56e164dd4fb50e428b4ada700932cec /lib/Target | |
parent | b5c1c9c8e30d8498cdb2d0ee215f05ca8dc3e4e2 (diff) | |
download | external_llvm-c1d7384cb0d6ecb0be2ec0f07a5c44d5e950cfbd.zip external_llvm-c1d7384cb0d6ecb0be2ec0f07a5c44d5e950cfbd.tar.gz external_llvm-c1d7384cb0d6ecb0be2ec0f07a5c44d5e950cfbd.tar.bz2 |
Added clobbersPred.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37466 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/Target.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/Target.td b/lib/Target/Target.td index 36a8f2a..d646e28 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. |