Merge pt.2

This commit is contained in:
attilavs2 2025-03-26 11:48:12 +01:00
parent cb44634016
commit 6997aee232
4 changed files with 4 additions and 3 deletions

View file

@ -3,7 +3,7 @@
OUTNAME = flisp
CFLAGS = -std=c99 -O3 -flto -Wall -Wextra -g -pipe -Wno-cast-function-type
CFLAGS = -std=c99 -O0 -flto -Wall -Wextra -g -pipe -Wno-cast-function-type
CC = gcc

View file

@ -42,7 +42,6 @@ void assign(Value *dst, Value src){
if(dst->tag.type == src.tag.type || !dst->tag.is_strong
|| dst->tag.type == T_any)
*dst = src;
}
else{
runtime_err("Invalid assignement");
}

View file

@ -54,7 +54,7 @@ int make_stack(){
}
void free_stack(){
for(int i = 0; i < stack->curr_statement){
for(int i = 0; i < stack->curr_statement; i++){
Statement *stat = &stack->statements[i];
if(stat->child_n)
free(stat->children);

View file

@ -59,4 +59,6 @@ void pop_scope();
FnArgs *make_fnargs(char *name, Tag type);
FnArgs *add_fnargs(char *name, Tag type);
Statement *make_function(FnArgs *fn_args, Statement *statements);
void set_entry_point(Statement *statement);