This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/11218] [tree-ssa] symbol already defined
- From: "pinskia at physics dot uc dot edu" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 17 Jun 2003 15:12:34 -0000
- Subject: [Bug c/11218] [tree-ssa] symbol already defined
- References: <20030617081908.11218.marcus@jet.franken.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11218
pinskia@physics.uc.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2003-06-17 15:12:33
date| |
Summary|[tree-ssa] symbol already |[tree-ssa] symbol already
|defined |defined
------- Additional Comments From pinskia@physics.uc.edu 2003-06-17 15:12 -------
I see the same thing on powerpc-apple-darwin6.6 with tree-ssa 20030615 (merged 20030525). I
am compiling a new compiler right now to see if I see it on 20030617 (merged 20030525). Some
how between Generic and Gimple the symbol gets changed to a static variable inside f:
*.t03.generic:
;; Function f (f)
f ()
{
extern int t[];
(void)0
}
*.t05.gimple:
;; Function f (f)
f ()
{
static int t[1] = <<< error >>>;
(void)0
}