diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2019-12-11 11:30:15 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2019-12-11 11:30:15 -0500 |
commit | 27f7b2f64062ac9e52afc60509263c2702a9ebd0 (patch) | |
tree | f0b548ada122a865747e41be1e289e4428e048b8 | |
parent | 24f19ccb8907b8d2bafb905a5db1a3537084d522 (diff) | |
download | gdb-gdb-9-branchpoint.zip gdb-gdb-9-branchpoint.tar.gz gdb-gdb-9-branchpoint.tar.bz2 |
Fix typo, get_Frame_id -> get_frame_idgdb-9-branchpoint
gdb/doc/ChangeLog:
* gdb.texinfo (Writing JIT Debug Info Readers): Fix typo.
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 6db33e1..7fe47f2 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2019-12-11 Simon Marchi <simon.marchi@efficios.com> + + * gdb.texinfo (Writing JIT Debug Info Readers): Fix typo. + 2019-12-11 Philippe Waroquiers <philippe.waroquiers@skynet.be> * gdb.texinfo (Command Options): Use -p and -pretty in the example, diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index a4e2c4f..4d25f75 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -36653,7 +36653,7 @@ extern struct gdb_reader_funcs *gdb_init_reader (void); functions. These functions are executed to read the debug info generated by the JIT compiler (@code{read}), to unwind stack frames (@code{unwind}) and to create canonical frame IDs -(@code{get_Frame_id}). It also has a callback that is called when the +(@code{get_frame_id}). It also has a callback that is called when the reader is being unloaded (@code{destroy}). The struct looks like this @smallexample |