[llvm] r217892 - Fix typo
Matt Arsenault
Matthew.Arsenault at amd.com
Tue Sep 16 11:00:23 PDT 2014
Author: arsenm
Date: Tue Sep 16 13:00:23 2014
New Revision: 217892
URL: http://llvm.org/viewvc/llvm-project?rev=217892&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=217892&r1=217891&r2=217892&view=diff
==============================================================================
--- llvm/trunk/lib/Target/R600/SIShrinkInstructions.cpp (original)
+++ llvm/trunk/lib/Target/R600/SIShrinkInstructions.cpp Tue Sep 16 13:00:23 2014
@@ -195,7 +195,7 @@ bool SIShrinkInstructions::runOnMachineF
continue;
if (!canShrink(MI, TII, TRI, MRI)) {
- // Try commtuing the instruction and see if that enables us to shrink
+ // Try commuting the instruction and see if that enables us to shrink
// it.
if (!MI.isCommutable() || !TII->commuteInstruction(&MI) ||
!canShrink(MI, TII, TRI, MRI))
More information about the llvm-commits
mailing list