mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
delegate the disassembly of t2ADR to the more generic t2ADDri12/t2SUBri12 instructions, and add a test case for that.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128249 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8c13335c9a
commit
ef74e9ab40
@ -148,3 +148,6 @@
|
|||||||
|
|
||||||
# CHECK: ldmia r5!, {r0, r1, r2, r3, r4}
|
# CHECK: ldmia r5!, {r0, r1, r2, r3, r4}
|
||||||
0x1f 0xcd
|
0x1f 0xcd
|
||||||
|
|
||||||
|
# CHECK: addw r0, pc, #1050
|
||||||
|
0x0f 0xf2 0x1a 0x40
|
||||||
|
@ -1632,6 +1632,11 @@ ARMDEBackend::populateInstruction(const CodeGenInstruction &CGI,
|
|||||||
if (Name == "tADR")
|
if (Name == "tADR")
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// Delegate t2ADR disassembly to the more generic t2ADDri12/t2SUBri12
|
||||||
|
// instructions.
|
||||||
|
if (Name == "t2ADR")
|
||||||
|
return false;
|
||||||
|
|
||||||
// Ignore tADDrSP, tADDspr, and tPICADD, prefer the generic tADDhirr.
|
// Ignore tADDrSP, tADDspr, and tPICADD, prefer the generic tADDhirr.
|
||||||
// Ignore t2SUBrSPs, prefer the t2SUB[S]r[r|s].
|
// Ignore t2SUBrSPs, prefer the t2SUB[S]r[r|s].
|
||||||
// Ignore t2ADDrSPs, prefer the t2ADD[S]r[r|s].
|
// Ignore t2ADDrSPs, prefer the t2ADD[S]r[r|s].
|
||||||
|
Loading…
x
Reference in New Issue
Block a user