hwint.h (HOST_BITS_PER_LONGLONG): Deal with __int64 type.
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>
Mon, 10 Dec 2001 01:56:37 +0000 (01:56 +0000)
committerRichard Kenner <kenner@gcc.gnu.org>
Mon, 10 Dec 2001 01:56:37 +0000 (20:56 -0500)
* hwint.h (HOST_BITS_PER_LONGLONG): Deal with __int64 type.
* vmsdbg.h (DST_SRC_COMMAND): Test for type of long long or __int64,
not GNUC.

From-SVN: r47828

gcc/ChangeLog
gcc/hwint.h
gcc/vmsdbg.h

index a0ca3f34a1ce0fa49bed565bf3b3195e75edf4ec..1a5e442ef5eb084b7a900e031ee25cf500ad25b0 100644 (file)
@@ -1,3 +1,9 @@
+Sun Dec  9 20:25:17 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
+
+       * hwint.h (HOST_BITS_PER_LONGLONG): Deal with __int64 type.
+       * vmsdbg.h (DST_SRC_COMMAND): Test for type of long long or __int64,
+       not GNUC.
+
 Sun Dec  9 20:19:32 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
                          Douglas B. Rupp  <rupp@gnat.com>
 
index b4f3d8a53324e02c26ba3fab93096b87e2cb1088..ea8be55fcdbda368e9b847baa03f3d78be28148b 100644 (file)
 #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.  */
index b710494944f0cabc503a90154d384a25a0380125..40d669272a910a66de2e2ae056e4d7d06f8ee33a 100644 (file)
@@ -216,10 +216,12 @@ typedef struct _DST_SRC_COMMAND
          unsigned char dst_b_src_df_length;
          unsigned char dst_b_src_df_flags;
          unsigned short int dst_w_src_df_fileid;
-#ifdef __GNUC__
+#ifdef HAVE_LONG_LONG
          long long dst_q_src_df_rms_cdt;
 #else
+#ifdef HAVE___INT64
          __int64 dst_q_src_df_rms_cdt;
+#endif
 #endif
          unsigned int dst_l_src_df_rms_ebk;
          unsigned short int dst_w_src_df_rms_ffb;