Fix typo, weird indentation

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212472 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Matt Arsenault 2014-07-07 18:34:42 +00:00
parent 041e0da7a2
commit 7b1c5f52b0

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;
}