summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/InstCombine/2004-09-20-BadLoadCombine.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-04-19 22:32:52 +0000
committerChris Lattner <sabre@nondot.org>2008-04-19 22:32:52 +0000
commitb839c05a05f296cece07cc55b6782719a26a6fd4 (patch)
tree7c66c9acef36a9d91ed278bd6bcaac14ee0ee5bb /llvm/test/Transforms/InstCombine/2004-09-20-BadLoadCombine.ll
parent50fb77f829b5395abf52b949624166570a7a73a0 (diff)
downloadbcm5719-llvm-b839c05a05f296cece07cc55b6782719a26a6fd4.tar.gz
bcm5719-llvm-b839c05a05f296cece07cc55b6782719a26a6fd4.zip
rename *.llx -> *.ll, last batch.
llvm-svn: 49971
Diffstat (limited to 'llvm/test/Transforms/InstCombine/2004-09-20-BadLoadCombine.ll')
-rw-r--r--llvm/test/Transforms/InstCombine/2004-09-20-BadLoadCombine.ll18
1 files changed, 18 insertions, 0 deletions
diff --git a/llvm/test/Transforms/InstCombine/2004-09-20-BadLoadCombine.ll b/llvm/test/Transforms/InstCombine/2004-09-20-BadLoadCombine.ll
new file mode 100644
index 00000000000..e56c390d13f
--- /dev/null
+++ b/llvm/test/Transforms/InstCombine/2004-09-20-BadLoadCombine.ll
@@ -0,0 +1,18 @@
+; RUN: llvm-as < %s | opt -instcombine -mem2reg | llvm-dis | \
+; RUN: not grep {i32 1}
+
+; When propagating the load through the select, make sure that the load is
+; inserted where the original load was, not where the select is. Not doing
+; so could produce incorrect results!
+
+define i32 @test(i1 %C) {
+ %X = alloca i32 ; <i32*> [#uses=3]
+ %X2 = alloca i32 ; <i32*> [#uses=2]
+ store i32 1, i32* %X
+ store i32 2, i32* %X2
+ %Y = select i1 %C, i32* %X, i32* %X2 ; <i32*> [#uses=1]
+ store i32 3, i32* %X
+ %Z = load i32* %Y ; <i32> [#uses=1]
+ ret i32 %Z
+}
+
OpenPOWER on IntegriCloud