Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / 2007-10-04-AvoidEFLAGSCopy.ll
blobeb94a3958ab65e48372cc210a7b98023ce690150
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=i686-- | FileCheck %s
4         %struct.gl_texture_image = type { i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, ptr, ptr }
5         %struct.gl_texture_object = type { i32, i32, i32, float, [4 x i32], i32, i32, i32, i32, i32, float, [11 x ptr], [1024 x i8], i32, i32, i32, i8, ptr, i8, ptr, ptr }
7 define fastcc void @sample_3d_linear(ptr %tObj, ptr %img, float %s, float %t, float %r, ptr %red, ptr %green, ptr %blue, ptr %alpha) {
8 ; CHECK-LABEL: sample_3d_linear:
9 ; CHECK:       # %bb.0: # %entry
10 ; CHECK-NEXT:    pushl %esi
11 ; CHECK-NEXT:    .cfi_def_cfa_offset 8
12 ; CHECK-NEXT:    .cfi_offset %esi, -8
13 ; CHECK-NEXT:    movl 0, %esi
14 ; CHECK-NEXT:    pushl $0
15 ; CHECK-NEXT:    .cfi_adjust_cfa_offset 4
16 ; CHECK-NEXT:    calll floorf@PLT
17 ; CHECK-NEXT:    fstp %st(0)
18 ; CHECK-NEXT:    addl $4, %esp
19 ; CHECK-NEXT:    .cfi_adjust_cfa_offset -4
20 ; CHECK-NEXT:    cmpl $10497, %esi # imm = 0x2901
21 ; CHECK-NEXT:    popl %esi
22 ; CHECK-NEXT:    .cfi_def_cfa_offset 4
23 ; CHECK-NEXT:    retl
24 entry:
25         %tmp15 = load i32, ptr null, align 4            ; <i32> [#uses=1]
26         %tmp16 = icmp eq i32 %tmp15, 10497              ; <i1> [#uses=1]
27         %tmp2152 = call float @floorf( float 0.000000e+00 )             ; <float> [#uses=0]
28         br i1 %tmp16, label %cond_true, label %cond_false
30 cond_true:              ; preds = %entry
31         ret void
33 cond_false:             ; preds = %entry
34         ret void
37 declare float @floorf(float)