summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-03-24 18:21:38 +0000
committerTom Stellard <thomas.stellard@amd.com>2014-03-24 18:21:38 +0000
commit5f71aeed1a8f37298c5a2179e1ef1b61ca7226a5 (patch)
tree73183bc2cf47d6e07cee0692123b8e3383c40ac1 /lib
parent705b92b04d0dd88320c14894a3105a2ce5df026f (diff)
downloadllvm-5f71aeed1a8f37298c5a2179e1ef1b61ca7226a5.tar.gz
llvm-5f71aeed1a8f37298c5a2179e1ef1b61ca7226a5.tar.bz2
llvm-5f71aeed1a8f37298c5a2179e1ef1b61ca7226a5.tar.xz
Merging r200830:
------------------------------------------------------------------------ r200830 | michel.daenzer | 2014-02-05 01:48:05 -0800 (Wed, 05 Feb 2014) | 8 lines R600/SI: Add pattern for zero-extending i1 to i32 Fixes opencl-example if_* tests with radeonsi. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=74469 Reviewed-by: Tom Stellard <thomas.stellard@amd.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@204646 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/R600/SIInstructions.td5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Target/R600/SIInstructions.td b/lib/Target/R600/SIInstructions.td
index ae641164b4..37a77ce71b 100644
--- a/lib/Target/R600/SIInstructions.td
+++ b/lib/Target/R600/SIInstructions.td
@@ -1818,6 +1818,11 @@ def : Pat <
(V_CNDMASK_B32_e64 (i32 0), (i32 -1), $src0)
>;
+def : Pat <
+ (i32 (zext i1:$src0)),
+ (V_CNDMASK_B32_e64 (i32 0), (i32 1), $src0)
+>;
+
// 1. Offset as 8bit DWORD immediate
def : Pat <
(SIload_constant i128:$sbase, IMM8bitDWORD:$offset),