]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Commenting on future lvalue use in ast_store
authorWolfgang Bumiller <wolfgang.linux@bumiller.com>
Tue, 1 May 2012 13:15:19 +0000 (15:15 +0200)
committerWolfgang Bumiller <wolfgang.linux@bumiller.com>
Tue, 1 May 2012 13:15:19 +0000 (15:15 +0200)
ast.c

diff --git a/ast.c b/ast.c
index e5492e40a3520d5542c7d9509b4eb5ac3070d89a..168a80e228ec3d3ce08647e2886d9bd1f1dee4b8 100644 (file)
--- a/ast.c
+++ b/ast.c
@@ -330,6 +330,7 @@ bool ast_block_codegen(ast_block *self, ast_function *func, bool lvalue, ir_valu
 
 bool ast_store_codegen(ast_store *self, ast_function *func, bool lvalue, ir_value **out)
 {
+    /* NOTE: remember: destination codegen needs to have lvalue=true */
     return false;
 }