summaryrefslogtreecommitdiff
path: root/gdb/valops.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2011-07-14 15:00:15 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2011-07-14 15:00:15 +0000
commit71cdc39fa1270989b8ec7e38f010bc8ef8a6f265 (patch)
treeefaa2a30ee12e5106bec12cac54474d47f71200c /gdb/valops.c
parent4634fda269b6bc0edab4d35b6fa9afd06be98f78 (diff)
downloadgdb-71cdc39fa1270989b8ec7e38f010bc8ef8a6f265.tar.gz
gdb/
Code cleanup - constify struct lval_funcs. * dwarf2loc.c (pieced_value_funcs): Make it const. * infrun.c (siginfo_value_funcs): Likewise. * opencl-lang.c (opencl_value_funcs): Likewise. * valops.c (value_assign, value_ind): Make the funcs variable const. * value.c (struct value): Make location.computed.funcs target const. Rearrange the comments. (allocate_computed_value): Make the funcs parameter target const. (value_computed_funcs): Return the funcs target const. (value_free, value_copy, set_value_component_location): Make the funcs variable const. * value.h (allocate_computed_value): Make the funcs parameter target const. (value_computed_funcs): Return the funcs target const. * windows-tdep.c (tlb_value_funcs): Make it const.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r--gdb/valops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/valops.c b/gdb/valops.c
index ae1121201cf..d9cdc134174 100644
--- a/gdb/valops.c
+++ b/gdb/valops.c
@@ -1377,7 +1377,7 @@ value_assign (struct value *toval, struct value *fromval)
case lval_computed:
{
- struct lval_funcs *funcs = value_computed_funcs (toval);
+ const struct lval_funcs *funcs = value_computed_funcs (toval);
funcs->write (toval, fromval);
}
@@ -1740,7 +1740,7 @@ value_ind (struct value *arg1)
if (VALUE_LVAL (arg1) == lval_computed)
{
- struct lval_funcs *funcs = value_computed_funcs (arg1);
+ const struct lval_funcs *funcs = value_computed_funcs (arg1);
if (funcs->indirect)
{