xref: /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/R600/floor.ll (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
2
3;CHECK: FLOOR * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
4
5define void @test(<4 x float> inreg %reg0) #0 {
6   %r0 = extractelement <4 x float> %reg0, i32 0
7   %r1 = call float @floor(float %r0)
8   %vec = insertelement <4 x float> undef, float %r1, i32 0
9   call void @llvm.R600.store.swizzle(<4 x float> %vec, i32 0, i32 0)
10   ret void
11}
12
13declare float @floor(float) readonly
14declare void @llvm.R600.store.swizzle(<4 x float>, i32, i32)
15
16attributes #0 = { "ShaderType"="0" }