early-remat.c: Fix new/delete mismatch [PR100230]

This simple patch fixes a mistmatched operator new/delete in
early-remat.c which triggers ASan errors on (at least) AArch64 when
compiling SVE code.

gcc/ChangeLog:

	PR rtl-optimization/100230
	* early-remat.c (early_remat::sort_candidates): Use delete[]
	instead of delete for array allocated with new[].
This commit is contained in:
Alex Coplan 2021-04-23 14:09:15 +01:00
parent 0e1e7b7790
commit 5d87c2251c

View file

@ -1059,7 +1059,7 @@ early_remat::sort_candidates (void)
m_candidates.qsort (compare_candidates);
delete postorder_index;
delete[] postorder_index;
}
/* Commit to the current candidate indices and initialize cross-references. */