mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Remove a temporary workaround for a lencod miscompile. Depends on the fix in r124442.
llvm-svn: 124443
This commit is contained in:
parent
6a24682579
commit
3f570c28b7
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user