This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [lno] New array prefetching pass
Hello,
> On Thu, Jul 01, 2004 at 06:23:49AM +0200, Zdenek Dvorak wrote:
> > + /* Checks that X is integer constant that fits in unsigned HOST_WIDE_INT.
> > + Similar to host_integerp (x, 1), but does not fail if the value is
> > + negative. */
>
> Huh? So is it unsigned or isn't it?
it does not matter; it should be true for values that can be precisely
expressed in the width of the HOST_WIDE_INT type, regardless of whether
they are unsigned or not (of course the function is wrong and does not
do exactly what I want :-; I will fix it soon).
Zdenek