mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 06:29:05 +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:
@@ -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
|
||||
|
Reference in New Issue
Block a user