summaryrefslogtreecommitdiff
path: root/lib/Target/R600/SIInstructions.td
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-08-14 22:21:57 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-08-14 22:21:57 +0000
commit2760387d868eb6fd323f5159aa3909ec3d956ea8 (patch)
treeee2961df337038e489c2a2a0d5432d491dc2384b /lib/Target/R600/SIInstructions.td
parent4fa59392684435c2196baf43c35c07fe8b348cae (diff)
downloadllvm-2760387d868eb6fd323f5159aa3909ec3d956ea8.tar.gz
llvm-2760387d868eb6fd323f5159aa3909ec3d956ea8.tar.bz2
llvm-2760387d868eb6fd323f5159aa3909ec3d956ea8.tar.xz
R600/SI: Add pattern for fp_to_uint
This fixes the F2U opcode for the Mesa driver. Patch by: Marek Olšák Signed-off-by: Marek Olšák <marek.olsak@amd.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188418 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/R600/SIInstructions.td')
-rw-r--r--lib/Target/R600/SIInstructions.td4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Target/R600/SIInstructions.td b/lib/Target/R600/SIInstructions.td
index dc146091df..7393e1de56 100644
--- a/lib/Target/R600/SIInstructions.td
+++ b/lib/Target/R600/SIInstructions.td
@@ -615,7 +615,9 @@ defm V_CVT_F32_I32 : VOP1_32 <0x00000005, "V_CVT_F32_I32",
defm V_CVT_F32_U32 : VOP1_32 <0x00000006, "V_CVT_F32_U32",
[(set f32:$dst, (uint_to_fp i32:$src0))]
>;
-defm V_CVT_U32_F32 : VOP1_32 <0x00000007, "V_CVT_U32_F32", []>;
+defm V_CVT_U32_F32 : VOP1_32 <0x00000007, "V_CVT_U32_F32",
+ [(set i32:$dst, (fp_to_uint f32:$src0))]
+>;
defm V_CVT_I32_F32 : VOP1_32 <0x00000008, "V_CVT_I32_F32",
[(set i32:$dst, (fp_to_sint f32:$src0))]
>;