From ea2578c63ffe09d030ed5520b6b82f7cc0026340 Mon Sep 17 00:00:00 2001 From: Richard Osborne Date: Thu, 3 Mar 2011 14:21:22 +0000 Subject: [PATCH] Fix typo in comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126941 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/SimplifyLibCalls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/Scalar/SimplifyLibCalls.cpp b/lib/Transforms/Scalar/SimplifyLibCalls.cpp index 0c08c5e9228..54eaada3e43 100644 --- a/lib/Transforms/Scalar/SimplifyLibCalls.cpp +++ b/lib/Transforms/Scalar/SimplifyLibCalls.cpp @@ -1251,7 +1251,7 @@ struct SPrintFOpt : public LibCallOptimization { 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();