mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #4524 from lioncash/memory-log
shader/memory: Amend UNIMPLEMENTED_IF_MSG without a message
This commit is contained in:
		
						commit
						9864da7d43
					
				@ -386,7 +386,8 @@ u32 ShaderIR::DecodeMemory(NodeBlock& bb, u32 pc) {
 | 
				
			|||||||
        break;
 | 
					        break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    case OpCode::Id::RED: {
 | 
					    case OpCode::Id::RED: {
 | 
				
			||||||
        UNIMPLEMENTED_IF_MSG(instr.red.type != GlobalAtomicType::U32);
 | 
					        UNIMPLEMENTED_IF_MSG(instr.red.type != GlobalAtomicType::U32, "type={}",
 | 
				
			||||||
 | 
					                             static_cast<int>(instr.red.type.Value()));
 | 
				
			||||||
        const auto [real_address, base_address, descriptor] =
 | 
					        const auto [real_address, base_address, descriptor] =
 | 
				
			||||||
            TrackGlobalMemory(bb, instr, true, true);
 | 
					            TrackGlobalMemory(bb, instr, true, true);
 | 
				
			||||||
        if (!real_address || !base_address) {
 | 
					        if (!real_address || !base_address) {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user