OSDN Git Service

* init.c (build_default_init): Remove unused variable.
[pf3gnuchains/gcc-fork.git] / gcc / vmsdbg.h
index 4d48d79..8b7fcae 100644 (file)
@@ -1,4 +1,4 @@
-/* Definitions for the data structures and codes used in VMS debugging.  */
+/* Definitions for the data structures and codes used in VMS debugging.
    Copyright (C) 2001 Free Software Foundation, Inc.
 
 This file is part of GCC.
@@ -46,17 +46,17 @@ typedef struct _DST_HEADER
     } dst__header_length;
   union
     {
-      ENUM_BITFIELD (_DST_DTYPE) dst_w_type : 16;
-      ENUM_BITFIELD (_DST_DTYPE) dst_x_type : 16;
+      ENUM_BITFIELD (_DST_TYPE) dst_w_type : 16;
+      ENUM_BITFIELD (_DST_TYPE) dst_x_type : 16;
     } dst__header_type;
 } DST_HEADER;
 #define DST_K_DST_HEADER_SIZE sizeof 4
 
-/* Language type codes. */
+/* Language type codes.  */
 typedef enum _DST_LANGUAGE {DST_K_FORTRAN = 1, DST_K_C = 7, DST_K_ADA = 9,
                            DST_K_UNKNOWN = 10, DST_K_CXX = 15} DST_LANGUAGE;
 
-/* Module header (a module is the result of a single compilation). */
+/* Module header (a module is the result of a single compilation).  */
 
 typedef struct _DST_MODULE_BEGIN
 {
@@ -93,7 +93,7 @@ typedef struct _DST_MODULE_END
 } DST_MODULE_END;
 #define DST_K_MODEND_SIZE sizeof 4
 
-/* Routine header. */
+/* Routine header.  */
 
 typedef struct _DST_ROUTINE_BEGIN
 {
@@ -122,7 +122,7 @@ typedef struct _DST_ROUTINE_END
 } DST_ROUTINE_END;
 #define DST_K_RTNEND_SIZE 9
 
-/* Block header. */
+/* Block header.  */
 
 typedef struct _DST_BLOCK_BEGIN
 {
@@ -133,7 +133,7 @@ typedef struct _DST_BLOCK_BEGIN
 } DST_BLOCK_BEGIN;
 #define DST_K_BLKBEG_SIZE 10
 
-/* Block trailer. */
+/* Block trailer.  */
 
 typedef struct _DST_BLOCK_END
 {
@@ -216,11 +216,13 @@ 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;
          unsigned char dst_b_src_df_rms_rfo;