[Bug target/15231] [3.4 only] constant pool entries referring to nonexistent labels

2006-02-28 Thread gdr at gcc dot gnu dot org
--- Comment #8 from gdr at gcc dot gnu dot org 2006-02-28 09:14 --- Fixed in 4.0 and up. Won't fix for 3.4.6. -- gdr at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/15231] [3.4 only] constant pool entries referring to nonexistent labels

2005-11-28 Thread gdr at gcc dot gnu dot org
--- Comment #7 from gdr at gcc dot gnu dot org 2005-11-28 10:22 --- Postpone until 3.4.6 -- gdr at gcc dot gnu dot org changed: What|Removed |Added Target

[Bug target/15231] [3.4 only] constant pool entries referring to nonexistent labels

2005-11-20 Thread gdr at gcc dot gnu dot org
--- Comment #6 from gdr at gcc dot gnu dot org 2005-11-21 02:09 --- (In reply to comment #5) I've made a small amount of headway on this. Labels L22 and L21 were (when created) the addresses of objects in the code. However, they are deleted (presumably as unreachable), but the

[Bug target/15231] [3.4 only] constant pool entries referring to nonexistent labels

2005-09-02 Thread rearnsha at gcc dot gnu dot org
--- Additional Comments From rearnsha at gcc dot gnu dot org 2005-09-02 22:27 --- I've made a small amount of headway on this. Labels L22 and L21 were (when created) the addresses of objects in the code. However, they are deleted (presumably as unreachable), but the references to the

[Bug target/15231] [3.4 only] constant pool entries referring to nonexistent labels

2005-05-19 Thread mmitchel at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|3.4.4 |3.4.5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15231

[Bug target/15231] [3.4 only] constant pool entries referring to nonexistent labels

2004-11-14 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-15 03:24 --- It works on the mainline if we remove the use of the extension: ((void)((0)), irq_stat[0].__local_bh_count)++ gets replaced with ((void)((0)), irq_stat[0].__local_bh_count++) -- What