summaryrefslogtreecommitdiffstats
path: root/llvm/test/Regression/Transforms/InstCombine/cast-propagate.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-04-08 20:39:40 +0000
committerChris Lattner <sabre@nondot.org>2004-04-08 20:39:40 +0000
commit22b2166b36fe924013ce11abaa41f77cedc8bd3f (patch)
tree49a8e8453dca797b1d11d6b9ba1e0287871d56a4 /llvm/test/Regression/Transforms/InstCombine/cast-propagate.ll
parent10db062d4121785bd2d4d0999211767a146df1a8 (diff)
downloadbcm5719-llvm-22b2166b36fe924013ce11abaa41f77cedc8bd3f.tar.gz
bcm5719-llvm-22b2166b36fe924013ce11abaa41f77cedc8bd3f.zip
New testcase
llvm-svn: 12783
Diffstat (limited to 'llvm/test/Regression/Transforms/InstCombine/cast-propagate.ll')
-rw-r--r--llvm/test/Regression/Transforms/InstCombine/cast-propagate.ll9
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/test/Regression/Transforms/InstCombine/cast-propagate.ll b/llvm/test/Regression/Transforms/InstCombine/cast-propagate.ll
new file mode 100644
index 00000000000..bf1143d3e59
--- /dev/null
+++ b/llvm/test/Regression/Transforms/InstCombine/cast-propagate.ll
@@ -0,0 +1,9 @@
+; RUN: llvm-as < cast-propagate.ll | opt -instcombine -mem2reg | llvm-dis | not grep load
+
+int %test1(uint* %P) {
+ %A = alloca uint
+ store uint 123, uint* %A
+ %Q = cast uint* %A to int* ; Cast the result of the load not the source
+ %V = load int* %Q
+ ret int %V
+}
OpenPOWER on IntegriCloud