This is the mail archive of the gcc@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] |
Can you create a reduced testcase which demonstrates the problem? http://gcc.gnu.org/bugs.html#report
E.g. what do you get when you compile and run the following program?
extern int printf (const char *, ...); extern void abort(void); int main(void) { static struct something *ptr1, *ptr2 = 0; printf ("%p %p\n", ptr1, ptr2); if (ptr1 != ptr2) abort(); return 0; }
It should output "0 0".
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |