From 70a7d5ddb4f00bbb61afe7b536c6f599f771ab9a Mon Sep 17 00:00:00 2001 From: Vincent Lejeune Date: Mon, 11 Nov 2013 22:10:24 +0000 Subject: R600: Use function inputs to represent data stored in gpr git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194425 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/R600/tex-clause-antidep.ll | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'test/CodeGen/R600/tex-clause-antidep.ll') diff --git a/test/CodeGen/R600/tex-clause-antidep.ll b/test/CodeGen/R600/tex-clause-antidep.ll index 5979609..cbb9c50 100644 --- a/test/CodeGen/R600/tex-clause-antidep.ll +++ b/test/CodeGen/R600/tex-clause-antidep.ll @@ -3,11 +3,11 @@ ;CHECK: TEX ;CHECK-NEXT: ALU -define void @test() { - %1 = call float @llvm.R600.load.input(i32 0) - %2 = call float @llvm.R600.load.input(i32 1) - %3 = call float @llvm.R600.load.input(i32 2) - %4 = call float @llvm.R600.load.input(i32 3) +define void @test(<4 x float> inreg %reg0) #0 { + %1 = extractelement <4 x float> %reg0, i32 0 + %2 = extractelement <4 x float> %reg0, i32 1 + %3 = extractelement <4 x float> %reg0, i32 2 + %4 = extractelement <4 x float> %reg0, i32 3 %5 = insertelement <4 x float> undef, float %1, i32 0 %6 = insertelement <4 x float> %5, float %2, i32 1 %7 = insertelement <4 x float> %6, float %3, i32 2 @@ -19,6 +19,7 @@ define void @test() { ret void } -declare float @llvm.R600.load.input(i32) readnone declare <4 x float> @llvm.R600.tex(<4 x float>, i32, i32, i32, i32, i32, i32, i32, i32, i32) readnone declare void @llvm.R600.store.swizzle(<4 x float>, i32, i32) + +attributes #0 = { "ShaderType"="1" } \ No newline at end of file -- cgit v1.1