mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-28 14:36:34 +00:00
Added the ENTER instruction, which sets up a stack
frame, to the Intel instruction tables. llvm-svn: 81995
This commit is contained in:
parent
a3e93882f3
commit
0fb60155bd
@ -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…
Reference in New Issue
Block a user