diff options
author | Tom Tromey <tromey@redhat.com> | 2013-01-29 18:54:24 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-01-29 18:54:24 +0000 |
commit | a543d2a92e50ea5689748f74eb23efc02e82b008 (patch) | |
tree | 484d4354775bfd3ad65097fd5d80abbc1e831404 /gdb/value.c | |
parent | 427d0db66d1e3d142faa5080a1cc572ff17bbbb7 (diff) | |
download | gdb-a543d2a92e50ea5689748f74eb23efc02e82b008.zip gdb-a543d2a92e50ea5689748f74eb23efc02e82b008.tar.gz gdb-a543d2a92e50ea5689748f74eb23efc02e82b008.tar.bz2 |
* value.c (deprecated_set_value_modifiable): Remove.
* value.h (deprecated_set_value_modifiable): Remove.
Diffstat (limited to 'gdb/value.c')
-rw-r--r-- | gdb/value.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/value.c b/gdb/value.c index ec4b090..dbf1c37 100644 --- a/gdb/value.c +++ b/gdb/value.c @@ -1198,11 +1198,6 @@ deprecated_value_modifiable (struct value *value) { return value->modifiable; } -void -deprecated_set_value_modifiable (struct value *value, int modifiable) -{ - value->modifiable = modifiable; -} /* Return a mark in the value chain. All values allocated after the mark is obtained (except for those released) are subject to being freed |