diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-02-12 18:19:57 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-02-12 18:19:57 +0000 |
commit | 210ce0feb50becca2f2ef619175b2e905c435598 (patch) | |
tree | 1533d98feac56b122b12f56d3b05168e7c998a1f /llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp | |
parent | 76c95562bc34c2819642e9756b31e508f838b052 (diff) | |
download | bcm5719-llvm-210ce0feb50becca2f2ef619175b2e905c435598.tar.gz bcm5719-llvm-210ce0feb50becca2f2ef619175b2e905c435598.zip |
SimplifyLibCalls: Add missing legalize check on various printf to puts and
putchar transforms, their return values are not compatible.
llvm-svn: 125442
Diffstat (limited to 'llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp b/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp index c8c00987cc3..ec45b71dd36 100644 --- a/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp +++ b/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp @@ -1092,8 +1092,13 @@ struct PrintFOpt : public LibCallOptimization { return CI->use_empty() ? (Value*)CI : ConstantInt::get(CI->getType(), 0); - // printf("x") -> putchar('x'), even for '%'. Return the result of putchar - // in case there is an error writing to stdout. + // Do not do any of the following transformations if the printf return value + // is used, in general the printf return value is not compatible with either + // putchar() or puts(). + if (!CI->use_empty()) + return 0; + + // printf("x") -> putchar('x'), even for '%'. if (FormatStr.size() == 1) { Value *Res = EmitPutChar(B.getInt32(FormatStr[0]), B, TD); if (CI->use_empty()) return CI; @@ -1126,8 +1131,7 @@ struct PrintFOpt : public LibCallOptimization { // printf("%s\n", str) --> puts(str) if (FormatStr == "%s\n" && CI->getNumArgOperands() > 1 && - CI->getArgOperand(1)->getType()->isPointerTy() && - CI->use_empty()) { + CI->getArgOperand(1)->getType()->isPointerTy()) { EmitPutS(CI->getArgOperand(1), B, TD); return CI; } @@ -1344,7 +1348,7 @@ struct PutsOpt : public LibCallOptimization { if (!GetConstantStringInfo(CI->getArgOperand(0), Str)) return 0; - if (Str.empty()) { + if (Str.empty() && CI->use_empty()) { // puts("") -> putchar('\n') Value *Res = EmitPutChar(B.getInt32('\n'), B, TD); if (CI->use_empty()) return CI; |