Commenting on future lvalue use in ast_store

This commit is contained in:
Wolfgang Bumiller 2012-05-01 15:15:19 +02:00
parent 3a94e962ae
commit 4fbcc57d49

1
ast.c
View file

@ -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;
}