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 | d04409154fe69b7b6e162c84b3fd4ca3d69c976d (patch) | |
tree | 413c1ade8776832ad3bb481895ad51180a934aa0 | |
parent | 452a818c6a8b50844027dec53550057923e663a5 (diff) | |
download | bcm5719-llvm-d04409154fe69b7b6e162c84b3fd4ca3d69c976d.tar.gz bcm5719-llvm-d04409154fe69b7b6e162c84b3fd4ca3d69c976d.zip |
Added clobbersPred.
llvm-svn: 37466
-rw-r--r-- | llvm/lib/Target/Target.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/Target.td b/llvm/lib/Target/Target.td index 36a8f2a354c..d646e28c1d1 100644 --- a/llvm/lib/Target/Target.td +++ b/llvm/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. |