diff options
Diffstat (limited to 'src/tpc.y')
-rw-r--r-- | src/tpc.y | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -181,8 +181,8 @@ F: | |||
181 | | IDENT '(' Arguments ')' { $$ = gen_function_call($<ident>1, $<num>3); } | 181 | | IDENT '(' Arguments ')' { $$ = gen_function_call($<ident>1, $<num>3); } |
182 | ; | 182 | ; |
183 | LValue: | 183 | LValue: |
184 | IDENT { gen_check($<ident>1, scope); strcpy($$, $1);} | 184 | IDENT { gen_check($<ident>1, scope); strcpy($$, $1); } |
185 | | IDENT '[' Exp ']' { gen_check($<ident>1, scope); strcpy($$, $1);} | 185 | | IDENT '[' Exp ']' { gen_check($<ident>1, scope); strcpy($$, $1); } |
186 | ; | 186 | ; |
187 | Arguments: | 187 | Arguments: |
188 | ListExp | 188 | ListExp |