Fix typo in comment.

llvm-svn: 126941
This commit is contained in:
Richard Osborne 2011-03-03 14:21:22 +00:00
parent af52c52569
commit 5003782293
1 changed files with 1 additions and 1 deletions

View File

@ -1251,7 +1251,7 @@ struct SPrintFOpt : public LibCallOptimization {
return V; return V;
} }
// sprintf(str, format, ...) -> iprintf(str, format, ...) if no floating // sprintf(str, format, ...) -> siprintf(str, format, ...) if no floating
// point arguments. // point arguments.
if (TLI->has(LibFunc::siprintf) && !CallHasFloatingPointArgument(CI)) { if (TLI->has(LibFunc::siprintf) && !CallHasFloatingPointArgument(CI)) {
Module *M = B.GetInsertBlock()->getParent()->getParent(); Module *M = B.GetInsertBlock()->getParent()->getParent();