From: Michel Danzer Date: Fri, 22 Feb 2013 11:22:58 +0000 (+0000) Subject: R600/SI: Add pattern for sign extension of i1 to i32. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0cc991e17b8ca9d1056dc77dffa7b9ae3eee7a80;p=platform%2Fupstream%2Fllvm.git R600/SI: Add pattern for sign extension of i1 to i32. 16 more little piglits with radeonsi. NOTE: This is a candidate for the Mesa stable branch. Reviewed-by: Tom Stellard llvm-svn: 175887 --- diff --git a/llvm/lib/Target/R600/SIInstructions.td b/llvm/lib/Target/R600/SIInstructions.td index 2e43f9e..907cf49 100644 --- a/llvm/lib/Target/R600/SIInstructions.td +++ b/llvm/lib/Target/R600/SIInstructions.td @@ -1382,6 +1382,11 @@ def : Pat < 0, 0, 0, 0), sub3) >; +def : Pat < + (i32 (sext (i1 SReg_64:$src0))), + (V_CNDMASK_B32_e64 (i32 0), (i32 -1), SReg_64:$src0) +>; + /********** ================== **********/ /********** VOP3 Patterns **********/ /********** ================== **********/