mirror of
https://github.com/ProgramSnail/Lama.git
synced 2026-01-02 20:18:19 +00:00
Fixed issues with a missing _main symbol
This commit is contained in:
parent
eb8e9374f2
commit
87a489e2e3
2 changed files with 6 additions and 6 deletions
|
|
@ -742,7 +742,7 @@ let compile cmd env imports code =
|
|||
let env = env#enter f nargs nlocals has_closure in
|
||||
( env,
|
||||
[ (* Meta (Printf.sprintf "\t.type %s, @function" name) *) ]
|
||||
@ (if f = "main" then []
|
||||
@ (if f = "_main" then []
|
||||
else
|
||||
[
|
||||
(* Meta
|
||||
|
|
@ -791,7 +791,7 @@ let compile cmd env imports code =
|
|||
Mov (r13, rsi);
|
||||
Mov (r14, rcx);
|
||||
]
|
||||
@ (if f = "main" then
|
||||
@ (if f = "_main" then
|
||||
[
|
||||
(* Align stack as main function is the only function that could be called without alignment. TODO *)
|
||||
Mov (L 0xF, rax);
|
||||
|
|
@ -826,7 +826,7 @@ let compile cmd env imports code =
|
|||
Mov (rbp, rsp);
|
||||
Pop rbp;
|
||||
]
|
||||
@ (if name = "main" then [ Binop ("^", rax, rax) ] else [])
|
||||
@ (if name = "_main" then [ Binop ("^", rax, rax) ] else [])
|
||||
@ [
|
||||
Meta "\t.cfi_restore\t5";
|
||||
Meta "\t.cfi_def_cfa\t4, 4";
|
||||
|
|
@ -1260,7 +1260,7 @@ class env prg =
|
|||
method gen_line =
|
||||
let lab = Printf.sprintf ".L%d" nlabels in
|
||||
( {<nlabels = nlabels + 1; first_line = false>},
|
||||
if fname = "main" then
|
||||
if fname = "_main" then
|
||||
[ (* Meta (Printf.sprintf "\t.stabn 68,0,%d,%s" line lab); *) Label lab ]
|
||||
else
|
||||
(if first_line then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue