[llvm] r218223 - Fix typo
Matt Arsenault
Matthew.Arsenault at amd.com
Sun Sep 21 10:27:33 PDT 2014
Author: arsenm
Date: Sun Sep 21 12:27:32 2014
New Revision: 218223
URL: http://llvm.org/viewvc/llvm-project?rev=218223&view=rev
Log:
Fix typo
Modified:
llvm/trunk/lib/Target/R600/SIShrinkInstructions.cpp
Modified: llvm/trunk/lib/Target/R600/SIShrinkInstructions.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/R600/SIShrinkInstructions.cpp?rev=218223&r1=218222&r2=218223&view=diff
==============================================================================
--- llvm/trunk/lib/Target/R600/SIShrinkInstructions.cpp (original)
+++ llvm/trunk/lib/Target/R600/SIShrinkInstructions.cpp Sun Sep 21 12:27:32 2014
@@ -221,10 +221,9 @@ bool SIShrinkInstructions::runOnMachineF
// vreg1 = VOPC;
// S_AND_B64 vreg0, vreg1
//
- // So, instead of forcing the instruction to write to VCC, we provide a
- // hint to the register allocator to use VCC and then we
- // we will run this pass again after RA and shrink it if it outpus to
- // VCC.
+ // So, instead of forcing the instruction to write to VCC, we provide
+ // a hint to the register allocator to use VCC and then we we will run
+ // this pass again after RA and shrink it if it outputs to VCC.
MRI.setRegAllocationHint(MI.getOperand(0).getReg(), 0, AMDGPU::VCC);
continue;
}
More information about the llvm-commits
mailing list