Commit 5c7ebce62b503e6f9d176b2775e0f5228582b782
1 parent
2f05f670
added a 'if (!errors)" in front of the call to string concatenation optimization.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
anubis_dev/compiler/src/opdef.c
| ... | ... | @@ -518,7 +518,7 @@ void new_op_scheme(Expr lc, /* <lc> = (<file id> <line number> . <column num |
| 518 | 518 | check_operation(opid); |
| 519 | 519 | } |
| 520 | 520 | |
| 521 | - optimize_string_concatenation(opid); | |
| 521 | + if (!errors) optimize_string_concatenation(opid); | |
| 522 | 522 | |
| 523 | 523 | /* |
| 524 | 524 | debug(new_integer(opid)); | ... | ... |