OSDN Git Service

new testcase. @foo should be marked fastcc by globalopt
authorChris Lattner <sabre@nondot.org>
Sun, 25 Feb 2007 21:04:39 +0000 (21:04 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 25 Feb 2007 21:04:39 +0000 (21:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34607 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/GlobalOpt/constantexpr-dangle.ll [new file with mode: 0644]

diff --git a/test/Transforms/GlobalOpt/constantexpr-dangle.ll b/test/Transforms/GlobalOpt/constantexpr-dangle.ll
new file mode 100644 (file)
index 0000000..89ce1ee
--- /dev/null
@@ -0,0 +1,11 @@
+; RUN: llvm-as < %s | opt -instcombine -globalopt | llvm-dis | grep 'internal fastcc float @foo'
+define internal float @foo() {
+        ret float 0.000000e+00
+}
+
+define float @bar() {
+        %tmp1 = call float (...)* bitcast (float ()* @foo to float (...)*)( )
+        %tmp2 = mul float %tmp1, 1.000000e+01           ; <float> [#uses=1]
+        ret float %tmp2
+}
+