diff options
author | Pedro Alves <palves@redhat.com> | 2016-11-08 12:32:05 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2016-11-08 12:32:05 +0000 |
commit | 3b0d929dd61fcd55b4ef320a2033c731443b394f (patch) | |
tree | 64117ec5981bd4d772529bd3804e333da8a9b761 /bfd/dwarf2.c | |
parent | 089e3718bd8de11fc4d6bbc8d32701033d467960 (diff) | |
download | gdb-3b0d929dd61fcd55b4ef320a2033c731443b394f.zip gdb-3b0d929dd61fcd55b4ef320a2033c731443b394f.tar.gz gdb-3b0d929dd61fcd55b4ef320a2033c731443b394f.tar.bz2 |
Fix bfd/dwarf2.c build breakage
Fix build breakage introduced by commit 089e3718bd8d ("Greatly improve
the speed if looking up DWARF line number information."):
- bfd_boolean is_linkage;
- const char *name;
- struct arange arange;
+ int line;
+ int tag;
+ bfd boolean is_linkage;
bfd/ChangeLog:
2016-11-08 Pedro Alves <palves@redhat.com>
* dwarf2.c (struct funcinfo) <is_linkage>: Type is bfd_boolean,
not "bfd boolean".
Diffstat (limited to 'bfd/dwarf2.c')
-rw-r--r-- | bfd/dwarf2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/dwarf2.c b/bfd/dwarf2.c index 7215e7a..287ba0f 100644 --- a/bfd/dwarf2.c +++ b/bfd/dwarf2.c @@ -1280,7 +1280,7 @@ struct funcinfo /* Source location line number. */ int line; int tag; - bfd boolean is_linkage; + bfd_boolean is_linkage; const char * name; struct arange arange; /* Where the symbol is defined. */ |