]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
VAX: Fix invalid RTX operand access in `nonindexed_address_p'
authorMaciej W. Rozycki <macro@orcam.me.uk>
Sat, 14 Feb 2026 14:24:46 +0000 (14:24 +0000)
committerMaciej W. Rozycki <macro@orcam.me.uk>
Sat, 14 Feb 2026 14:24:46 +0000 (14:24 +0000)
Replace an unguarded early access to the incoming RTX's operand 0 in
`nonindexed_address_p' with direct accesses at the actual use places,
fixing a libgcc build error:

during RTL pass: reload
.../libgcc/libgcc2.c: In function '__udiv_w_sdiv':
.../libgcc/libgcc2.c:649:1: internal compiler error: RTL check: expected elt 0 type 'e' or 'u', have 'r' (rtx reg) in nonindexed_address_p, at config/vax/vax.cc:1826

where `--enable-checking=rtl' has been specified so as to enable RTL
consistency checks.

gcc/
* config/vax/vax.cc (nonindexed_address_p): Move incoming RTX's
operand 0 access to the actual use places.

gcc/config/vax/vax.cc

index 8939aa4c3afce5a1367a91167ef3f7d6b508ceee..07267fa0303153c4b27526e6d304a2507cc23371 100644 (file)
@@ -1811,7 +1811,6 @@ indirectable_address_p (rtx x, bool strict, bool indirect)
 static bool
 nonindexed_address_p (rtx x, bool strict)
 {
-  rtx xfoo0;
   if (REG_P (x))
     {
       if (! reload_in_progress
@@ -1823,11 +1822,10 @@ nonindexed_address_p (rtx x, bool strict)
     return true;
   if (indirectable_address_p (x, strict, false))
     return true;
-  xfoo0 = XEXP (x, 0);
-  if (MEM_P (x) && indirectable_address_p (xfoo0, strict, true))
+  if (MEM_P (x) && indirectable_address_p (XEXP (x, 0), strict, true))
     return true;
   if ((GET_CODE (x) == PRE_DEC || GET_CODE (x) == POST_INC)
-      && BASE_REGISTER_P (xfoo0, strict))
+      && BASE_REGISTER_P (XEXP (x, 0), strict))
     return true;
   return false;
 }