[llvm-commits] [llvm] r50713 - /llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp

Devang Patel dpatel at apple.com
Mon May 5 22:40:11 PDT 2008


Author: dpatel
Date: Tue May  6 00:40:11 2008
New Revision: 50713

URL: http://llvm.org/viewvc/llvm-project?rev=50713&view=rev
Log:
Fix typo.

Modified:
    llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp?rev=50713&r1=50712&r2=50713&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp Tue May  6 00:40:11 2008
@@ -11389,7 +11389,7 @@
     }
 
     // See if we can trivially sink this instruction to a successor basic block.
-    // FIXME: Remove GetREsultInst test when first class support for aggregates is
+    // FIXME: Remove GetResultInst test when first class support for aggregates is
     // implemented.
     if (I->hasOneUse() && !isa<GetResultInst>(I)) {
       BasicBlock *BB = I->getParent();





More information about the llvm-commits mailing list