mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 19:52:30 +00:00
Remove goto in favour of multiple exits
This commit is contained in:
@@ -71,7 +71,10 @@ lbValue lb_emit_logical_binary_expr(lbProcedure *p, TokenKind op, Ast *left, Ast
|
||||
if (phi_type == nullptr) {
|
||||
phi = LLVMBuildPhi(p->builder, dst_type, "");
|
||||
LLVMAddIncoming(phi, incoming_values.data, incoming_blocks.data, cast(unsigned)incoming_values.count);
|
||||
goto phi_end;
|
||||
lbValue res = {};
|
||||
res.type = type;
|
||||
res.value = phi;
|
||||
return res;
|
||||
}
|
||||
|
||||
for_array(i, incoming_values) {
|
||||
@@ -102,7 +105,6 @@ lbValue lb_emit_logical_binary_expr(lbProcedure *p, TokenKind op, Ast *left, Ast
|
||||
phi = LLVMBuildTruncOrBitCast(p->builder, phi, dst_type, "");
|
||||
}
|
||||
|
||||
phi_end:;
|
||||
lbValue res = {};
|
||||
res.type = type;
|
||||
res.value = phi;
|
||||
|
||||
Reference in New Issue
Block a user