diff options
author | Stu Grossman <grossman@cygnus> | 1996-10-15 23:44:13 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1996-10-15 23:44:13 +0000 |
commit | ac9548059b9ca25c3d990925a6b0602ae932637b (patch) | |
tree | 15619630645f4264f093b5351ee44cea36e3ae0c /gdb/buildsym.c | |
parent | 254ef34062b2becfb0b47daa362ef636853dfa53 (diff) | |
download | gdb-ac9548059b9ca25c3d990925a6b0602ae932637b.zip gdb-ac9548059b9ca25c3d990925a6b0602ae932637b.tar.gz gdb-ac9548059b9ca25c3d990925a6b0602ae932637b.tar.bz2 |
* buildsym.c (finish_block): Treat LOC_BASEREG_ARG and
LOC_LOCAL_ARG as arguments so that GDB will know about function
args declared this way. Mostly affects dwarf.
* dwarfread.c (decode_die_type): Change default type from int to
void. This allows GDB to recognize void functions.
* (new_symbol): If AT_PROTOTYPED is present, set a flag in the
type structure.
* findvar.c (extract_floating store_floating): Clean up comments
to reflect reality.
* gdbtypes.h: Add TYPE_FLAG_PROTOTYPED so that we can tell if a
function has a prototype. Currently, only dwarf supports this.
* utils.c (floatformat_from_doublest): Fix logic error with
converting from double to float. (It wasn't shifting mant_long if
it had a hidden bit.)
* v850-tdep.c: Add support for function calling. Fix some
problems with debugging code w/o debug symbols.
* config/v850/tm-v850.h: Ditto.
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r-- | gdb/buildsym.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c index e28c727..02d7dfc 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -268,6 +268,8 @@ finish_block (symbol, listhead, old_blocks, start, end, objfile) case LOC_REF_ARG: case LOC_REGPARM: case LOC_REGPARM_ADDR: + case LOC_BASEREG_ARG: + case LOC_LOCAL_ARG: nparams++; break; case LOC_UNDEF: @@ -279,9 +281,7 @@ finish_block (symbol, listhead, old_blocks, start, end, objfile) case LOC_LABEL: case LOC_BLOCK: case LOC_CONST_BYTES: - case LOC_LOCAL_ARG: case LOC_BASEREG: - case LOC_BASEREG_ARG: case LOC_UNRESOLVED: case LOC_OPTIMIZED_OUT: default: @@ -303,6 +303,8 @@ finish_block (symbol, listhead, old_blocks, start, end, objfile) case LOC_REF_ARG: case LOC_REGPARM: case LOC_REGPARM_ADDR: + case LOC_BASEREG_ARG: + case LOC_LOCAL_ARG: TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym); iparams++; break; @@ -315,9 +317,7 @@ finish_block (symbol, listhead, old_blocks, start, end, objfile) case LOC_LABEL: case LOC_BLOCK: case LOC_CONST_BYTES: - case LOC_LOCAL_ARG: case LOC_BASEREG: - case LOC_BASEREG_ARG: case LOC_UNRESOLVED: case LOC_OPTIMIZED_OUT: default: |