1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

[NVPTX] Select -1 instead of 1 when anyextend'ing i1 types

This makes it more consistent with the ZeroOrNegativeOneBooleanContent flag

llvm-svn: 185179
This commit is contained in:
Justin Holewinski 2013-06-28 17:58:15 +00:00
parent 434a514175
commit 77a29128d5

View File

@ -2294,11 +2294,11 @@ def : Pat<(i64 (zext Int1Regs:$a)),
// anyext i1
def : Pat<(i16 (anyext Int1Regs:$a)),
(SELP_u16ii 1, 0, Int1Regs:$a)>;
(SELP_u16ii -1, 0, Int1Regs:$a)>;
def : Pat<(i32 (anyext Int1Regs:$a)),
(SELP_u32ii 1, 0, Int1Regs:$a)>;
(SELP_u32ii -1, 0, Int1Regs:$a)>;
def : Pat<(i64 (anyext Int1Regs:$a)),
(SELP_u64ii 1, 0, Int1Regs:$a)>;
(SELP_u64ii -1, 0, Int1Regs:$a)>;
// sext i16
def : Pat<(i32 (sext Int16Regs:$a)),