RFC: More ia64 intrinsics

Mark Mitchell mark@codesourcery.com
Fri Jun 20 22:20:00 GMT 2003


> 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



More information about the Gcc mailing list