1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Clear RegSequences vector after eliminating REG_SEQUENCE instructions.

llvm-svn: 103435
This commit is contained in:
Evan Cheng 2010-05-10 21:24:55 +00:00
parent a0f98775e9
commit 040646a78e

View File

@ -1179,5 +1179,6 @@ bool TwoAddressInstructionPass::EliminateRegSequences() {
MI->eraseFromParent();
}
RegSequences.clear();
return true;
}