OSDN Git Service

* config/xtensa/xtensa.md: Remove unused type attributes.
[pf3gnuchains/gcc-fork.git] / gcc / hwint.h
index dc9b71d..ea8be55 100644 (file)
@@ -4,7 +4,7 @@
    This file is part of GCC.
 
    Provide definitions for macros which depend on HOST_BITS_PER_INT
-   and HOST_BITS_PER_LONG. */
+   and HOST_BITS_PER_LONG.  */
 
 #ifndef GCC_HWINT_H
 #define GCC_HWINT_H
 #ifdef HAVE_LONG_LONG
 # define HOST_BITS_PER_LONGLONG (CHAR_BIT * SIZEOF_LONG_LONG)
 #else
+#ifdef HAVE__INT64
+# define HOST_BITS_PER_LONGLONG (CHAR_BIT * SIZEOF___INT64)
+#else
 /* If we're here and we're GCC, assume this is stage 2+ of a bootstrap
    and 'long long' has the width of the *target*'s long long.  */
 # if GCC_VERSION > 3000
 #  define HOST_BITS_PER_LONGLONG LONG_LONG_TYPE_SIZE
 # endif /* gcc */
+#endif
 #endif /* no long long */
 
 /* Find the largest host integer type and set its size and type.  */