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]
Other format: [Raw text]

Re: RFC: More ia64 intrinsics


> Ok, I will do that. There is another issue. Intel intrinsics uses
> __int64 for 64bit integer type. It is used in
> 
> unsigned __int64
> const __int64
> 
> I can't use typedef. I can do
> 
> #define __int64 long long
> 
> But I don't know if it is a good idea. __int64 is a builtin type in
> Intel compiler so that it isn't a problem. Any suggestions?

Use <stdint.h> and grab int64_t?

Or make __int64 a builtin type, as with the Intel compiler.

For builtins, you can usually use DImode internally.

-- 
Mark Mitchell <mark@codesourcery.com>
CodeSourcery, LLC


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