]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ast.h
ast_store needs to take over the type of its destination
[xonotic/gmqcc.git] / ast.h
diff --git a/ast.h b/ast.h
index 55691eb473fa9d7cd3c5aa0011ad828acb3beacf..272b388a7be9257357a3d3b457c0923888ceb0e9 100644 (file)
--- a/ast.h
+++ b/ast.h
@@ -107,6 +107,7 @@ typedef struct
     int                     vtype;
     ast_expression         *next;
     MEM_VECTOR_MAKE(ast_value*, params);
+    bool                    variadic;
     /* The codegen functions should store their output values
      * so we can call it multiple times without re-evaluating.
      * Store lvalue and rvalue seperately though. So that
@@ -145,6 +146,9 @@ struct ast_value_s
         ast_function *vfunc;
     } constval;
 
+    /* usecount for the parser */
+    size_t uses;
+
     ir_value *ir_v;
 };
 
@@ -419,6 +423,7 @@ ast_call* ast_call_new(lex_ctx ctx,
                        ast_expression *funcexpr);
 void ast_call_delete(ast_call*);
 bool ast_call_codegen(ast_call*, ast_function*, bool lvalue, ir_value**);
+bool ast_call_check_types(ast_call*);
 
 MEM_VECTOR_PROTO(ast_call, ast_expression*, params);