diff options
author | Dan Gohman <gohman@apple.com> | 2010-02-08 22:00:06 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-02-08 22:00:06 +0000 |
commit | baf0c67988feec5b7698f89dce499ddb7d0c3c42 (patch) | |
tree | 3a207969777cb02b93fa8cebac770b28b5100e62 /include/llvm/Analysis/ConstantFolding.h | |
parent | 8ac38f2a616d303423e66023d2d2a6ff96c5040a (diff) |
Add const qualifiers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95582 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/ConstantFolding.h')
-rw-r--r-- | include/llvm/Analysis/ConstantFolding.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/ConstantFolding.h b/include/llvm/Analysis/ConstantFolding.h index 06951c7e45..e2675eb2d4 100644 --- a/include/llvm/Analysis/ConstantFolding.h +++ b/include/llvm/Analysis/ConstantFolding.h @@ -37,7 +37,7 @@ Constant *ConstantFoldInstruction(Instruction *I, const TargetData *TD = 0); /// ConstantFoldConstantExpression - Attempt to fold the constant expression /// using the specified TargetData. If successful, the constant result is /// result is returned, if not, null is returned. -Constant *ConstantFoldConstantExpression(ConstantExpr *CE, +Constant *ConstantFoldConstantExpression(const ConstantExpr *CE, const TargetData *TD = 0); /// ConstantFoldInstOperands - Attempt to constant fold an instruction with the |