summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-10-01 05:51:02 +0000
committerChris Lattner <sabre@nondot.org>2010-10-01 05:51:02 +0000
commitc663a6738460bfce20a019fa4a6e647b92073a1b (patch)
tree495c5318ffec2073ce4cbf832a76e973c79e92dd /llvm/lib/Transforms
parent98e82678bdbe2aaaaa1e0ad47c4d898e74475ef0 (diff)
downloadbcm5719-llvm-c663a6738460bfce20a019fa4a6e647b92073a1b.tar.gz
bcm5719-llvm-c663a6738460bfce20a019fa4a6e647b92073a1b.zip
fix PR8267 - Instcombine shouldn't optimizer away volatile memcpy's.
llvm-svn: 115296
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
index 0ebe3b45589..ed078ec1c51 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
@@ -280,7 +280,8 @@ Instruction *InstCombiner::visitCallInst(CallInst &CI) {
// memmove/cpy/set of zero bytes is a noop.
if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) {
- if (NumBytes->isNullValue()) return EraseInstFromFunction(CI);
+ if (NumBytes->isNullValue())
+ return EraseInstFromFunction(CI);
if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes))
if (CI->getZExtValue() == 1) {
@@ -289,6 +290,10 @@ Instruction *InstCombiner::visitCallInst(CallInst &CI) {
// alignment is sufficient.
}
}
+
+ // No other transformations apply to volatile transfers.
+ if (MI->isVolatile())
+ return 0;
// If we have a memmove and the source operation is a constant global,
// then the source and dest pointers can't alias, so we can change this
OpenPOWER on IntegriCloud