mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
[XCore] Add bru instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178783 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c6ff29713d
commit
e50faa754b
@ -924,6 +924,9 @@ def BR_JT32 : PseudoInstXCore<(outs), (ins InlineJT32:$t, GRRegs:$i),
|
||||
"bru $i\n$t",
|
||||
[(XCoreBR_JT32 tjumptable:$t, GRRegs:$i)]>;
|
||||
|
||||
let isBranch=1, isIndirectBranch=1, isTerminator=1, isBarrier = 1 in
|
||||
def BRU_1r : _F1R<0b001010, (outs), (ins GRRegs:$a), "bru $a", []>;
|
||||
|
||||
let Defs=[SP], neverHasSideEffects=1 in
|
||||
def SETSP_1r : _F1R<0b001011, (outs), (ins GRRegs:$a), "set sp, $a", []>;
|
||||
|
||||
|
@ -95,6 +95,9 @@
|
||||
# CHECK: bla r6
|
||||
0xe6 0x27
|
||||
|
||||
# CHECK: bru r8
|
||||
0xe8 0x2f
|
||||
|
||||
# CHECK: syncr res[r7]
|
||||
0xf7 0x87
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user