mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-07 11:59:09 +00:00
Another fix to prevent debug info from affecting codegen. rdar://7797940
llvm-svn: 105470
This commit is contained in:
parent
8275ffe1df
commit
ab666c3d62
@ -1024,6 +1024,10 @@ bool ARMLoadStoreOpt::LoadStoreMultipleOpti(MachineBasicBlock &MBB) {
|
||||
RS->enterBasicBlock(&MBB);
|
||||
MachineBasicBlock::iterator MBBI = MBB.begin(), E = MBB.end();
|
||||
while (MBBI != E) {
|
||||
if (MBBI->isDebugValue()) {
|
||||
++MBBI;
|
||||
continue;
|
||||
}
|
||||
if (FixInvalidRegPairOp(MBB, MBBI))
|
||||
continue;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user