This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Does "complex xxx" work?
On Sat, Jun 21, 2003 at 10:22:33PM +0100, Joseph S. Myers wrote:
> On Sat, 21 Jun 2003, H. J. Lu wrote:
>
> > Can I add __int64 as a keyword to ia64?
>
> There isn't a mechanism for target-specific keywords.
>
> > I can't make it to work with gcc unless I use
> >
> > #ifdef __LP64__
> > #define __int64 long
> > #else
> > #define __int64 long long
> > #endif
> >
> > Will it be acceptable in ia64intrin.h?
>
> Whether that, or defining macros unconditionally for ia64 rather than in
> the header, is acceptable is up to the ia64 maintainers.
I will deine it in ia64intrin.h for my ia64 intrinsic work and
we can decide if we want to define it unconditionally for ia64
later.
H.J.