https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92989
Jakub Jelinek <jakub at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jakub at gcc dot gnu.org
--- Comment #9 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
On #c6 it can't be reproduced with mipsisa64-elf gcc, asit has different size_t
etc. than the preprocessed source.
I can reproduce with cross to mips-mti-linux, with -quiet -nostdinc
locale-inst.ii -std=c++11 -mips16 -O2.
The ICE is in:
1643 for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
1644 if (lra_reg_info[i].nrefs != 0
1645 && reg_renumber[i] >= 0
1646 && overlaps_hard_reg_set_p
(lra_reg_info[i].conflict_hard_regs,
1647 PSEUDO_REGNO_MODE (i),
reg_renumber[i]))
1648 gcc_unreachable ();
Richard, could you please have a look again?