mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
Added the ENTER instruction, which sets up a stack
frame, to the Intel instruction tables. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81995 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
13cf8e9b82
commit
8d70854dd8
@ -694,6 +694,11 @@ let isCall = 1 in
|
||||
"lcall{l}\t{*}$dst", []>;
|
||||
}
|
||||
|
||||
// Constructing a stack frame.
|
||||
|
||||
def ENTER : I<0xC8, RawFrm, (outs), (ins i16imm:$len, i8imm:$lvl),
|
||||
"enter\t$len, $lvl", []>;
|
||||
|
||||
// Tail call stuff.
|
||||
|
||||
let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
|
||||
|
Loading…
x
Reference in New Issue
Block a user