mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Prevent Thumb code from generating ARM instructions
llvm-svn: 36518
This commit is contained in:
parent
8226832ec6
commit
74feb7979a
@ -1124,11 +1124,11 @@ def : ARMPat<(extloadi8 addrmode2:$addr), (LDRB addrmode2:$addr)>;
|
||||
def : ARMPat<(extloadi16 addrmode3:$addr), (LDRH addrmode3:$addr)>;
|
||||
|
||||
// truncstore i1 -> truncstore i8
|
||||
def : Pat<(truncstorei1 GPR:$src, addrmode2:$dst),
|
||||
def : ARMPat<(truncstorei1 GPR:$src, addrmode2:$dst),
|
||||
(STRB GPR:$src, addrmode2:$dst)>;
|
||||
def : Pat<(pre_truncsti1 GPR:$src, GPR:$base, am2offset:$offset),
|
||||
def : ARMPat<(pre_truncsti1 GPR:$src, GPR:$base, am2offset:$offset),
|
||||
(STRB_PRE GPR:$src, GPR:$base, am2offset:$offset)>;
|
||||
def : Pat<(post_truncsti1 GPR:$src, GPR:$base, am2offset:$offset),
|
||||
def : ARMPat<(post_truncsti1 GPR:$src, GPR:$base, am2offset:$offset),
|
||||
(STRB_POST GPR:$src, GPR:$base, am2offset:$offset)>;
|
||||
|
||||
// smul* and smla*
|
||||
|
Loading…
Reference in New Issue
Block a user