summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2001-12-09 15:57:48 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2001-12-09 15:57:48 +0000
commitef624d6678e9009316f62c21a0d4df195d0b45f1 (patch)
tree23a596bf064f190cfaf2139e9ddc1e5d4942340a /gcc
parent04194a666c5a24ffe6ce1e608ceb34796780b57e (diff)
downloadgcc-ef624d6678e9009316f62c21a0d4df195d0b45f1.tar.gz
* vmsdbg.h: Delete spurious close-comment.
(DST_HEADER): Fix typo in ENUM_BITFIELD parameter. * vmsdbgout.c (write_modbeg): Define return type. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47811 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/vmsdbg.h6
-rw-r--r--gcc/vmsdbgout.c1
3 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 558ca3c8294..2dd9176d4a7 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
diff --git a/gcc/vmsdbg.h b/gcc/vmsdbg.h
index 4d48d7989ca..b710494944f 100644
--- a/gcc/vmsdbg.h
+++ b/gcc/vmsdbg.h
@@ -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
diff --git a/gcc/vmsdbgout.c b/gcc/vmsdbgout.c
index 257d5066f04..c558f44c9a5 100644
--- a/gcc/vmsdbgout.c
+++ b/gcc/vmsdbgout.c
@@ -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;
{