https://gcc.gnu.org/bugzilla/show_bug.cgi?id=46322
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed| |2021-08-13 Status|UNCONFIRMED |NEW Ever confirmed|0 |1 --- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> --- This is still valid: /* DECL_RTL looks like (MEM (PLUS (REG...) (CONST_INT...))), in which case we want the value of that CONST_INT, or (MEM (REG ...)), in which case we use a value of zero. */ if (!REG_P (XEXP (DECL_RTL (parms), 0))) number = INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1)); else number = 0; I heard a rumor that dbxout was going to be removed either in GCC 12 or 13.