This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c/11218] [tree-ssa] symbol already defined


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
}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]