From bd1bc0dc59531a8c9f1cfd46ac266a3abfc38473 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Wed, 21 Nov 2012 17:42:44 +0100 Subject: [PATCH] Actually it's likely... --- ast.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.2