diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-19 22:32:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-19 22:32:52 +0000 |
commit | b839c05a05f296cece07cc55b6782719a26a6fd4 (patch) | |
tree | 7c66c9acef36a9d91ed278bd6bcaac14ee0ee5bb /llvm/test/Transforms/InstCombine/2004-09-20-BadLoadCombine.ll | |
parent | 50fb77f829b5395abf52b949624166570a7a73a0 (diff) | |
download | bcm5719-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.ll | 18 |
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 +} + |