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:
parent
434a514175
commit
77a29128d5
@ -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)),
|
||||
|
Loading…
Reference in New Issue
Block a user