mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 23:58:50 +00:00
Change sort for single instanced procedures
This commit is contained in:
@@ -2949,6 +2949,13 @@ gb_internal void lb_do_para_poly_diagnostics(lbGenerator *gen) {
|
|||||||
return +1;
|
return +1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (x->total_code_size > y->total_code_size) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (x->total_code_size < y->total_code_size) {
|
||||||
|
return +1;
|
||||||
|
}
|
||||||
|
|
||||||
return string_compare(x->canonical_name, y->canonical_name);
|
return string_compare(x->canonical_name, y->canonical_name);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user