projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f46c78
)
Add testcase for PR2213.
author
Owen Anderson
<resistor@mac.com>
Fri, 11 Apr 2008 05:13:32 +0000
(
05:13
+0000)
committer
Owen Anderson
<resistor@mac.com>
Fri, 11 Apr 2008 05:13:32 +0000
(
05:13
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49517
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/Transforms/GVN/call.ll
[new file with mode: 0644]
patch
|
blob
diff --git a/test/Transforms/GVN/call.ll
b/test/Transforms/GVN/call.ll
new file mode 100644
(file)
index 0000000..
0a045c8
--- /dev/null
+++ b/
test/Transforms/GVN/call.ll
@@ -0,0
+1,12
@@
+; RUN: llvm-as < %s | opt -gvn | llvm-dis | not grep tmp2
+; PR2213
+
+define i32* @f(i8* %x) {
+entry:
+ %tmp = call i8* @m( i32 12 ) ; <i8*> [#uses=2]
+ %tmp1 = bitcast i8* %tmp to i32* ; <i32*> [#uses=0]
+ %tmp2 = bitcast i8* %tmp to i32* ; <i32*> [#uses=0]
+ ret i32* %tmp2
+}
+
+declare i8* @m(i32)