mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
Actually it's likely...
This commit is contained in:
parent
5a6b2bceb2
commit
bd1bc0dc59
1 changed files with 2 additions and 2 deletions
4
ast.c
4
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))
|
if (!ir_block_create_if(func->curblock, left, merge, other))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
/* use the unlikely flag */
|
/* use the likely flag */
|
||||||
vec_last(func->curblock->instr)->likely = false;
|
vec_last(func->curblock->instr)->likely = true;
|
||||||
|
|
||||||
func->curblock = other;
|
func->curblock = other;
|
||||||
cgen = self->right->expression.codegen;
|
cgen = self->right->expression.codegen;
|
||||||
|
|
Loading…
Reference in a new issue