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/r600-export-fix.ll | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'test/CodeGen/R600/r600-export-fix.ll') diff --git a/test/CodeGen/R600/r600-export-fix.ll b/test/CodeGen/R600/r600-export-fix.ll index 78c703b..73bc063 100644 --- a/test/CodeGen/R600/r600-export-fix.ll +++ b/test/CodeGen/R600/r600-export-fix.ll @@ -10,12 +10,12 @@ ;CHECK: EXPORT T{{[0-9]}}.0000 -define void @main() #0 { +define void @main(<4 x float> inreg %reg0, <4 x float> inreg %reg1) #0 { main_body: - %0 = call float @llvm.R600.load.input(i32 4) - %1 = call float @llvm.R600.load.input(i32 5) - %2 = call float @llvm.R600.load.input(i32 6) - %3 = call float @llvm.R600.load.input(i32 7) + %0 = extractelement <4 x float> %reg1, i32 0 + %1 = extractelement <4 x float> %reg1, i32 1 + %2 = extractelement <4 x float> %reg1, i32 2 + %3 = extractelement <4 x float> %reg1, i32 3 %4 = load <4 x float> addrspace(8)* getelementptr ([1024 x <4 x float>] addrspace(8)* null, i64 0, i32 4) %5 = extractelement <4 x float> %4, i32 0 %6 = fmul float %5, %0 @@ -137,10 +137,6 @@ main_body: ret void } -; Function Attrs: readnone -declare float @llvm.R600.load.input(i32) #1 - declare void @llvm.R600.store.swizzle(<4 x float>, i32, i32) attributes #0 = { "ShaderType"="1" } -attributes #1 = { readnone } -- cgit v1.1