aboutsummaryrefslogtreecommitdiff
path: root/gdb/buildsym.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/buildsym.h')
-rw-r--r--gdb/buildsym.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/buildsym.h b/gdb/buildsym.h
index 00e5778..4e9aaa4 100644
--- a/gdb/buildsym.h
+++ b/gdb/buildsym.h
@@ -116,6 +116,10 @@ enum linetable_entry_flag : unsigned
{
/* Indicates this PC is a good location to place a breakpoint at LINE. */
LEF_IS_STMT = 1 << 1,
+
+ /* Indicates this PC is a good location to place a breakpoint at the first
+ instruction past a function prologue. */
+ LEF_PROLOGUE_END = 1 << 2,
};
DEF_ENUM_FLAGS_TYPE (enum linetable_entry_flag, linetable_entry_flags);