diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-07-21 00:34:19 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-07-21 00:34:19 +0000 |
commit | ac1591be42c966b35e4804b80103017b708cbaaf (patch) | |
tree | 901134b4b8c3bf7a9c949f46e2e6da2276d9689d /llvm/lib/Target/Target.td | |
parent | 147d9fa57d40e9d07335d265c73647e4fcf8bb88 (diff) | |
download | bcm5719-llvm-ac1591be42c966b35e4804b80103017b708cbaaf.tar.gz bcm5719-llvm-ac1591be42c966b35e4804b80103017b708cbaaf.zip |
No more noResults.
llvm-svn: 40132
Diffstat (limited to 'llvm/lib/Target/Target.td')
-rw-r--r-- | llvm/lib/Target/Target.td | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Target/Target.td b/llvm/lib/Target/Target.td index 0c0d66d753c..1583a93a988 100644 --- a/llvm/lib/Target/Target.td +++ b/llvm/lib/Target/Target.td @@ -192,7 +192,6 @@ class Instruction { bit hasDelaySlot = 0; // Does this instruction have an delay slot? 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 isNotDuplicable = 0; // Is it unsafe to duplicate this instruction? InstrItinClass Itinerary = NoItinerary;// Execution steps used for scheduling. |