diff options
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index d12eee6..25b4f7d 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -1398,6 +1398,10 @@ struct linetable_entry /* True if this PC is a good location to place a breakpoint for LINE. */ unsigned is_stmt : 1; + /* True if this location is a good location to place a breakpoint after a + function prologue. */ + bool prologue_end : 1; + /* The address for this entry. */ CORE_ADDR pc; }; |