diff options
author | Daniel Jacobowitz <dan@debian.org> | 2002-01-20 19:12:23 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@debian.org> | 2002-01-20 19:12:23 +0000 |
commit | 2bdbd424bf807072d1e0ceda73b3dea8935ea94d (patch) | |
tree | df88c1401f0441cade6af408c1628a3775a9674c /gdb/buildsym.c | |
parent | 3d891f56c452ff2c5e704e83280decde41c6d560 (diff) | |
download | gdb-2bdbd424bf807072d1e0ceda73b3dea8935ea94d.tar.gz |
2002-01-15 Daniel Jacobowitz <drow@mvista.com>
* gdbtypes.h (struct type): Fix whitespace. Remove obsolete
comment. Add ``artificial'' to ``union field_location''.
* dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
* buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
* mdebugread.c (parse_symbol): Likewise.
* stabsread.c (define_symbol): Likewise.
* hp-symtab-read.c (hpread_function_type): Likewise, instead of
initializing TYPE_FIELD_BITPOS to n (obsolete).
(hpread_doc_function_type): Likewise.
* hpread.c (hpread_function_type): Likewise.
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r-- | gdb/buildsym.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c index a2c92f2a6fb..abcf22a7cc4 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -322,6 +322,7 @@ finish_block (struct symbol *symbol, struct pending **listhead, case LOC_BASEREG_ARG: case LOC_LOCAL_ARG: TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym); + TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0; iparams++; break; case LOC_UNDEF: |