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 44F81534.7000009@sigaev.ru
Whole thread Raw
In response to Re: GIN FailedAssertions on Itanium2 with Intel compiler  (Teodor Sigaev <teodor@sigaev.ru>)
Responses Re: GIN FailedAssertions on Itanium2 with Intel compiler  (Martijn van Oosterhout <kleptog@svana.org>)
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: teodor@sigaev.ru
  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