mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-12 21:10:42 +00:00
Fix missing else if causing false assert about unhandled OpCode
This commit is contained in:
@@ -4938,7 +4938,7 @@ bool ThreadState::ExecuteInstruction(DebugAPIWrapper *apiWrapper,
|
||||
#define _IMPL(I, S, U) comp<U>(result, c) = (U)x;
|
||||
IMPL_FOR_INT_TYPES_FOR_TYPE(_IMPL, result.type);
|
||||
}
|
||||
if(opCode == Operation::ZExt)
|
||||
else if(opCode == Operation::ZExt)
|
||||
{
|
||||
// Result bit_width >= Value bit_width
|
||||
RDCASSERT(retType->bitWidth >= srcBitWidth);
|
||||
|
||||
Reference in New Issue
Block a user