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

Allow virtreg redefines when verifying for RegAllocFast

llvm-svn: 103820
This commit is contained in:
Jakob Stoklund Olesen 2010-05-14 21:55:44 +00:00
parent d5fb80cbf4
commit 89a21b1cc3

View File

@ -782,7 +782,7 @@ bool RAFast::runOnMachineFunction(MachineFunction &Fn) {
<< "********** Function: "
<< ((Value*)Fn.getFunction())->getName() << '\n');
if (VerifyFastRegalloc)
Fn.verify();
Fn.verify(this, true);
MF = &Fn;
MRI = &MF->getRegInfo();
TM = &Fn.getTarget();