Remove a TODO message

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-12-18 16:36:06 +01:00
parent 259aaad324
commit b337f630c8

View file

@ -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))));