[llvm] r217730 - Fix typo
Matt Arsenault
Matthew.Arsenault at amd.com
Sat Sep 13 12:58:27 PDT 2014
Author: arsenm
Date: Sat Sep 13 14:58:27 2014
New Revision: 217730
URL: http://llvm.org/viewvc/llvm-project?rev=217730&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=217730&r1=217729&r2=217730&view=diff
==============================================================================
--- llvm/trunk/lib/Target/R600/SIShrinkInstructions.cpp (original)
+++ llvm/trunk/lib/Target/R600/SIShrinkInstructions.cpp Sat Sep 13 14:58:27 2014
@@ -213,10 +213,10 @@ bool SIShrinkInstructions::runOnMachineF
unsigned DstReg = MI.getOperand(0).getReg();
if (TargetRegisterInfo::isVirtualRegister(DstReg)) {
// VOPC instructions can only write to the VCC register. We can't
- // force them to use VCC here, because the register allocator
- // has trouble with sequences like this, which cause the allocator
- // to run out of registes if vreg0 and vreg1 belong to the VCCReg
- // register class:
+ // force them to use VCC here, because the register allocator has
+ // trouble with sequences like this, which cause the allocator to run
+ // out of registers if vreg0 and vreg1 belong to the VCCReg register
+ // class:
// vreg0 = VOPC;
// vreg1 = VOPC;
// S_AND_B64 vreg0, vreg1
More information about the llvm-commits
mailing list