diff options
author | Vincent Lejeune <vljn@ovi.com> | 2013-11-11 22:10:24 +0000 |
---|---|---|
committer | Vincent Lejeune <vljn@ovi.com> | 2013-11-11 22:10:24 +0000 |
commit | 70a7d5ddb4f00bbb61afe7b536c6f599f771ab9a (patch) | |
tree | 0529d234345ee92bad998240c04c98c877ef0bee /test/CodeGen/R600/complex-folding.ll | |
parent | 6c7a7c6474ea60c40e2dbb15f5b6cf0265098ace (diff) | |
download | external_llvm-70a7d5ddb4f00bbb61afe7b536c6f599f771ab9a.zip external_llvm-70a7d5ddb4f00bbb61afe7b536c6f599f771ab9a.tar.gz external_llvm-70a7d5ddb4f00bbb61afe7b536c6f599f771ab9a.tar.bz2 |
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
Diffstat (limited to 'test/CodeGen/R600/complex-folding.ll')
-rw-r--r-- | test/CodeGen/R600/complex-folding.ll | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/CodeGen/R600/complex-folding.ll b/test/CodeGen/R600/complex-folding.ll index 8dcd450..99f0d99 100644 --- a/test/CodeGen/R600/complex-folding.ll +++ b/test/CodeGen/R600/complex-folding.ll @@ -2,9 +2,9 @@ ; CHECK: @main ; CHECK-NOT: MOV -define void @main() { +define void @main(<4 x float> inreg %reg0) #0 { entry: - %0 = call float @llvm.R600.load.input(i32 0) + %0 = extractelement <4 x float> %reg0, i32 0 %1 = call float @fabs(float %0) %2 = fptoui float %1 to i32 %3 = bitcast i32 %2 to float @@ -13,6 +13,7 @@ entry: ret void } -declare float @llvm.R600.load.input(i32) readnone declare float @fabs(float ) readnone -declare void @llvm.R600.store.swizzle(<4 x float>, i32, i32)
\ No newline at end of file +declare void @llvm.R600.store.swizzle(<4 x float>, i32, i32) + +attributes #0 = { "ShaderType"="0" }
\ No newline at end of file |