* gdbtypes.c (init_type): Make 'name' const.
authorTom Tromey <tromey@redhat.com>
Mon, 21 Jan 2013 18:07:03 +0000 (18:07 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 21 Jan 2013 18:07:03 +0000 (18:07 +0000)
* gdbtypes.h (init_type): Update.

gdb/ChangeLog
gdb/gdbtypes.c
gdb/gdbtypes.h

index 632305668975290f1c847a7c513ced7bcfd96cac..6d51c7dc6120e8518359d43ac638809b56b8f45d 100644 (file)
@@ -1,3 +1,8 @@
+2013-01-21  Tom Tromey  <tromey@redhat.com>
+
+       * gdbtypes.c (init_type): Make 'name' const.
+       * gdbtypes.h (init_type): Update.
+
 2013-01-21  Tom Tromey  <tromey@redhat.com>
 
        * buildsym.c (patch_subfile_names): Use set_last_source_file.
index 588524195a508ed9415903c9581cde2fddeaf7cf..6a4b152bc228368932943f06b921d02b03db1f4a 100644 (file)
@@ -1957,7 +1957,7 @@ allocate_gnat_aux_type (struct type *type)
 
 struct type *
 init_type (enum type_code code, int length, int flags,
-          char *name, struct objfile *objfile)
+          const char *name, struct objfile *objfile)
 {
   struct type *type;
 
index 8b340a32bca002d1b578c5d4e9aed083896b26c2..0ca7a87dae714572cf7748d3b3c81af7e7715041 100644 (file)
@@ -1432,7 +1432,7 @@ extern struct type *alloc_type_copy (const struct type *);
 extern struct gdbarch *get_type_arch (const struct type *);
 
 /* Helper function to construct objfile-owned types.  */
-extern struct type *init_type (enum type_code, int, int, char *,
+extern struct type *init_type (enum type_code, int, int, const char *,
                               struct objfile *);
 
 /* Helper functions to construct architecture-owned types.  */