mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-13 05:20:45 +00:00
Ignore function-local OpUndef for stepping
This commit is contained in:
@@ -575,7 +575,7 @@ void ThreadState::SkipIgnoredInstructions()
|
||||
{
|
||||
Iter it = debugger.GetIterForInstruction(nextInstruction);
|
||||
rdcspv::Op op = it.opcode();
|
||||
if(op == Op::Line || op == Op::NoLine)
|
||||
if(op == Op::Line || op == Op::NoLine || op == Op::Undef)
|
||||
{
|
||||
nextInstruction++;
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user