diff options
author | pacien | 2018-06-06 15:03:36 +0200 |
---|---|---|
committer | pacien | 2018-06-06 15:03:36 +0200 |
commit | 52cd016f5604555c04337f26e947ae32b8ee41b4 (patch) | |
tree | e27cb8eb9a44abf25bd1f3b48a1019e605a4b036 /src/tpc.y | |
parent | 00b8cb6be126d6cfeacf932b5595df9824cdf412 (diff) | |
download | tpc-compiler-52cd016f5604555c04337f26e947ae32b8ee41b4.tar.gz |
fix bss flag
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 |