mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	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.
This commit is contained in:
		@@ -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{};
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user