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



------- Additional Comments From steven at gcc dot gnu dot org  2003-09-08 06:18 -------
This fails:
------------------------------
inline void f(void) {
    extern int t[];
}
 
int t[1] = {0};
------------------------------

but this works:
------------------------------
int t[1] = {0};

inline void f(void) {
    extern int t[];
}
------------------------------

It always works with g++, and it always works with -fdisable-gimple. The
function is already munged before we get to t_r_o_c...

And I still haven't found out what the problem is :-(


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