[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / floor.ll
blobcc23289b20b0a397067d250783927f620cbb2013
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 @floorf(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 @floorf(float) readonly
13 declare void @llvm.r600.store.swizzle(<4 x float>, i32, i32)