]> gcc.gnu.org Git - gcc.git/commitdiff
More comment tweaks.
authorJeff Law <law@gcc.gnu.org>
Tue, 27 Jan 1998 23:04:34 +0000 (16:04 -0700)
committerJeff Law <law@gcc.gnu.org>
Tue, 27 Jan 1998 23:04:34 +0000 (16:04 -0700)
From-SVN: r17525

gcc/config/m32r/m32r.md

index fc1b4cc9480ada0e40f7fcaef72900e423c9f84c..5e40acd3a54fa78537a71eb28100412534e190bb 100644 (file)
        {
          /* Try to use auto-inc addressing if we can.  */
          if (GET_CODE (XEXP (operands[1], 0)) == REG
+           /* ??? This is WRONG, dead_or_set_p cannot be used after reload
+              because the REG_DEAD notes are not maintained after reload.  */
              && dead_or_set_p (insn, XEXP (operands[1], 0)))
            {
              operands[1] = XEXP (operands[1], 0);
     case 3 :
       /* Try to use auto-inc addressing if we can.  */
       if (GET_CODE (XEXP (operands[0], 0)) == REG
+         /* ??? This is WRONG, dead_or_set_p cannot be used after reload
+            because the REG_DEAD notes are not maintained after reload.  */
          && dead_or_set_p (insn, XEXP (operands[0], 0)))
        {
          operands[0] = XEXP (operands[0], 0);
        {
          /* Try to use auto-inc addressing if we can.  */
          if (GET_CODE (XEXP (operands[1], 0)) == REG
+             /* ??? This is WRONG, dead_or_set_p cannot be used after reload
+                because the REG_DEAD notes are not maintained after reload.  */
              && dead_or_set_p (insn, XEXP (operands[1], 0)))
            {
              operands[1] = XEXP (operands[1], 0);
     case 3 :
       /* Try to use auto-inc addressing if we can.  */
       if (GET_CODE (XEXP (operands[0], 0)) == REG
+         /* ??? This is WRONG, dead_or_set_p cannot be used after reload
+            because the REG_DEAD notes are not maintained after reload.  */
          && dead_or_set_p (insn, XEXP (operands[0], 0)))
        {
          operands[0] = XEXP (operands[0], 0);
This page took 0.06619 seconds and 5 git commands to generate.