Browse Source

Merge pull request #4085 from ReinUsesLisp/gcc-times

video_core/macro_jit_x64: Remove initializer in member variable
nce_cpp
David 6 years ago
committed by GitHub
parent
commit
9fb407c62e
  1. 4
      src/video_core/macro/macro_jit_x64.h

4
src/video_core/macro/macro_jit_x64.h

@ -85,8 +85,8 @@ private:
std::optional<Macro::Opcode> next_opcode{};
ProgramType program{nullptr};
std::array<Xbyak::Label, MAX_CODE_SIZE> labels{};
std::array<Xbyak::Label, MAX_CODE_SIZE> delay_skip{};
std::array<Xbyak::Label, MAX_CODE_SIZE> labels;
std::array<Xbyak::Label, MAX_CODE_SIZE> delay_skip;
Xbyak::Label end_of_code{};
bool is_delay_slot{};

Loading…
Cancel
Save