diff options
author | gdb-2.5.1 <gdb@fsf.org> | 1988-05-02 01:00:00 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-06-03 15:36:30 +0100 |
commit | 632ea0ccc5c4c3f9fc06881bfedfc4b075873941 (patch) | |
tree | 96f152433c41c5f51fe57307b287eb85865a43e2 /gdb/findvar.c | |
parent | 7b4ac7e1ed2c4616bce56d1760807798be87ac9e (diff) | |
download | gdb-632ea0ccc5c4c3f9fc06881bfedfc4b075873941.zip gdb-632ea0ccc5c4c3f9fc06881bfedfc4b075873941.tar.gz gdb-632ea0ccc5c4c3f9fc06881bfedfc4b075873941.tar.bz2 |
gdb-2.5.1
Diffstat (limited to 'gdb/findvar.c')
-rw-r--r-- | gdb/findvar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/findvar.c b/gdb/findvar.c index 1f92b16..465e00a 100644 --- a/gdb/findvar.c +++ b/gdb/findvar.c @@ -213,7 +213,7 @@ read_var_value (var, frame) register int len; if (SYMBOL_CLASS (var) == LOC_BLOCK) - type = lookup_function_type (type); + type = lookup_function_type (type, 0); v = allocate_value (type); VALUE_LVAL (v) = lval_memory; /* The most likely possibility. */ @@ -368,7 +368,7 @@ locate_var_value (var, frame) test.i = 1; if (test.c != 1 && len < REGISTER_RAW_SIZE (val)) /* Big-endian, and we want less than full size. */ - addr+ = REGISTER_RAW_SIZE (val) - len; + addr += REGISTER_RAW_SIZE (val) - len; break; } error ("Address requested for identifier \"%s\" which is in a register.", |