summaryrefslogtreecommitdiff
path: root/src/video_core/macro
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2020-06-15 05:16:54 -0300
committerGravatar ReinUsesLisp2020-06-15 05:17:55 -0300
commit6e5d8aac4d8e573dc12a9bc8d93621f17323df5e (patch)
treee4743e2aaf344790862f0d519d85fc7941636143 /src/video_core/macro
parentMerge pull request #4070 from ogniK5377/GetTPCMasks-fix (diff)
downloadyuzu-6e5d8aac4d8e573dc12a9bc8d93621f17323df5e.tar.gz
yuzu-6e5d8aac4d8e573dc12a9bc8d93621f17323df5e.tar.xz
yuzu-6e5d8aac4d8e573dc12a9bc8d93621f17323df5e.zip
video_core/macro_jit_x64: Remove initializer in member variable
Fix build time issues on gcc. Confirmed through asan that avoiding this initialization is safe.
Diffstat (limited to 'src/video_core/macro')
-rw-r--r--src/video_core/macro/macro_jit_x64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/macro/macro_jit_x64.h b/src/video_core/macro/macro_jit_x64.h
index 21ee157cf..71f738b9a 100644
--- a/src/video_core/macro/macro_jit_x64.h
+++ b/src/video_core/macro/macro_jit_x64.h
@@ -85,8 +85,8 @@ private:
85 std::optional<Macro::Opcode> next_opcode{}; 85 std::optional<Macro::Opcode> next_opcode{};
86 ProgramType program{nullptr}; 86 ProgramType program{nullptr};
87 87
88 std::array<Xbyak::Label, MAX_CODE_SIZE> labels{}; 88 std::array<Xbyak::Label, MAX_CODE_SIZE> labels;
89 std::array<Xbyak::Label, MAX_CODE_SIZE> delay_skip{}; 89 std::array<Xbyak::Label, MAX_CODE_SIZE> delay_skip;
90 Xbyak::Label end_of_code{}; 90 Xbyak::Label end_of_code{};
91 91
92 bool is_delay_slot{}; 92 bool is_delay_slot{};