| ... | @@ -4749,6 +4749,9 @@ fn zirCImport(sema: *Sema, parent_block: *Block, inst: Zir.Inst.Index) CompileEr | ... | @@ -4749,6 +4749,9 @@ fn zirCImport(sema: *Sema, parent_block: *Block, inst: Zir.Inst.Index) CompileEr |
| 4749 | .inlining = parent_block.inlining, | 4749 | .inlining = parent_block.inlining, |
| 4750 | .is_comptime = parent_block.is_comptime, | 4750 | .is_comptime = parent_block.is_comptime, |
| 4751 | .c_import_buf = &c_import_buf, | 4751 | .c_import_buf = &c_import_buf, |
| | 4752 | .runtime_cond = parent_block.runtime_cond, |
| | 4753 | .runtime_loop = parent_block.runtime_loop, |
| | 4754 | .runtime_index = parent_block.runtime_index, |
| 4752 | }; | 4755 | }; |
| 4753 | defer child_block.instructions.deinit(sema.gpa); | 4756 | defer child_block.instructions.deinit(sema.gpa); |
| 4754 | | 4757 | |
| ... | @@ -4847,6 +4850,9 @@ fn zirBlock(sema: *Sema, parent_block: *Block, inst: Zir.Inst.Index) CompileErro | ... | @@ -4847,6 +4850,9 @@ fn zirBlock(sema: *Sema, parent_block: *Block, inst: Zir.Inst.Index) CompileErro |
| 4847 | .is_comptime = parent_block.is_comptime, | 4850 | .is_comptime = parent_block.is_comptime, |
| 4848 | .want_safety = parent_block.want_safety, | 4851 | .want_safety = parent_block.want_safety, |
| 4849 | .float_mode = parent_block.float_mode, | 4852 | .float_mode = parent_block.float_mode, |
| | 4853 | .runtime_cond = parent_block.runtime_cond, |
| | 4854 | .runtime_loop = parent_block.runtime_loop, |
| | 4855 | .runtime_index = parent_block.runtime_index, |
| 4850 | }; | 4856 | }; |
| 4851 | | 4857 | |
| 4852 | defer child_block.instructions.deinit(gpa); | 4858 | defer child_block.instructions.deinit(gpa); |
| ... | @@ -9742,6 +9748,9 @@ fn zirSwitchBlock(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError | ... | @@ -9742,6 +9748,9 @@ fn zirSwitchBlock(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError |
| 9742 | .inlining = block.inlining, | 9748 | .inlining = block.inlining, |
| 9743 | .is_comptime = block.is_comptime, | 9749 | .is_comptime = block.is_comptime, |
| 9744 | .switch_else_err_ty = else_error_ty, | 9750 | .switch_else_err_ty = else_error_ty, |
| | 9751 | .runtime_cond = block.runtime_cond, |
| | 9752 | .runtime_loop = block.runtime_loop, |
| | 9753 | .runtime_index = block.runtime_index, |
| 9745 | }; | 9754 | }; |
| 9746 | const merges = &child_block.label.?.merges; | 9755 | const merges = &child_block.label.?.merges; |
| 9747 | defer child_block.instructions.deinit(gpa); | 9756 | defer child_block.instructions.deinit(gpa); |
| ... | @@ -14872,6 +14881,9 @@ fn zirTypeofPeer( | ... | @@ -14872,6 +14881,9 @@ fn zirTypeofPeer( |
| 14872 | .inlining = block.inlining, | 14881 | .inlining = block.inlining, |
| 14873 | .is_comptime = false, | 14882 | .is_comptime = false, |
| 14874 | .is_typeof = true, | 14883 | .is_typeof = true, |
| | 14884 | .runtime_cond = block.runtime_cond, |
| | 14885 | .runtime_loop = block.runtime_loop, |
| | 14886 | .runtime_index = block.runtime_index, |
| 14875 | }; | 14887 | }; |
| 14876 | defer child_block.instructions.deinit(sema.gpa); | 14888 | defer child_block.instructions.deinit(sema.gpa); |
| 14877 | // Ignore the result, we only care about the instructions in `args`. | 14889 | // Ignore the result, we only care about the instructions in `args`. |