diff options
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/control_flow.h')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/control_flow.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/control_flow.h b/src/shader_recompiler/frontend/maxwell/control_flow.h index 9f570fbb5..89966b16a 100644 --- a/src/shader_recompiler/frontend/maxwell/control_flow.h +++ b/src/shader_recompiler/frontend/maxwell/control_flow.h | |||
| @@ -78,15 +78,15 @@ struct Block : boost::intrusive::set_base_hook< | |||
| 78 | 78 | ||
| 79 | Location begin; | 79 | Location begin; |
| 80 | Location end; | 80 | Location end; |
| 81 | EndClass end_class; | 81 | EndClass end_class{}; |
| 82 | IR::Condition cond; | 82 | IR::Condition cond{}; |
| 83 | Stack stack; | 83 | Stack stack; |
| 84 | Block* branch_true; | 84 | Block* branch_true{}; |
| 85 | Block* branch_false; | 85 | Block* branch_false{}; |
| 86 | FunctionId function_call; | 86 | FunctionId function_call{}; |
| 87 | Block* return_block; | 87 | Block* return_block{}; |
| 88 | IR::Reg branch_reg; | 88 | IR::Reg branch_reg{}; |
| 89 | s32 branch_offset; | 89 | s32 branch_offset{}; |
| 90 | std::vector<IndirectBranch> indirect_branches; | 90 | std::vector<IndirectBranch> indirect_branches; |
| 91 | }; | 91 | }; |
| 92 | 92 | ||