From: Wolfgang (Blub) Bumiller Date: Wed, 21 Nov 2012 16:42:44 +0000 (+0100) Subject: Actually it's likely... X-Git-Tag: 0.1.9~379 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=bd1bc0dc59531a8c9f1cfd46ac266a3abfc38473;p=xonotic%2Fgmqcc.git Actually it's likely... --- diff --git a/ast.c b/ast.c index f5ed565..cb68f06 100644 --- a/ast.c +++ b/ast.c @@ -1538,8 +1538,8 @@ bool ast_binary_codegen(ast_binary *self, ast_function *func, bool lvalue, ir_va if (!ir_block_create_if(func->curblock, left, merge, other)) return false; } - /* use the unlikely flag */ - vec_last(func->curblock->instr)->likely = false; + /* use the likely flag */ + vec_last(func->curblock->instr)->likely = true; func->curblock = other; cgen = self->right->expression.codegen;