From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6354 invoked by alias); 13 Apr 2004 11:26:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 6343 invoked by uid 48); 13 Apr 2004 11:26:16 -0000 Date: Tue, 13 Apr 2004 12:45:00 -0000 Message-ID: <20040413112616.6342.qmail@sources.redhat.com> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20040413070205.14936.zack@gcc.gnu.org> References: <20040413070205.14936.zack@gcc.gnu.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c++/14936] [3.4/3.3 Regression] -fdata-sections + uninitialized template data objects = spurious link errors X-Bugzilla-Reason: CC X-SW-Source: 2004-04/txt/msg01069.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2004-04-13 11:26 ------- The mainline gives: .section .gnu.linkonce.b._ZN1SIdE1iE,"aw",@nobits .align 4 .type _ZN1SIdE1iE, @object .size _ZN1SIdE1iE, 4 _ZN1SIdE1iE: While 3.4.0 and 3.3.3 gives: .globl _ZN1SIdE1iE .section .bss._ZN1SIdE1iE,"aw",@nobits .align 4 .type _ZN1SIdE1iE, @object .size _ZN1SIdE1iE, 4 _ZN1SIdE1iE: 3.2.3 did not put it into its own section: .comm _ZN1SIdE1iE,4,4 -- What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed| |1 Keywords| |wrong-code Known to fail| |3.3.3 3.4.0 Known to work| |3.5.0 3.2.3 Last reconfirmed|0000-00-00 00:00:00 |2004-04-13 11:26:15 date| | Summary|-fdata-sections + |[3.4/3.3 Regression] -fdata- |uninitialized template data |sections + uninitialized |objects = spurious link |template data objects = |errors |spurious link errors Target Milestone|--- |3.3.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14936