[llvm-commits] [llvm] r126941 - /llvm/trunk/lib/Transforms/Scalar/SimplifyLibCalls.cpp

Richard Osborne richard at xmos.com
Thu Mar 3 06:21:22 PST 2011


Author: friedgold
Date: Thu Mar  3 08:21:22 2011
New Revision: 126941

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

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

Modified: llvm/trunk/lib/Transforms/Scalar/SimplifyLibCalls.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/SimplifyLibCalls.cpp?rev=126941&r1=126940&r2=126941&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/SimplifyLibCalls.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/SimplifyLibCalls.cpp Thu Mar  3 08:21:22 2011
@@ -1251,7 +1251,7 @@
       return V;
     }
 
-    // sprintf(str, format, ...) -> iprintf(str, format, ...) if no floating
+    // sprintf(str, format, ...) -> siprintf(str, format, ...) if no floating
     // point arguments.
     if (TLI->has(LibFunc::siprintf) && !CallHasFloatingPointArgument(CI)) {
       Module *M = B.GetInsertBlock()->getParent()->getParent();





More information about the llvm-commits mailing list