aboutsummaryrefslogtreecommitdiff
path: root/src/tpc.y
diff options
context:
space:
mode:
authorpacien2018-06-05 14:35:02 +0200
committerpacien2018-06-05 14:35:02 +0200
commit13b4fc0a1e32008f125f73148d01f12bdac3a80e (patch)
treedd3dc79a76805220bcf825710e9e0c23f86a5d7f /src/tpc.y
parent53e859913d6eb7141dbd1ed48f28c336f1322534 (diff)
downloadtpc-compiler-13b4fc0a1e32008f125f73148d01f12bdac3a80e.tar.gz
Simplify return type state on call
Diffstat (limited to 'src/tpc.y')
-rw-r--r--src/tpc.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tpc.y b/src/tpc.y
index dc6bc4f..1173eb7 100644
--- a/src/tpc.y
+++ b/src/tpc.y
@@ -164,7 +164,7 @@ F:
164| LValue { $$ = gen_value($<ident>1, scope); } 164| LValue { $$ = gen_value($<ident>1, scope); }
165| NUM { $$ = gen_num($1, scope); } 165| NUM { $$ = gen_num($1, scope); }
166| CARACTERE { $$ = gen_char($1, scope); } 166| CARACTERE { $$ = gen_char($1, scope); }
167| IDENT '(' Arguments ')' { return_type = fun_lookup($<ident>1,$<num>3);$$ = gen_function_call($<ident>1,$<num>3); } 167| IDENT '(' Arguments ')' { $$ = (return_type = gen_function_call($<ident>1,$<num>3)); }
168; 168;
169LValue: 169LValue:
170 IDENT { gen_check($<ident>1, scope); } 170 IDENT { gen_check($<ident>1, scope); }