Merge pull request #7435 from kalsprite/asm_group_empty_params

Delete dead code that crashed the checker on an asm template group with no parameters
This commit is contained in:
gingerBill
2026-08-26 08:40:20 +01:00
committed by GitHub

View File

@@ -3723,14 +3723,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;
}