mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-24 23:58:47 +00:00
Fix type
This commit is contained in:
parent
f83cf7880c
commit
0aea081841
1 changed files with 1 additions and 1 deletions
|
|
@ -287,7 +287,7 @@ let compile_binop env op =
|
|||
let _extra, env = env#pop in
|
||||
let _x, env = env#pop in
|
||||
if in_memory extra then
|
||||
(env, [ Mov (rdx, extra) ] @ op extra @ [ Mov (extra, rdx) ])
|
||||
(env, [ Mov (rdx, extra) ] @ op rdx @ [ Mov (extra, rdx) ])
|
||||
else (env, op extra)
|
||||
in
|
||||
match op with
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue