aboutsummaryrefslogtreecommitdiff
path: root/source/Commands/CommandObjectBreakpoint.h
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2012-05-22 00:12:20 +0000
committerJim Ingham <jingham@apple.com>2012-05-22 00:12:20 +0000
commit2cf5ccbbbe3343a6c973d0d65ad5de178a414e30 (patch)
tree1fd3ca841a3392dffed53075e4ac5e80fd2a0b22 /source/Commands/CommandObjectBreakpoint.h
parent57e0ff42f10d1245f9e8d5b3418d5066aea6ea05 (diff)
downloadlldb-2cf5ccbbbe3343a6c973d0d65ad5de178a414e30.tar.gz
Also push file & line breakpoints past the prologue. Also added a "-K" argument to the relevant
"break set" commands to set this per breakpoint. Also, some CreateBreakpoint API's in the lldb_private namespace had "internal" first and "skip_prologue" second. "internal should always be last. Fixed that. rdar://problem/11484729 git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@157225 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'source/Commands/CommandObjectBreakpoint.h')
-rw-r--r--source/Commands/CommandObjectBreakpoint.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/Commands/CommandObjectBreakpoint.h b/source/Commands/CommandObjectBreakpoint.h
index df96b04c6..c9447452a 100644
--- a/source/Commands/CommandObjectBreakpoint.h
+++ b/source/Commands/CommandObjectBreakpoint.h
@@ -116,6 +116,7 @@ public:
bool m_catch_bp;
bool m_throw_bp;
lldb::LanguageType m_language;
+ LazyBool m_skip_prologue;
};