mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Add 8 bit select
llvm-svn: 71235
This commit is contained in:
parent
7b2dabcac9
commit
8364529d37
@ -107,6 +107,10 @@ def ADJCALLSTACKUP : Pseudo<(outs), (ins i16imm:$amt1, i16imm:$amt2),
|
||||
}
|
||||
|
||||
let usesCustomDAGSchedInserter = 1 in {
|
||||
def Select8 : Pseudo<(outs GR8:$dst), (ins GR8:$src1, GR8:$src2, i8imm:$cc),
|
||||
"# Select8 PSEUDO",
|
||||
[(set GR8:$dst,
|
||||
(MSP430selectcc GR8:$src1, GR8:$src2, imm:$cc))]>;
|
||||
def Select16 : Pseudo<(outs GR16:$dst), (ins GR16:$src1, GR16:$src2, i8imm:$cc),
|
||||
"# Select16 PSEUDO",
|
||||
[(set GR16:$dst,
|
||||
|
Loading…
Reference in New Issue
Block a user