[llvm-commits] [llvm] r50699 - /llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp

Chris Lattner sabre at nondot.org
Mon May 5 19:31:18 PDT 2008


Author: lattner
Date: Mon May  5 21:31:18 2008
New Revision: 50699

URL: http://llvm.org/viewvc/llvm-project?rev=50699&view=rev
Log:
fix typo Duncan noticed

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

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

==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp Mon May  5 21:31:18 2008
@@ -445,7 +445,7 @@
     }
     
     // Alternatively, I must be a call or invoke that returns multiple retvals.
-    // We can't use 'DemoteRegToStack' because the at will create loads and
+    // We can't use 'DemoteRegToStack' because that will create loads and
     // stores of aggregates which is not valid yet.  If I is a call, we can just
     // pull all the getresult instructions up to this block.  If I is an invoke,
     // we are out of luck.





More information about the llvm-commits mailing list