summaryrefslogtreecommitdiff
path: root/test/CodeGen/R600/fp_to_uint.ll
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-04-19 02:10:53 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-04-19 02:10:53 +0000
commit3abd23bac565cdb10fe6dc17e4ee0640462b5660 (patch)
treeaf6b21957c03401af45e850668c0a1578dddfe0e /test/CodeGen/R600/fp_to_uint.ll
parent9affd163611b90113406b8729cc591eaad4778fa (diff)
downloadllvm-3abd23bac565cdb10fe6dc17e4ee0640462b5660.tar.gz
llvm-3abd23bac565cdb10fe6dc17e4ee0640462b5660.tar.bz2
llvm-3abd23bac565cdb10fe6dc17e4ee0640462b5660.tar.xz
R600: Reorganize lit tests and document how they should be organized
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179828 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/R600/fp_to_uint.ll')
-rw-r--r--test/CodeGen/R600/fp_to_uint.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/CodeGen/R600/fp_to_uint.ll b/test/CodeGen/R600/fp_to_uint.ll
new file mode 100644
index 0000000000..d91098f716
--- /dev/null
+++ b/test/CodeGen/R600/fp_to_uint.ll
@@ -0,0 +1,14 @@
+; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
+
+; CHECK: @fp_to_uint_v4i32
+; CHECK: FLT_TO_UINT T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
+; CHECK: FLT_TO_UINT T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
+; CHECK: FLT_TO_UINT T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
+; CHECK: FLT_TO_UINT T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
+
+define void @fp_to_uint_v4i32(<4 x i32> addrspace(1)* %out, <4 x float> addrspace(1)* %in) {
+ %value = load <4 x float> addrspace(1) * %in
+ %result = fptoui <4 x float> %value to <4 x i32>
+ store <4 x i32> %result, <4 x i32> addrspace(1)* %out
+ ret void
+}