Re: Re: Cygwin PostgreSQL CVS Patch Question

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Jason Tishler <Jason(dot)Tishler(at)dothill(dot)com>
Cc: Peter Eisentraut <peter_e(at)gmx(dot)net>, pgsql-ports(at)postgresql(dot)org
Subject: Re: Re: Cygwin PostgreSQL CVS Patch Question
Date: 2001-01-09 23:37:31
Message-ID: 7665.979083451@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-ports

Jason Tishler <Jason(dot)Tishler(at)dothill(dot)com> writes:
> extern int sys_nerr;
> int main() {
> int x = sys_nerr;
> ; return 0; }

> The problem is gcc -O2 is being too smart, optimizing away the reference
> to sys_nerr.

Oh, that's nasty. Try a test program like so:

extern int sys_nerr;
int my_nerr;
int main() {
my_nerr = sys_nerr;
return 0; }

I don't think gcc will try to optimize away an assignment to a global
variable.

regards, tom lane

In response to

Responses

Browse pgsql-ports by date

  From Date Subject
Next Message Jason Tishler 2001-01-10 01:54:41 Re: Re: Cygwin PostgreSQL CVS Patch Question
Previous Message Tom Lane 2001-01-09 23:34:33 Re: Cygwin PostgreSQL CVS Patch Question