bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: verify fails on ia64-hpux11.23 in libunistring-0.9.3


From: Paul Eggert
Subject: Re: verify fails on ia64-hpux11.23 in libunistring-0.9.3
Date: Sun, 01 May 2011 09:15:01 -0700
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.14) Gecko/20110223 Thunderbird/3.1.8

So, the problem is that TYPE_MAXIMUM (uint_fast8_t)
expands to 2**32 - 1, whereas it should expand to
2**64 - 1.  Can you use cc -E to find what expression
TYPE_MAXIMUM (uint_fast8_t) expands to, and
investigate why that expansion evaluates to the
wrong value?  My impression is that TYPE_MAXIMUM (uint_fast8_t)
should expand to (unsigned long) -1, which should be
2**64 - 1 on ia64-hpux11.23, but evidently that is not happening
correctly.  Perhaps it's a compiler bug?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]