From: Wolfgang (Blub) Bumiller Date: Tue, 18 Dec 2012 15:36:06 +0000 (+0100) Subject: Remove a TODO message X-Git-Tag: 0.1.9~49 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=b337f630c81b8cc349fed2b2f01b8a8b51188630;p=xonotic%2Fgmqcc.git Remove a TODO message --- diff --git a/parser.c b/parser.c index ee47185..9e54bb3 100644 --- a/parser.c +++ b/parser.c @@ -835,8 +835,6 @@ static bool parser_sy_apply_operator(parser_t *parser, shunt *sy) return false; } #endif - if (opts.standard == COMPILER_GMQCC) - con_out("TODO: early out logic\n"); if (CanConstFold(exprs[0], exprs[1])) out = (ast_expression*)parser_const_float(parser, (generated_op == INSTR_OR ? (ConstF(0) || ConstF(1)) : (ConstF(0) && ConstF(1))));