summaryrefslogtreecommitdiff
path: root/gcc/final.c
diff options
context:
space:
mode:
authorhariharans <hariharans@138bc75d-0d04-0410-961f-82ee72b054a4>2009-09-10 16:48:54 +0000
committerhariharans <hariharans@138bc75d-0d04-0410-961f-82ee72b054a4>2009-09-10 16:48:54 +0000
commit766aacfc909b3558549074ab9d3e1c5178ffa265 (patch)
tree61b88fab8862ff506a8eb5a8867a6a9cbeb00c9f /gcc/final.c
parent609e7ca133d200aa650f5df3b1c0b84b3266cfe3 (diff)
downloadgcc-766aacfc909b3558549074ab9d3e1c5178ffa265.tar.gz
* final.c (shorten_branches) : Ignore DEBUG_INSN_P instructions
introduced by the VTA branch merge. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151599 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/final.c')
-rw-r--r--gcc/final.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c
index 76c52ca100e..d8ecc5177f0 100644
--- a/gcc/final.c
+++ b/gcc/final.c
@@ -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;