public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c++/3394
@ 2001-07-12  5:06 Craig Rodrigues
  0 siblings, 0 replies; 2+ messages in thread
From: Craig Rodrigues @ 2001-07-12  5:06 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c++/3394; it has been noted by GNATS.

From: Craig Rodrigues <rodrigc@mediaone.net>
To: gcc-gnats@gcc.gnu.org
Cc: gcc-prs@gcc.gnu.org, khan@nanotech.wisc.edu, rodrigc@gcc.gnu.org,
   gcc-bugs@gcc.gnu.org, nobody@gcc.gnu.org
Subject: Re: c++/3394
Date: Thu, 12 Jul 2001 07:59:27 -0400

 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=3394&database=gcc
 
 Confirmed against: gcc version 3.0.1 20010627 (prerelease).
 
 -- 
 Craig Rodrigues        
 http://www.gis.net/~craigr    
 rodrigc@mediaone.net          


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

* Re: c++/3394
@ 2001-07-12  5:16 Craig Rodrigues
  0 siblings, 0 replies; 2+ messages in thread
From: Craig Rodrigues @ 2001-07-12  5:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c++/3394; it has been noted by GNATS.

From: Craig Rodrigues <rodrigc@mediaone.net>
To: gcc-gnats@gcc.gnu.org
Cc: gcc-prs@gcc.gnu.org, khan@nanotech.wisc.edu, rodrigc@gcc.gnu.org,
   gcc-bugs@gcc.gnu.org, nobody@gcc.gnu.org, gcc-patches@gcc.gnu.org
Subject: Re: c++/3394
Date: Thu, 12 Jul 2001 08:14:41 -0400

 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=3394&database=gcc
 
 Mumit Khan <khan@nanotech.wisc.edu> has provided the following
 patch to solve the problem described in PR 3394:
 
 Index: gcc/cp/decl.c
 ===================================================================
 RCS file: /homes/khan/src/win32/cygwin/CVSROOT/gcc-3.0/gcc/cp/decl.c,v
 retrieving revision 1.2
 diff -u -3 -p -r1.2 decl.c
 --- gcc/cp/decl.c       2001/06/21 04:44:06     1.2
 +++ gcc/cp/decl.c       2001/06/22 15:15:12
 @@ -12765,6 +12765,14 @@ xref_basetypes (code_type_node, name, re
    tree base;
  
    int i, len;
 +
 +  /* If we are called from the parser, code_type_node will sometimes be a
 +     TREE_LIST.  This indicates that the user wrote
 +     "class __attribute__ ((foo)) bar".  Extract the attributes so that
 +     tree_low_cst doesn't crash.  */
 +  if (TREE_CODE (code_type_node) == TREE_LIST)
 +    code_type_node = TREE_VALUE (code_type_node);
 +
    enum tag_types tag_code = (enum tag_types) tree_low_cst (code_type_node, 1);
  
    if (tag_code == union_type)
 
 -- 
 Craig Rodrigues        
 http://www.gis.net/~craigr    
 rodrigc@mediaone.net          


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

end of thread, other threads:[~2001-07-12  5:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-07-12  5:06 c++/3394 Craig Rodrigues
2001-07-12  5:16 c++/3394 Craig Rodrigues

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).