summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/maxwell/control_flow.h
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2021-04-10 08:32:55 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:26 +0200
commit5bfcafa0a21619e8cd82c38ec51e260838f42042 (patch)
tree05b34d95d2a32ef58ae76519610b002baa9f7adc /src/shader_recompiler/frontend/maxwell/control_flow.h
parentshader_recompiler,video_core: Cleanup some GCC and Clang errors (diff)
downloadyuzu-5bfcafa0a21619e8cd82c38ec51e260838f42042.tar
yuzu-5bfcafa0a21619e8cd82c38ec51e260838f42042.tar.gz
yuzu-5bfcafa0a21619e8cd82c38ec51e260838f42042.tar.bz2
yuzu-5bfcafa0a21619e8cd82c38ec51e260838f42042.tar.lz
yuzu-5bfcafa0a21619e8cd82c38ec51e260838f42042.tar.xz
yuzu-5bfcafa0a21619e8cd82c38ec51e260838f42042.tar.zst
yuzu-5bfcafa0a21619e8cd82c38ec51e260838f42042.zip
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/control_flow.h')
-rw-r--r--src/shader_recompiler/frontend/maxwell/control_flow.h16
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<
Location begin;
Location end;
- EndClass end_class;
- IR::Condition cond;
+ EndClass end_class{};
+ IR::Condition cond{};
Stack stack;
- Block* branch_true;
- Block* branch_false;
- FunctionId function_call;
- Block* return_block;
- IR::Reg branch_reg;
- s32 branch_offset;
+ Block* branch_true{};
+ Block* branch_false{};
+ FunctionId function_call{};
+ Block* return_block{};
+ IR::Reg branch_reg{};
+ s32 branch_offset{};
std::vector<IndirectBranch> indirect_branches;
};