diff options
| author | Dan Gohman <gohman@apple.com> | 2008-01-31 01:05:10 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2008-01-31 01:05:10 +0000 |
| commit | a65951fef0751835fdac48b71afe93622a806bc3 (patch) | |
| tree | 4633be96fecab55df741ed773289b06524a2c1d5 /llvm/lib | |
| parent | ed346f2ed53ec820ffdb1b7e3890ede3aa943ab5 (diff) | |
| download | bcm5719-llvm-a65951fef0751835fdac48b71afe93622a806bc3.tar.gz bcm5719-llvm-a65951fef0751835fdac48b71afe93622a806bc3.zip | |
Avoid unnecessarily casting away const, fixing a FIXME.
llvm-svn: 46591
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Analysis/ConstantFolding.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/ConstantFolding.cpp b/llvm/lib/Analysis/ConstantFolding.cpp index 21e19444cfe..e29b2dba86c 100644 --- a/llvm/lib/Analysis/ConstantFolding.cpp +++ b/llvm/lib/Analysis/ConstantFolding.cpp @@ -508,7 +508,7 @@ Constant *llvm::ConstantFoldLoadThroughGEPConstantExpr(Constant *C, /// canConstantFoldCallTo - Return true if its even possible to fold a call to /// the specified function. bool -llvm::canConstantFoldCallTo(Function *F) { +llvm::canConstantFoldCallTo(const Function *F) { switch (F->getIntrinsicID()) { case Intrinsic::sqrt: case Intrinsic::powi: diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index e373478f113..10f05bc8dd0 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -1979,7 +1979,7 @@ static bool CanConstantFold(const Instruction *I) { if (const CallInst *CI = dyn_cast<CallInst>(I)) if (const Function *F = CI->getCalledFunction()) - return canConstantFoldCallTo((Function*)F); // FIXME: elim cast + return canConstantFoldCallTo(F); return false; } |

