summaryrefslogtreecommitdiff
path: root/lib/VMCore/ConstantFold.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-09-11 00:04:14 +0000
committerDan Gohman <gohman@apple.com>2009-09-11 00:04:14 +0000
commit3bfbc4587a7e79f08f8c126a9e62c3475fb90f8b (patch)
treeeee9e6eee6f91607643fd54d7b9030faf8a7c4fb /lib/VMCore/ConstantFold.h
parente6992f728a94654e43269580a10a667f18dadba9 (diff)
downloadllvm-3bfbc4587a7e79f08f8c126a9e62c3475fb90f8b.tar.gz
llvm-3bfbc4587a7e79f08f8c126a9e62c3475fb90f8b.tar.bz2
llvm-3bfbc4587a7e79f08f8c126a9e62c3475fb90f8b.tar.xz
Teach lib/VMCore/ConstantFold.cpp how to set the inbounds keyword and
how to fold notionally-out-of-bounds array getelementptr indices instead of just doing these in lib/Analysis/ConstantFolding.cpp, because it can be done in a fairly general way without TargetData, and because not all constants are visited by lib/Analysis/ConstantFolding.cpp. This enables more constant folding. Also, set the "inbounds" flag when the getelementptr indices are one-past-the-end. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81483 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/ConstantFold.h')
-rw-r--r--lib/VMCore/ConstantFold.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/VMCore/ConstantFold.h b/lib/VMCore/ConstantFold.h
index afa9978767..f4452c98bc 100644
--- a/lib/VMCore/ConstantFold.h
+++ b/lib/VMCore/ConstantFold.h
@@ -64,6 +64,7 @@ namespace llvm {
const Constant *C1,
const Constant *C2);
Constant *ConstantFoldGetElementPtr(LLVMContext &Context, const Constant *C,
+ bool inBounds,
Constant* const *Idxs, unsigned NumIdx);
} // End llvm namespace