Thanks to visit codestin.com
Credit goes to postgrespro.com

Re: GIN FailedAssertions on Itanium2 with Intel compiler - Mailing list pgsql-hackers

From Teodor Sigaev
Subject Re: GIN FailedAssertions on Itanium2 with Intel compiler
Date
Msg-id [email protected]
Whole thread Raw
In response to Re: GIN FailedAssertions on Itanium2 with Intel compiler  (Teodor Sigaev <[email protected]>)
Responses Re: GIN FailedAssertions on Itanium2 with Intel compiler
List pgsql-hackers
> % icc -O2 -o 1 1.c && ./1
> CALL cmp
> SET SI = 1
> BUG: SI==0
> % icc -O1 -o 1 1.c && ./1
> CALL cmp
> SET SI = 1
> OK

BTW, this example works correct with -nolib-inline 

(http://www.intel.com/software/products/compilers/clin/docs/main_cls/mergedprojects/copts_cls/ccpp_options/option_nolib_inline.htm):
% icc -O2 -nolib_inline  -o 1 1.c&& ./1
CALL cmp
SET SI = 1
OK

PS Have anybody any thoughts about workaround?
-- 
Teodor Sigaev                                   E-mail: [email protected]
  WWW: http://www.sigaev.ru/
 


pgsql-hackers by date:

Previous
From: Michael Glaesemann
Date:
Subject: Re: [PATCHES] Interval aggregate regression failure
Next
From: Martijn van Oosterhout
Date:
Subject: Re: GIN FailedAssertions on Itanium2 with Intel compiler