summaryrefslogtreecommitdiffstats
path: root/gdb/value.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-05-18 20:19:52 +0000
committerTom Tromey <tromey@redhat.com>2011-05-18 20:19:52 +0000
commitff355380ea9ae6f2baa6652f77f6c24f7dd38d9c (patch)
tree01b74f8aaf7830cdcbdba0c8150f79bacdd53616 /gdb/value.c
parented7319594583dffb825a9602afb95198207b9a0d (diff)
downloadppe42-binutils-ff355380ea9ae6f2baa6652f77f6c24f7dd38d9c.tar.gz
ppe42-binutils-ff355380ea9ae6f2baa6652f77f6c24f7dd38d9c.zip
* dwarf2read.c (dwarf2_add_field): Constify.
* value.c (value_static_field): Constify. * gdbtypes.h (struct main_type) <field.field_location.physname>: Now const. * ax-gdb.c (gen_static_field): Constify
Diffstat (limited to 'gdb/value.c')
-rw-r--r--gdb/value.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/value.c b/gdb/value.c
index 2a8f3fce26..ccd29c83b0 100644
--- a/gdb/value.c
+++ b/gdb/value.c
@@ -2388,7 +2388,7 @@ value_static_field (struct type *type, int fieldno)
break;
case FIELD_LOC_KIND_PHYSNAME:
{
- char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
+ const char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
/* TYPE_FIELD_NAME (type, fieldno); */
struct symbol *sym = lookup_symbol (phys_name, 0, VAR_DOMAIN, 0);
OpenPOWER on IntegriCloud