Re: Re: RELEASE STOPPER? nonportable int64 constants in pg_crc.c

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: Re: RELEASE STOPPER? nonportable int64 constants in pg_crc.c
Дата
Msg-id 200103220347.WAA03533@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: RELEASE STOPPER? nonportable int64 constants in pg_crc.c  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Re: RELEASE STOPPER? nonportable int64 constants in pg_crc.c  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-hackers
> Zeugswetter Andreas SB  <ZeugswetterA@wien.spardat.at> writes:
> > Recent changes in pg_crc.c (64 bit CRC) introduced non portable constants of the form:
> 
> >  -c -o pg_crc.o pg_crc.c
> >       287 |         0x0000000000000000, 0x42F0E1EBA9EA3693,
> >             ............................a..................
> > a - 1506-207 (W) Integer constant 0x42F0E1EBA9EA3693 out of range.
> 
> Please observe that this is a warning, not an error.  Your proposed
> fix is considerably worse than the disease, because it will break on
> compilers that do not recognize "LL" constants, to say nothing of
> machines where L is correct and LL is some yet wider datatype.

I am seeing the same warnings with gcc 2.7.2.1 -Wall on BSDi i386:

pg_crc.c:353: warning: integer constant out of range
pg_crc.c:353: warning: integer constant out of range
pg_crc.c:354: warning: integer constant out of range
pg_crc.c:354: warning: integer constant out of range
pg_crc.c:355: warning: integer constant out of range
pg_crc.c:355: warning: integer constant out of range
pg_crc.c:356: warning: integer constant out of range

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
853-3000+  If your life is a hard drive,     |  830 Blythe Avenue +  Christ can be your backup.        |  Drexel Hill,
Pennsylvania19026
 


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BufferSync() & FlushRelationBuffers() conflict
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Re: RELEASE STOPPER? nonportable int64 constants in pg_crc.c