diff options
author | David Greene <greened@obbligato.org> | 2007-06-29 21:42:03 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2007-06-29 21:42:03 +0000 |
commit | 821262953af418649e49e52009f9d3ddae5736c2 (patch) | |
tree | ebd8ca5d3d75b49b3708c7d2c7fab71d5ab72ed7 | |
parent | cdc85a58a011a6af4f0b3967bfa83c2f2a141446 (diff) |
Remove unused variables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37816 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index 8feda9a0e0..51831ff75a 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp @@ -615,9 +615,6 @@ static unsigned calcMaxScratches(const SUnit *SU) { // Bottom up bool bu_ls_rr_sort::operator()(const SUnit *left, const SUnit *right) const { - bool LIsTarget = left->Node->isTargetOpcode(); - bool RIsTarget = right->Node->isTargetOpcode(); - // There used to be a special tie breaker here that looked for // two-address instructions and preferred the instruction with a // def&use operand. The special case triggered diagnostics when |