arm.c (thumb2_final_prescan_insn): Don't incrememnt condexec_count when skipping...
authorPaul Brook <paul@codesourcery.com>
Wed, 21 Feb 2007 21:30:43 +0000 (21:30 +0000)
committerPaul Brook <pbrook@gcc.gnu.org>
Wed, 21 Feb 2007 21:30:43 +0000 (21:30 +0000)
2007-02-21  Paul Brook  <paul@codesourcery.com>

* config/arm/arm.c (thumb2_final_prescan_insn): Don't incrememnt
condexec_count when skipping USE and CLOBBER.

From-SVN: r122205

gcc/ChangeLog
gcc/config/arm/arm.c

index bd362ff3367b46cb5397f3443cae9f3079d51049..37f33bbe79d16dd7491b857704138d876e5e0669 100644 (file)
@@ -1,3 +1,8 @@
+2007-02-21  Paul Brook  <paul@codesourcery.com>
+
+       * config/arm/arm.c (thumb2_final_prescan_insn): Don't incrememnt
+       condexec_count when skipping USE and CLOBBER.
+
 2007-02-21  Nick Clifton  <nickc@redhat.com>
 
        * common.opt (Warray-bounds): Add Warning attribute.
index b4c1289075afbce939107712bda4e343b54e301e..6998332a79d7d33beb4202f50b0c7b380758be75 100644 (file)
@@ -12243,10 +12243,7 @@ thumb2_final_prescan_insn (rtx insn)
       /* USE and CLOBBER aren't really insns, so just skip them.  */
       if (GET_CODE (body) == USE
          || GET_CODE (body) == CLOBBER)
-       {
-         arm_condexec_count++;
-         continue;
-       }
+       continue;
 
       /* ??? Recognize conditional jumps, and combine them with IT blocks.  */
       if (GET_CODE (body) != COND_EXEC)