From 6e5d8aac4d8e573dc12a9bc8d93621f17323df5e Mon Sep 17 00:00:00 2001 From: ReinUsesLisp Date: Mon, 15 Jun 2020 05:16:54 -0300 Subject: [PATCH] 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. --- src/video_core/macro/macro_jit_x64.h | 4 ++-- 1 file 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 21ee157cf4..71f738b9a8 100644 --- a/src/video_core/macro/macro_jit_x64.h +++ b/src/video_core/macro/macro_jit_x64.h @@ -85,8 +85,8 @@ private: std::optional next_opcode{}; ProgramType program{nullptr}; - std::array labels{}; - std::array delay_skip{}; + std::array labels; + std::array delay_skip; Xbyak::Label end_of_code{}; bool is_delay_slot{};