1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Fix typo, weird indentation

llvm-svn: 212472
This commit is contained in:
Matt Arsenault 2014-07-07 18:34:42 +00:00
parent b4e00dee49
commit 98979d7f5f

View File

@ -62,8 +62,10 @@ static unsigned createLaneVGPR(MachineRegisterInfo &MRI, MachineFunction *MF) {
return VGPR;
}
}
MF->getFunction()->getContext().emitError(
"Could not find S_ENGPGM instrtuction.");
LLVMContext &Ctx = MF->getFunction()->getContext();
Ctx.emitError("Could not find S_ENDPGM instruction.");
return VGPR;
}