diff options
author | Andrew Trick <atrick@apple.com> | 2011-01-27 21:28:51 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2011-01-27 21:28:51 +0000 |
commit | c0ca67601a83fbe4e98988a219afb4859485873d (patch) | |
tree | e4ceea91b220a2edf0ca592b8dc58297ee58bdd6 /llvm/lib/CodeGen | |
parent | 13bb644fddf3d1fa5b57315c704f91eab465aa4a (diff) | |
download | bcm5719-llvm-c0ca67601a83fbe4e98988a219afb4859485873d.tar.gz bcm5719-llvm-c0ca67601a83fbe4e98988a219afb4859485873d.zip |
Remove a temporary workaround for a lencod miscompile. Depends on the fix in r124442.
llvm-svn: 124443
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index 87739c03914..ad835806a4e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp @@ -1645,13 +1645,11 @@ bool RegReductionPQBase::HighRegPressure(const SUnit *SU) const { // NumSuccsLeft counts all deps. Don't compare it with NumSuccs which only // counts data deps. To be more precise, we could maintain a // NumDataSuccsLeft count. - /* FIXME: exposing a downstream bug, JM/lencode miscompile if (PredSU->NumSuccsLeft != PredSU->Succs.size()) { DEBUG(dbgs() << " SU(" << PredSU->NodeNum << ") live across SU(" << SU->NodeNum << ")\n"); continue; } - */ const SDNode *PN = PredSU->getNode(); if (!PN->isMachineOpcode()) { if (PN->getOpcode() == ISD::CopyFromReg) { |