From: Wolfgang Bumiller Date: Wed, 23 Oct 2013 12:01:56 +0000 (+0200) Subject: This is not allowed X-Git-Tag: 0.3.5~1^2~5 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=b87eb898534074acb83ccb6401a398119df6809a;p=xonotic%2Fgmqcc.git This is not allowed --- diff --git a/ast.c b/ast.c index dbd23f1..a0a7f6c 100644 --- a/ast.c +++ b/ast.c @@ -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) {