From: Matt Arsenault Date: Mon, 7 Jul 2014 18:34:42 +0000 (+0000) Subject: Fix typo, weird indentation X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7b1c5f52b0f83515e104f8352c4c1cb0a6424905;p=oota-llvm.git Fix typo, weird indentation git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212472 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/R600/SIMachineFunctionInfo.cpp b/lib/Target/R600/SIMachineFunctionInfo.cpp index ce0f82441fb..e2df950fd27 100644 --- a/lib/Target/R600/SIMachineFunctionInfo.cpp +++ b/lib/Target/R600/SIMachineFunctionInfo.cpp @@ -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; }