[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AMDGPU / floor.ll
blob43e58b942220294fb70f75360ab777d589d027c1
1 ; RUN: llc -march=r600 -mcpu=redwood < %s | FileCheck %s
3 ; CHECK: FLOOR * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
4 define amdgpu_ps void @test(<4 x float> inreg %reg0) {
5    %r0 = extractelement <4 x float> %reg0, i32 0
6    %r1 = call float @floor(float %r0)
7    %vec = insertelement <4 x float> undef, float %r1, i32 0
8    call void @llvm.r600.store.swizzle(<4 x float> %vec, i32 0, i32 0)
9    ret void
12 declare float @floor(float) readonly
13 declare void @llvm.r600.store.swizzle(<4 x float>, i32, i32)