vmsdbg.h: Delete spurious close-comment.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sun, 9 Dec 2001 15:57:48 +0000 (15:57 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Sun, 9 Dec 2001 15:57:48 +0000 (15:57 +0000)
* vmsdbg.h: Delete spurious close-comment.
(DST_HEADER): Fix typo in ENUM_BITFIELD parameter.
* vmsdbgout.c (write_modbeg): Define return type.

From-SVN: r47811

gcc/ChangeLog
gcc/vmsdbg.h
gcc/vmsdbgout.c

index 558ca3c8294ec595516700b3253cc8bb41b14fa5..2dd9176d4a7b808f41c30293a3696a1d759ea196 100644 (file)
@@ -1,5 +1,9 @@
 2001-12-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
+       * vmsdbg.h: Delete spurious close-comment.
+       (DST_HEADER): Fix typo in ENUM_BITFIELD parameter.
+       * vmsdbgout.c (write_modbeg): Define return type.
+
        * m68k/3b1.h (ASM_OUTPUT_ALIGN): Wrap in do-while(0).
        * m68k/amix.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
        * m68k/atari.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
index 4d48d7989cab2fc4f895133ac008e156d8a8216b..b710494944f0cabc503a90154d384a25a0380125 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,8 +46,8 @@ 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
index 257d5066f04f2f4be4504ed2956e40e6a8d55ae3..c558f44c9a5cc4fdb665d669948fc5fe73663cd3 100644 (file)
@@ -703,6 +703,7 @@ write_debug_string (string, comment, dosizeonly)
 /* Output a module begin header and return the header size.  Just return the
    size if DOSIZEONLY is non-zero. */
 
+static int
 write_modbeg (dosizeonly)
      int dosizeonly;
 {