diff options
author | Nick Roberts <nickrob@snap.net.nz> | 2006-07-13 07:43:44 +0000 |
---|---|---|
committer | Nick Roberts <nickrob@snap.net.nz> | 2006-07-13 07:43:44 +0000 |
commit | 24ca47234f4e886d1dff4607150549c66ead0e87 (patch) | |
tree | ec56d8a56ca17fc743d3603ad2013cb8e9dee6ca /gdb/annotate.c | |
parent | 79ee37bca8f7d85929599af0cf56992c43e9811d (diff) | |
download | gdb-24ca47234f4e886d1dff4607150549c66ead0e87.zip gdb-24ca47234f4e886d1dff4607150549c66ead0e87.tar.gz gdb-24ca47234f4e886d1dff4607150549c66ead0e87.tar.bz2 |
(annotate_frame_begin): Re-instate frame-begin annotation for level 3
annotations.
Diffstat (limited to 'gdb/annotate.c')
-rw-r--r-- | gdb/annotate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/annotate.c b/gdb/annotate.c index 188c88f..88bab3c 100644 --- a/gdb/annotate.c +++ b/gdb/annotate.c @@ -430,7 +430,7 @@ annotate_source (char *filename, int line, int character, int mid, CORE_ADDR pc) void annotate_frame_begin (int level, CORE_ADDR pc) { - if (annotation_level == 2) + if (annotation_level > 1) { printf_filtered (("\n\032\032frame-begin %d 0x"), level); deprecated_print_address_numeric (pc, 0, gdb_stdout); |