Re: [HACKERS] Re: Call for port testing on fmgr changes --Results!

Thomas Lockhart <lockhart@alumni.caltech.edu>

From: Thomas Lockhart <lockhart@alumni.caltech.edu>
To: Peter Eisentraut <peter_e@gmx.net>
Cc: Tom Lane <tgl@sss.pgh.pa.us>, Ryan Kirkpatrick <pgsql@rkirkpat.net>, pgsql-ports@postgresql.org, pgsql-hackers@postgresql.org
Date: 2000-06-26T13:17:37Z
Lists: pgsql-hackers
> I noticed the other day that the geometry output differs with the
> compiler optimization level. That can't be good.

It depends where the differences are. If they are just in the last few
decimal places, then it should be OK (though annoying for regression
test support).

With higher optimizations, they may be doing more inlining and using
different code sequences for, for example, the transcendental functions.

                     - Thomas