Delete dead code that crashed the checker on an asm template group with no parameters

This commit is contained in:
kalsprite
2026-08-23 23:17:55 -07:00
parent 965970af71
commit 366c33e5af
4 changed files with 40 additions and 8 deletions

View File

@@ -3722,14 +3722,6 @@ gb_internal ProcTypeOverloadKind are_proc_types_overload_safe(Type *x, Type *y)
return ProcOverload_TargetFeatures;
}
if (px.params != nullptr && py.params != nullptr) {
Entity *ex = px.params->Tuple.variables[0];
Entity *ey = py.params->Tuple.variables[0];
bool ok = are_types_identical(ex->type, ey->type);
if (ok) {
}
}
return ProcOverload_Identical;
}