public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/17163] New: [3.5 Regression] ICE with -frepo and static class variables
@ 2004-08-24  5:39 pinskia at gcc dot gnu dot org
  2004-08-24  5:40 ` [Bug c++/17163] " pinskia at gcc dot gnu dot org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-08-24  5:39 UTC (permalink / raw)
  To: gcc-bugs

template <int __inst>
struct __Atomicity_lock
{
  static unsigned char _S_atomicity_lock;
};
template <int __inst>
unsigned char __Atomicity_lock<__inst>::_S_atomicity_lock = 0;
template unsigned char __Atomicity_lock<0>::_S_atomicity_lock;

-- 
           Summary: [3.5 Regression] ICE with -frepo and static class
                    variables
           Product: gcc
           Version: 3.5.0
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code
          Severity: critical
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pinskia at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org
OtherBugsDependingO 8991
             nThis:


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17163


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug c++/17163] [3.5 Regression] ICE with -frepo and static class variables
  2004-08-24  5:39 [Bug c++/17163] New: [3.5 Regression] ICE with -frepo and static class variables pinskia at gcc dot gnu dot org
@ 2004-08-24  5:40 ` pinskia at gcc dot gnu dot org
  2004-08-24  6:38 ` cvs-commit at gcc dot gnu dot org
  2004-08-24  6:43 ` mmitchel at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-08-24  5:40 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |mark at codesourcery dot com
                   |dot org                     |
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-08-24 05:40:34
               date|                            |
   Target Milestone|---                         |3.5.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17163


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug c++/17163] [3.5 Regression] ICE with -frepo and static class variables
  2004-08-24  5:39 [Bug c++/17163] New: [3.5 Regression] ICE with -frepo and static class variables pinskia at gcc dot gnu dot org
  2004-08-24  5:40 ` [Bug c++/17163] " pinskia at gcc dot gnu dot org
@ 2004-08-24  6:38 ` cvs-commit at gcc dot gnu dot org
  2004-08-24  6:43 ` mmitchel at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-08-24  6:38 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-08-24 06:38 -------
Subject: Bug 17163

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	mmitchel@gcc.gnu.org	2004-08-24 06:37:59

Modified files:
	gcc/testsuite  : ChangeLog 
	gcc/cp         : ChangeLog pt.c search.c 
Added files:
	gcc/testsuite/g++.dg/template: repo2.C 

Log message:
	PR c++/17163
	* pt.c (instantiate_decl): Do not try to apply
	DECL_DECLARED_INLINED_P to a VAR_DECL.
	
	PR c++/17163
	* g++.dg/template/repo2.C: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.4178&r2=1.4179
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.4296&r2=1.4297
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/pt.c.diff?cvsroot=gcc&r1=1.913&r2=1.914
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/search.c.diff?cvsroot=gcc&r1=1.308&r2=1.309
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/template/repo2.C.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17163


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug c++/17163] [3.5 Regression] ICE with -frepo and static class variables
  2004-08-24  5:39 [Bug c++/17163] New: [3.5 Regression] ICE with -frepo and static class variables pinskia at gcc dot gnu dot org
  2004-08-24  5:40 ` [Bug c++/17163] " pinskia at gcc dot gnu dot org
  2004-08-24  6:38 ` cvs-commit at gcc dot gnu dot org
@ 2004-08-24  6:43 ` mmitchel at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2004-08-24  6:43 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From mmitchel at gcc dot gnu dot org  2004-08-24 06:43 -------
Fixed in GCC 3.5.0.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17163


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-08-24  6:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-08-24  5:39 [Bug c++/17163] New: [3.5 Regression] ICE with -frepo and static class variables pinskia at gcc dot gnu dot org
2004-08-24  5:40 ` [Bug c++/17163] " pinskia at gcc dot gnu dot org
2004-08-24  6:38 ` cvs-commit at gcc dot gnu dot org
2004-08-24  6:43 ` mmitchel at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).