This is not allowed

This commit is contained in:
Wolfgang Bumiller 2013-10-23 14:01:56 +02:00
parent c90807dec6
commit b87eb89853

5
ast.c
View file

@ -450,11 +450,6 @@ ast_binary* ast_binary_new(lex_ctx_t ctx, int op,
ast_propagate_effects(self, left);
ast_propagate_effects(self, right);
if (OPTS_OPTIMIZATION(OPTIM_PEEPHOLE) && (fold = (ast_binary*)fold_superfluous(left, right, op))) {
ast_binary_delete(self);
return fold;
}
if (op >= INSTR_EQ_F && op <= INSTR_GT)
self->expression.vtype = TYPE_FLOAT;
else if (op == INSTR_AND || op == INSTR_OR) {