OSDN Git Service

* final.c (shorten_branches) : Ignore DEBUG_INSN_P instructions
authorhariharans <hariharans@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 10 Sep 2009 16:48:54 +0000 (16:48 +0000)
committerhariharans <hariharans@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 10 Sep 2009 16:48:54 +0000 (16:48 +0000)
introduced by the VTA branch merge.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151599 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/final.c

index 70a460d..02a645e 100644 (file)
@@ -1,3 +1,8 @@
+2009-09-10  Hariharan Sandanagobalane  <hariharan@picochip.com>
+
+       * final.c (shorten_branches) : Ignore DEBUG_INSN_P instructions
+        introduced by the VTA branch merge.
+
 2009-09-10  Uros Bizjak  <ubizjak@gmail.com>
 
        * ira-conflicts.c: Use fputs or putc instead of fprintf
index 76c52ca..d8ecc51 100644 (file)
@@ -1081,7 +1081,7 @@ shorten_branches (rtx first ATTRIBUTE_UNUSED)
       INSN_ADDRESSES (uid) = insn_current_address + insn_lengths[uid];
 
       if (NOTE_P (insn) || BARRIER_P (insn)
-         || LABEL_P (insn))
+         || LABEL_P (insn) || DEBUG_INSN_P(insn))
        continue;
       if (INSN_DELETED_P (insn))
        continue;