mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
Make extern declaration of dwarf_always_disassemble correct
This was an oversight in 491144b5e21bbfd41969c175aebb663976f59058; dwarf2loc.c has an extern definition for dwarf_always_disassemble that I missed. This patch updates it from int to bool to match the definition in dwarf2read.c. gdb/ChangeLog: 2019-09-18 Christian Biesinger <cbiesinger@google.com> * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble to bool to match definition in dwarf2read.c.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2019-09-18 Christian Biesinger <cbiesinger@google.com>
|
||||||
|
|
||||||
|
* dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
|
||||||
|
to bool to match definition in dwarf2read.c.
|
||||||
|
|
||||||
2019-09-17 Christian Biesinger <cbiesinger@google.com>
|
2019-09-17 Christian Biesinger <cbiesinger@google.com>
|
||||||
|
|
||||||
* ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
|
* ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
#include "gdbsupport/underlying.h"
|
#include "gdbsupport/underlying.h"
|
||||||
#include "gdbsupport/byte-vector.h"
|
#include "gdbsupport/byte-vector.h"
|
||||||
|
|
||||||
extern int dwarf_always_disassemble;
|
extern bool dwarf_always_disassemble;
|
||||||
|
|
||||||
static struct value *dwarf2_evaluate_loc_desc_full (struct type *type,
|
static struct value *dwarf2_evaluate_loc_desc_full (struct type *type,
|
||||||
struct frame_info *frame,
|
struct frame_info *frame,
|
||||||
|
Reference in New Issue
Block a user