This commit is contained in:
Wolfgang Bumiller 2012-12-20 20:57:05 +01:00
parent a6547a15f3
commit 93341dd009

View file

@ -904,7 +904,7 @@ static bool parser_sy_apply_operator(parser_t *parser, shunt *sy)
}
out = (ast_expression*)ast_unary_new(ctx, type_not_instr[exprs[i]->expression.vtype], exprs[i]);
if (!out) break;
out = (ast_expression*)ast_unary_new(ctx, NOT_F, out);
out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, out);
if (!out) break;
exprs[i] = out; out = NULL;
if (OPTS_FLAG(PERL_LOGIC)) {