mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +00:00
Provide 64-bit support for i64 sextload<i8>.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32600 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ca367b4e25
commit
c4a81dc935
@ -491,6 +491,10 @@ def : Pat<(extloadi1 iaddr:$src),
|
||||
(LBZ8 iaddr:$src)>;
|
||||
def : Pat<(extloadi1 xaddr:$src),
|
||||
(LBZX8 xaddr:$src)>;
|
||||
def : Pat<(sextloadi8 iaddr:$src),
|
||||
(EXTSB8 (LBZ8 iaddr:$src))>;
|
||||
def : Pat<(sextloadi8 xaddr:$src),
|
||||
(EXTSB8 (LBZX8 xaddr:$src))>;
|
||||
def : Pat<(extloadi8 iaddr:$src),
|
||||
(LBZ8 iaddr:$src)>;
|
||||
def : Pat<(extloadi8 xaddr:$src),
|
||||
|
Loading…
Reference in New Issue
Block a user