diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-06-19 01:26:51 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-06-19 01:26:51 +0000 |
commit | eaa91b0a1fc68984aae51f3c4b0cf29b38f89dac (patch) | |
tree | 93a8cd9aecd8080137878288ae7fc57872f4e5ca /lib/Target/Target.td | |
parent | 4e6b1e1d999a224d932c466118aad577f27cdd56 (diff) |
Replace TargetInstrInfo::CanBeDuplicated() with a M_NOT_DUPLICABLE bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37643 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Target.td')
-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 4babef1574..43e3af8667 100644 --- a/lib/Target/Target.td +++ b/lib/Target/Target.td @@ -193,6 +193,7 @@ class Instruction { 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? + bit isNotDuplicable = 0; // Is it unsafe to duplicate this instruction? InstrItinClass Itinerary = NoItinerary;// Execution steps used for scheduling. |