diff options
| -rw-r--r-- | codegen.c | 4 | ||||
| -rw-r--r-- | main.c | 1 | ||||
| -rw-r--r-- | tests/064.sh | 22 |
3 files changed, 26 insertions, 1 deletions
@@ -437,6 +437,10 @@ void codegen_func(CodeGen* g, AstNode* ast) { codegen_func_prologue(g, ast); codegen_stmt(g, ast->node_body); + if (string_equals_cstr(&ast->name, "main")) { + // C99: 5.1.2.2.3 + printf(" mov rax, 0\n"); + } codegen_func_epilogue(g, ast); printf("\n"); @@ -26,5 +26,4 @@ int main(int argc, char** argv) { Program* prog = parse(tokens); analyze(prog); codegen(prog); - return 0; } diff --git a/tests/064.sh b/tests/064.sh new file mode 100644 index 0000000..80fba4f --- /dev/null +++ b/tests/064.sh @@ -0,0 +1,22 @@ +set -e + +# C99: 5.1.2.2.3 +bash ../../test_exit_code.sh 0 <<'EOF' +int main() { +} +EOF + +bash ../../test_exit_code.sh 0 <<'EOF' +int main() { + 1 + 2 + 3; +} +EOF + +bash ../../test_exit_code.sh 0 <<'EOF' +int main() { + if (1) { + } else { + return 1; + } +} +EOF |
