2015-01-16 22:11:00 +00:00
|
|
|
; RUN: llc -march=r600 -mcpu=redwood < %s | FileCheck %s
|
2012-12-11 21:25:42 +00:00
|
|
|
|
2015-01-16 22:11:00 +00:00
|
|
|
; CHECK: FLOOR * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
|
2013-11-11 22:10:24 +00:00
|
|
|
define void @test(<4 x float> inreg %reg0) #0 {
|
|
|
|
%r0 = extractelement <4 x float> %reg0, i32 0
|
2012-12-11 21:25:42 +00:00
|
|
|
%r1 = call float @floor(float %r0)
|
2013-11-11 22:10:24 +00:00
|
|
|
%vec = insertelement <4 x float> undef, float %r1, i32 0
|
|
|
|
call void @llvm.R600.store.swizzle(<4 x float> %vec, i32 0, i32 0)
|
2012-12-11 21:25:42 +00:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
declare float @floor(float) readonly
|
2013-11-11 22:10:24 +00:00
|
|
|
declare void @llvm.R600.store.swizzle(<4 x float>, i32, i32)
|
|
|
|
|
2015-01-16 22:11:00 +00:00
|
|
|
attributes #0 = { "ShaderType"="0" }
|