diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-06-29 11:57:14 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-06-29 11:57:14 -0400 |
commit | dd4f75f2b6f0be9cb45204aacb3e22462d3c7cd5 (patch) | |
tree | 3db8004cfbf0b08cba35fe3b2498f58f46c9b4b0 /gdb/frame.h | |
parent | c2ce831330e10dab4703094491f80b6b9a5c2289 (diff) | |
download | gdb-dd4f75f2b6f0be9cb45204aacb3e22462d3c7cd5.zip gdb-dd4f75f2b6f0be9cb45204aacb3e22462d3c7cd5.tar.gz gdb-dd4f75f2b6f0be9cb45204aacb3e22462d3c7cd5.tar.bz2 |
gdb: make frame_debug a boolean
gdb/ChangeLog:
* frame.h (frame_debug): Change type to bool.
* frame.c (frame_debug): Change type to bool.
(_initialize_frame): Adjust.
Change-Id: I27b5359a25ad53ac42618b5708a025c348a1eeda
Diffstat (limited to 'gdb/frame.h')
-rw-r--r-- | gdb/frame.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/frame.h b/gdb/frame.h index da52522..33ca5ab 100644 --- a/gdb/frame.h +++ b/gdb/frame.h @@ -214,7 +214,7 @@ extern const struct frame_id outer_frame_id; /* Flag to control debugging. */ -extern unsigned int frame_debug; +extern bool frame_debug; /* Construct a frame ID. The first parameter is the frame's constant stack address (typically the outer-bound), and the second the |