]> de.git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Remove a TODO message
authorWolfgang (Blub) Bumiller <blub@speed.at>
Tue, 18 Dec 2012 15:36:06 +0000 (16:36 +0100)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Tue, 18 Dec 2012 15:36:06 +0000 (16:36 +0100)
parser.c

index ee4718519ece62aae2edf5b6c65ab6b66320fd9e..9e54bb31eafcc0ceabd3e8a3bcd3d3f308b852a0 100644 (file)
--- 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))));