summaryrefslogtreecommitdiff
path: root/awkgram.y
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-12-10 19:04:10 +0200
committerArnold D. Robbins <arnold@skeeve.com>2017-12-10 19:04:10 +0200
commitd73659dcfd3a76103bf3772b075cc74d3e259fee (patch)
tree10f8369490eb46e96f54818c28134911a9f6de3f /awkgram.y
parent3b8275d87abeb26a9989cb02fc85f62006ab70cd (diff)
downloadgawk-d73659dcfd3a76103bf3772b075cc74d3e259fee.tar.gz
Don't optimize !_"...".
Diffstat (limited to 'awkgram.y')
-rw-r--r--awkgram.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/awkgram.y b/awkgram.y
index 9f351436..bbc598dd 100644
--- a/awkgram.y
+++ b/awkgram.y
@@ -1717,7 +1717,7 @@ non_post_simp_exp
} else {
if (do_optimize && $2->nexti == $2->lasti
&& $2->nexti->opcode == Op_push_i
- && ($2->nexti->memory->flags & (MPFN|MPZN)) == 0
+ && ($2->nexti->memory->flags & (MPFN|MPZN|INTLSTR)) == 0
) {
NODE *n = $2->nexti->memory;
if ((n->flags & STRING) != 0) {