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 | fa9b80eb64127b3d9691e18537975635520e51e9 (patch) | |
tree | 0347eede01a95b530473cdf2b2a3e70b98827042 /lib/Analysis/ConstantFolding.cpp | |
parent | bbfb9c57c71ed4a2a4a60010b98dbfe96c984b14 (diff) |
Avoid unnecessarily casting away const, fixing a FIXME.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46591 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ConstantFolding.cpp')
-rw-r--r-- | lib/Analysis/ConstantFolding.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/ConstantFolding.cpp b/lib/Analysis/ConstantFolding.cpp index 21e19444cf..e29b2dba86 100644 --- a/lib/Analysis/ConstantFolding.cpp +++ b/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: |