Re: ANSI-strict pointer aliasing rules

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: ANSI-strict pointer aliasing rules
Дата
Msg-id 21138.1146085111@sss.pgh.pa.us
обсуждение исходный текст
Ответ на ANSI-strict pointer aliasing rules  (Taral <taralx@gmail.com>)
Ответы Re: ANSI-strict pointer aliasing rules  (Martijn van Oosterhout <kleptog@svana.org>)
Список pgsql-hackers
Taral <taralx@gmail.com> writes:
> I ran afoul of these rules the other day when compiling pgsql 8.1 on
> AIX. The configure scripts are set up to look for "xlc" instead of
> "cc", and that command invokes cc with "-qalias=ansi", the ANSI-strict
> pointer aliasing mode.

We've looked at this before.  There's no way we are buying into the
strict aliasing rules: it's not so much the code we know will break,
as the fear of what we don't know about.  gcc, at least, is utterly
useless about warning about constructs that might change behavior
under strict aliasing ... but without fairly reliable warnings of
such problems, we have little hope of getting all the bugs out.

You'll notice that configure already goes out of its way to force
traditional aliasing for gcc, and I'd recommend doing the same for
AIX's compiler.
        regards, tom lane


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Taral
Дата:
Сообщение: ANSI-strict pointer aliasing rules
Следующее
От: Martijn van Oosterhout
Дата:
Сообщение: Re: ANSI-strict pointer aliasing rules