Browse Source
Merge pull request #4524 from lioncash/memory-log
shader/memory: Amend UNIMPLEMENTED_IF_MSG without a message
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/video_core/shader/decode/memory.cpp
|
|
|
@ -386,7 +386,8 @@ u32 ShaderIR::DecodeMemory(NodeBlock& bb, u32 pc) { |
|
|
|
break; |
|
|
|
} |
|
|
|
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] = |
|
|
|
TrackGlobalMemory(bb, instr, true, true); |
|
|
|
if (!real_address || !base_address) { |
|
|
|
|