This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: powerpc-ibm-aix4.3.3.0 bootstrap issue
- To: aoliva at redhat dot com, grahams at redhat dot com
- Subject: Re: powerpc-ibm-aix4.3.3.0 bootstrap issue
- From: mike stump <mrs at windriver dot com>
- Date: Wed, 24 Oct 2001 14:42:59 -0700 (PDT)
- Cc: dje at watson dot ibm dot com, gcc at gcc dot gnu dot org, john at feith dot com
> From: Alexandre Oliva <aoliva@redhat.com>
> Date: 24 Oct 2001 17:48:35 -0200
> But I still don't see how this would lead to bootstrap compare
> failures, or to differences not showing up when the compiler is run
> inside a debugger.
For much the same reason that:
main() {
char *a[2];
a[0]=strdup("Hi");
a[1]=strdup("Hello");
qsort (a, 2, sizeof(char*), strcmp);
printf("%s\n", a[0]);
}
might print Hi, or Hello.