pgsql: Remove theoretically-unnecessary special case for icc.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Remove theoretically-unnecessary special case for icc.
Date: 2015-08-31 18:43:15
Message-ID: E1ZWU31-00068L-Lt@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove theoretically-unnecessary special case for icc.

Intel's icc is generally able to swallow asm blocks written for gcc.
We have a few places that don't seem to know that, though. Experiment
with removing the special case for icc in ia64_get_bsp(); if the buildfarm
likes this, I'll try more cleanup. This is a good test case because it
involves a "stop" notation that seems like it might not be very portable.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/2c713d6ea29c91cd2cbd92fa801a61e55ea2a3c4

Modified Files
--------------
src/backend/tcop/postgres.c | 16 +++++-----------
1 file changed, 5 insertions(+), 11 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2015-08-31 19:53:05 pgsql: Actually, it's not that hard to merge the Windows pqsignal code
Previous Message Tom Lane 2015-08-31 16:56:35 pgsql: Remove support for Unix systems without the POSIX signal APIs.