no need to check the array, the 2nd NOT is a NOT_F

This commit is contained in:
Wolfgang Bumiller 2012-12-20 20:56:49 +01:00
parent 8dc6696957
commit a6547a15f3

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, type_not_instr[exprs[i]->expression.vtype], out);
out = (ast_expression*)ast_unary_new(ctx, NOT_F, out);
if (!out) break;
exprs[i] = out; out = NULL;
if (OPTS_FLAG(PERL_LOGIC)) {