| ... | @@ -4065,7 +4065,7 @@ static IrInstruction *ir_gen_orelse(IrBuilder *irb, Scope *parent_scope, AstNode | ... | @@ -4065,7 +4065,7 @@ static IrInstruction *ir_gen_orelse(IrBuilder *irb, Scope *parent_scope, AstNode |
| 4065 | result_loc, is_comptime); | 4065 | result_loc, is_comptime); |
| 4066 | | 4066 | |
| 4067 | ir_set_cursor_at_end_and_append_block(irb, null_block); | 4067 | ir_set_cursor_at_end_and_append_block(irb, null_block); |
| 4068 | IrInstruction *null_result = ir_gen_node_extra(irb, op2_node, parent_scope, lval, | 4068 | IrInstruction *null_result = ir_gen_node_extra(irb, op2_node, parent_scope, LValNone, |
| 4069 | &peer_parent->peers.at(0)->base); | 4069 | &peer_parent->peers.at(0)->base); |
| 4070 | if (null_result == irb->codegen->invalid_instruction) | 4070 | if (null_result == irb->codegen->invalid_instruction) |
| 4071 | return irb->codegen->invalid_instruction; | 4071 | return irb->codegen->invalid_instruction; |
| ... | @@ -7496,7 +7496,7 @@ static IrInstruction *ir_gen_catch(IrBuilder *irb, Scope *parent_scope, AstNode | ... | @@ -7496,7 +7496,7 @@ static IrInstruction *ir_gen_catch(IrBuilder *irb, Scope *parent_scope, AstNode |
| 7496 | } else { | 7496 | } else { |
| 7497 | err_scope = parent_scope; | 7497 | err_scope = parent_scope; |
| 7498 | } | 7498 | } |
| 7499 | IrInstruction *err_result = ir_gen_node_extra(irb, op2_node, err_scope, lval, &peer_parent->peers.at(0)->base); | 7499 | IrInstruction *err_result = ir_gen_node_extra(irb, op2_node, err_scope, LValNone, &peer_parent->peers.at(0)->base); |
| 7500 | if (err_result == irb->codegen->invalid_instruction) | 7500 | if (err_result == irb->codegen->invalid_instruction) |
| 7501 | return irb->codegen->invalid_instruction; | 7501 | return irb->codegen->invalid_instruction; |
| 7502 | IrBasicBlock *after_err_block = irb->current_basic_block; | 7502 | IrBasicBlock *after_err_block = irb->current_basic_block; |