aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Chastain <mec@google.com>2002-02-13 18:49:30 +0000
committerMichael Chastain <mec@google.com>2002-02-13 18:49:30 +0000
commit6c6ea35e3430aed6ef6af1225a0924e95be97d30 (patch)
tree92d8d9e9e53979b783d2d262afb579043589d067
parent76f57f3aaa745f1dbb24496feb91ee18be5cfe17 (diff)
downloadgdb-6c6ea35e3430aed6ef6af1225a0924e95be97d30.zip
gdb-6c6ea35e3430aed6ef6af1225a0924e95be97d30.tar.gz
gdb-6c6ea35e3430aed6ef6af1225a0924e95be97d30.tar.bz2
2002-02-13 Michael Chastain <mec@shout.net>
* defs.h: Kill CONST_PTR. * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const". * c-lang.c (c_builtin_types): Likewise. * ch-lang.c (ch_builtin_types): Likewise. * f-lang.c (f_builtin_types): Likewise. * language.c (unknown_builtin_types): Likewise. * m2-lang.c (m2_builtin_types): Likewise. * p-lang.c (pascal_builtin_types): Likewise. * scm-lang.c (c_builtin_types): Likewise.
-rw-r--r--gdb/ChangeLog12
-rw-r--r--gdb/c-lang.c4
-rw-r--r--gdb/c-lang.h4
-rw-r--r--gdb/ch-lang.c4
-rw-r--r--gdb/defs.h2
-rw-r--r--gdb/f-lang.c4
-rw-r--r--gdb/language.c4
-rw-r--r--gdb/m2-lang.c4
-rw-r--r--gdb/p-lang.c4
-rw-r--r--gdb/scm-lang.c2
10 files changed, 27 insertions, 17 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 80aad0d..6d826db 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,15 @@
+2002-02-13 Michael Chastain <mec@shout.net>
+
+ * defs.h: Kill CONST_PTR.
+ * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
+ * c-lang.c (c_builtin_types): Likewise.
+ * ch-lang.c (ch_builtin_types): Likewise.
+ * f-lang.c (f_builtin_types): Likewise.
+ * language.c (unknown_builtin_types): Likewise.
+ * m2-lang.c (m2_builtin_types): Likewise.
+ * p-lang.c (pascal_builtin_types): Likewise.
+ * scm-lang.c (c_builtin_types): Likewise.
+
2002-02-13 Keith Seitz <keiths@redhat.com>
* arm-tdep.h (arm_get_next_pc): Add declaration.
diff --git a/gdb/c-lang.c b/gdb/c-lang.c
index 9e92d7e..fa977cd 100644
--- a/gdb/c-lang.c
+++ b/gdb/c-lang.c
@@ -1,5 +1,5 @@
/* C language support routines for GDB, the GNU debugger.
- Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000
+ Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2002
Free Software Foundation, Inc.
This file is part of GDB.
@@ -385,7 +385,7 @@ const struct op_print c_op_print_tab[] =
{NULL, 0, 0, 0}
};
-struct type **CONST_PTR (c_builtin_types[]) =
+struct type **const (c_builtin_types[]) =
{
&builtin_type_int,
&builtin_type_long,
diff --git a/gdb/c-lang.h b/gdb/c-lang.h
index 8d5c002..b1925e1 100644
--- a/gdb/c-lang.h
+++ b/gdb/c-lang.h
@@ -1,5 +1,5 @@
/* C language support definitions for GDB, the GNU debugger.
- Copyright 1992, 1994, 1995, 1996, 1997, 1998, 2000
+ Copyright 1992, 1994, 1995, 1996, 1997, 1998, 2000, 2002
Free Software Foundation, Inc.
This file is part of GDB.
@@ -51,7 +51,7 @@ extern void c_printstr (struct ui_file * stream, char *string,
extern struct type *c_create_fundamental_type (struct objfile *, int);
-extern struct type **CONST_PTR (c_builtin_types[]);
+extern struct type **const (c_builtin_types[]);
/* These are in c-typeprint.c: */
diff --git a/gdb/ch-lang.c b/gdb/ch-lang.c
index f65e635..b46dce0 100644
--- a/gdb/ch-lang.c
+++ b/gdb/ch-lang.c
@@ -1,5 +1,5 @@
/* Chill language support routines for GDB, the GNU debugger.
- Copyright 1992, 1993, 1994, 1995, 1996, 2000, 2001
+ Copyright 1992, 1993, 1994, 1995, 1996, 2000, 2001, 2002
Free Software Foundation, Inc.
This file is part of GDB.
@@ -322,7 +322,7 @@ struct type *builtin_type_chill_long;
struct type *builtin_type_chill_ulong;
struct type *builtin_type_chill_real;
-struct type **CONST_PTR (chill_builtin_types[]) =
+struct type **const (chill_builtin_types[]) =
{
&builtin_type_chill_bool,
&builtin_type_chill_char,
diff --git a/gdb/defs.h b/gdb/defs.h
index 5962b14..cf7b0ce 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -987,8 +987,6 @@ typedef struct ptid ptid_t;
#include "fopen-same.h"
#endif
-#define CONST_PTR const
-
/* Defaults for system-wide constants (if not defined by xm.h, we fake it).
FIXME: Assumes 2's complement arithmetic */
diff --git a/gdb/f-lang.c b/gdb/f-lang.c
index bee4063..1727bda 100644
--- a/gdb/f-lang.c
+++ b/gdb/f-lang.c
@@ -1,5 +1,5 @@
/* Fortran language support routines for GDB, the GNU debugger.
- Copyright 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
+ Copyright 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
Free Software Foundation, Inc.
Contributed by Motorola. Adapted from the C parser by Farooq Butt
(fmbutt@engage.sps.mot.com).
@@ -429,7 +429,7 @@ static const struct op_print f_op_print_tab[] =
{NULL, 0, 0, 0}
};
-struct type **CONST_PTR (f_builtin_types[]) =
+struct type **const (f_builtin_types[]) =
{
&builtin_type_f_character,
&builtin_type_f_logical,
diff --git a/gdb/language.c b/gdb/language.c
index a9077a9..4c4036b 100644
--- a/gdb/language.c
+++ b/gdb/language.c
@@ -1,5 +1,5 @@
/* Multiple source language support for GDB.
- Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
+ Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
Free Software Foundation, Inc.
Contributed by the Department of Computer Science at the State University
of New York at Buffalo.
@@ -1444,7 +1444,7 @@ unk_lang_value_print (struct value *val, struct ui_file *stream, int format,
error ("internal error - unimplemented function unk_lang_value_print called.");
}
-static struct type **CONST_PTR (unknown_builtin_types[]) =
+static struct type **const (unknown_builtin_types[]) =
{
0
};
diff --git a/gdb/m2-lang.c b/gdb/m2-lang.c
index 15e3600..116d850 100644
--- a/gdb/m2-lang.c
+++ b/gdb/m2-lang.c
@@ -1,5 +1,5 @@
/* Modula 2 language support routines for GDB, the GNU debugger.
- Copyright 1992, 1993, 1994, 1995, 1996, 1998, 2000
+ Copyright 1992, 1993, 1994, 1995, 1996, 1998, 2000, 2002
Free Software Foundation, Inc.
This file is part of GDB.
@@ -398,7 +398,7 @@ struct type *builtin_type_m2_card;
struct type *builtin_type_m2_real;
struct type *builtin_type_m2_bool;
-struct type **CONST_PTR (m2_builtin_types[]) =
+struct type **const (m2_builtin_types[]) =
{
&builtin_type_m2_char,
&builtin_type_m2_int,
diff --git a/gdb/p-lang.c b/gdb/p-lang.c
index b5ad580..62c8a64 100644
--- a/gdb/p-lang.c
+++ b/gdb/p-lang.c
@@ -1,5 +1,5 @@
/* Pascal language support routines for GDB, the GNU debugger.
- Copyright 2000 Free Software Foundation, Inc.
+ Copyright 2000, 2002 Free Software Foundation, Inc.
This file is part of GDB.
@@ -407,7 +407,7 @@ const struct op_print pascal_op_print_tab[] =
{NULL, 0, 0, 0}
};
-struct type **const /* CONST_PTR v 4.17 */ (pascal_builtin_types[]) =
+struct type **const (pascal_builtin_types[]) =
{
&builtin_type_int,
&builtin_type_long,
diff --git a/gdb/scm-lang.c b/gdb/scm-lang.c
index 4f1295c..30ca763 100644
--- a/gdb/scm-lang.c
+++ b/gdb/scm-lang.c
@@ -41,7 +41,7 @@ static void scm_printstr (struct ui_file * stream, char *string,
unsigned int length, int width,
int force_ellipses);
-extern struct type **CONST_PTR (c_builtin_types[]);
+extern struct type **const (c_builtin_types[]);
struct type *builtin_type_scm;