From: Dale Weiler Date: Wed, 18 Sep 2013 23:18:10 +0000 (-0400) Subject: Remove debug printfs X-Git-Tag: 0.3.5~86 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=f25fff1e3db4de036eebf106ff5408ed0b0ee277;hp=e18849fa423e57637c30e3f1aa633f8485fb96e6 Remove debug printfs --- diff --git a/fold.c b/fold.c index 32eeae6..4def3c0 100644 --- a/fold.c +++ b/fold.c @@ -494,11 +494,9 @@ static GMQCC_INLINE ast_expression *fold_op_div(fold_t *fold, ast_value *a, ast_ } else if (isvector(a)) { if (fold_can_2(a, b)) { if (fold_can_div(b)) { - printf("hit wrong logic\n"); return fold_constgen_vector(fold, vec3_mulvf(fold_immvalue_vector(a), 1.0f / fold_immvalue_float(b))); } else { - printf("hit logic\n"); return (ast_expression*)fold->imm_vector[2]; /* inf */ } } else {