mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-05 01:11:00 +00:00
This is not allowed
This commit is contained in:
parent
c90807dec6
commit
b87eb89853
1 changed files with 0 additions and 5 deletions
5
ast.c
5
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) {
|
||||
|
|
Loading…
Reference in a new issue