summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2007-10-04-AvoidEFLAGSCopy.ll
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-10-05 01:44:22 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-10-05 01:44:22 +0000
commiteca18214bbeb25de131bff528b4e191579b5f699 (patch)
tree0d91b1595e75b0ffa016a7ab22fe0b7adcd1ee18 /test/CodeGen/X86/2007-10-04-AvoidEFLAGSCopy.ll
parentd5cb5a462b6fd91bf54116c3eefc3b046489c414 (diff)
downloadllvm-eca18214bbeb25de131bff528b4e191579b5f699.tar.gz
llvm-eca18214bbeb25de131bff528b4e191579b5f699.tar.bz2
llvm-eca18214bbeb25de131bff528b4e191579b5f699.tar.xz
New test case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42628 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/2007-10-04-AvoidEFLAGSCopy.ll')
-rw-r--r--test/CodeGen/X86/2007-10-04-AvoidEFLAGSCopy.ll20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2007-10-04-AvoidEFLAGSCopy.ll b/test/CodeGen/X86/2007-10-04-AvoidEFLAGSCopy.ll
new file mode 100644
index 0000000000..64c601e9bc
--- /dev/null
+++ b/test/CodeGen/X86/2007-10-04-AvoidEFLAGSCopy.ll
@@ -0,0 +1,20 @@
+; RUN: llvm-as < %s | llc | not grep pushf
+
+ %struct.gl_texture_image = type { i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i8*, i8* }
+ %struct.gl_texture_object = type { i32, i32, i32, float, [4 x i32], i32, i32, i32, i32, i32, float, [11 x %struct.gl_texture_image*], [1024 x i8], i32, i32, i32, i8, i8*, i8, void (%struct.gl_texture_object*, i32, float*, float*, float*, float*, i8*, i8*, i8*, i8*)*, %struct.gl_texture_object* }
+
+define fastcc void @sample_3d_linear(%struct.gl_texture_object* %tObj, %struct.gl_texture_image* %img, float %s, float %t, float %r, i8* %red, i8* %green, i8* %blue, i8* %alpha) {
+entry:
+ %tmp15 = load i32* null, align 4 ; <i32> [#uses=1]
+ %tmp16 = icmp eq i32 %tmp15, 10497 ; <i1> [#uses=1]
+ %tmp2152 = call float @floorf( float 0.000000e+00 ) ; <float> [#uses=0]
+ br i1 %tmp16, label %cond_true, label %cond_false
+
+cond_true: ; preds = %entry
+ ret void
+
+cond_false: ; preds = %entry
+ ret void
+}
+
+declare float @floorf(float)