lra-constraints.c (check_and_process_move): Constrain the range of DCLASS and SCLASS...
authorJeff Law <law@redhat.com>
Wed, 30 Nov 2016 04:15:55 +0000 (21:15 -0700)
committerJeff Law <law@gcc.gnu.org>
Wed, 30 Nov 2016 04:15:55 +0000 (21:15 -0700)
* lra-constraints.c (check_and_process_move): Constrain the
range of DCLASS and SCLASS to avoid false positive out of bounds
array index warning.

From-SVN: r242993

gcc/ChangeLog
gcc/lra-constraints.c

index b6383aa46914fdf7865773b207a051529651127c..df787e1be1e5dafe92b1f80555510862d16867db 100644 (file)
@@ -1,3 +1,9 @@
+2016-11-29  Jeff Law  <law@redhat.com>
+
+       * lra-constraints.c (check_and_process_move): Constrain the
+       range of DCLASS and SCLASS to avoid false positive out of bounds
+       array index warning.
+
 2016-11-29  David Malcolm  <dmalcolm@redhat.com>
 
        * doc/install.texi (--with-target-bdw-gc): Remove stray '@'.
index 133b55ce0ba48f7924af722039ff8380c8934b2e..7784ad29744b1e43d282c92a33ede2a48ebf382f 100644 (file)
@@ -1150,6 +1150,7 @@ check_and_process_move (bool *change_p, bool *sec_mem_p ATTRIBUTE_UNUSED)
   sclass = dclass = NO_REGS;
   if (REG_P (dreg))
     dclass = get_reg_class (REGNO (dreg));
+  gcc_assert (dclass < LIM_REG_CLASSES);
   if (dclass == ALL_REGS)
     /* ALL_REGS is used for new pseudos created by transformations
        like reload of SUBREG_REG (see function
@@ -1161,6 +1162,7 @@ check_and_process_move (bool *change_p, bool *sec_mem_p ATTRIBUTE_UNUSED)
     return false;
   if (REG_P (sreg))
     sclass = get_reg_class (REGNO (sreg));
+  gcc_assert (sclass < LIM_REG_CLASSES);
   if (sclass == ALL_REGS)
     /* See comments above.  */
     return false;