projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
55a2af0
)
* cfgrtl.c (update_bb_for_insn): Do not set block for barriers.
author
Jan Hubicka
<jh@suse.cz>
Thu, 3 Apr 2003 20:28:39 +0000
(22:28 +0200)
committer
Jan Hubicka
<hubicka@gcc.gnu.org>
Thu, 3 Apr 2003 20:28:39 +0000
(20:28 +0000)
From-SVN: r65214
gcc/ChangeLog
patch
|
blob
|
history
gcc/cfgrtl.c
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index 4b6dec2e7fbeb3c97a48f417c3d54d5b6f758452..a02b55c72970cacb2779c038f8c031ee8d9ba213 100644
(file)
--- a/
gcc/ChangeLog
+++ b/
gcc/ChangeLog
@@
-1,3
+1,7
@@
+Thu Apr 3 22:27:40 CEST 2003 Jan Hubicka <jh@suse.cz>
+
+ * cfgrtl.c (update_bb_for_insn): Do not set block for barriers.
+
2003-04-03 Eric Botcazou <ebotcazou@libertysurf.fr>
PR optimization/10157
diff --git
a/gcc/cfgrtl.c
b/gcc/cfgrtl.c
index c7194b56c4a4e5ffd2c504655b946cdd81aaf027..185676b9041c88214fc6a9137d087668212d5b38 100644
(file)
--- a/
gcc/cfgrtl.c
+++ b/
gcc/cfgrtl.c
@@
-462,7
+462,8
@@
update_bb_for_insn (bb)
for (insn = bb->head; ; insn = NEXT_INSN (insn))
{
- set_block_for_insn (insn, bb);
+ if (GET_CODE (insn) != BARRIER)
+ set_block_for_insn (insn, bb);
if (insn == bb->end)
break;
}