Quick change to remove duplicate SSA ID on DXIL Alloca result name

This commit is contained in:
Jake Turner
2025-11-06 12:10:41 +00:00
parent fcf1889839
commit 1d56f5d871
@@ -5248,8 +5248,6 @@ bool ThreadState::ExecuteInstruction(const rdcarray<ThreadState> &workgroup)
case Operation::Alloca:
{
result.name = DXBC::BasicDemangle(result.name);
result.name += "_";
result.name += ToStr(resultId);
m_Memory.AllocateMemoryForType(inst.type, resultId, false, false, result);
break;
}