Fix incorrect assert about DXIL result SSA tracking

Assert was changed in 0809a6dd3f when ssaMaxExecPoints was made into an rdcarray
This commit is contained in:
Jake Turner
2025-10-07 14:44:06 +01:00
parent 30b45f0cff
commit 15b510f131
+2 -2
View File
@@ -9136,8 +9136,8 @@ ShaderDebugTrace *Debugger::BeginDebug(uint32_t eventId, const DXBC::DXBCContain
}
else
{
// If the result SSA has tracking then that access should be after setting the result
RDCASSERT(current.IsAfter(ssaMaxExecPoints[resultId], controlFlow));
// If the result SSA has tracking then that access should be after this assignment
RDCASSERT(ssaMaxExecPoints[resultId].IsAfter(current, controlFlow));
}
}
// Track maximum execution point when an SSA is referenced as an argument