This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

__int64




Hi,

I rename "__int64" with "long long", for typedef.
Lastly, I discovered that I have to rename 0x123456789 to x123456789ll.

However, I cannot get around an issue with "integer constant out of range" for
__int64:

void aFunction(word64 *str, word64 state[3])
{
  aFunction_macro(((word64*)str), ((word64*)state));    <--------- "integer
constant out of range"
}

where word64 is "typedef unsigned long long word64".
abd where aFunction_macro define in the same file as:

#define aFunction_macro(str, state) \
{ \
...
}

Can anyone help me?

Thanks

Tim

__________________________________________________________________________
The information contained in this email communication may be confidential. You
should only read, disclose, re-transmit, copy, distribute, act in reliance on or
commercialise the information if you are authorised to do so. If you are not the
intended recipient of this email communication, please notify us immediately by
email to NABpost@nag.national.com.au or reply by email direct to the sender
and then destroy any electronic or paper copy of this message.  Any views
expressed in this email communication are those of the individual sender, except
where the sender specifically states them to be the views of a member of the
National Australia Bank Group of companies.  The National Australia Bank Group
of companies does not represent, warrant or guarantee that the integrity of this
communication has been maintained nor that the communication is free of errors,
virus or interference.



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]