diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-05-08 00:43:20 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-05-08 00:43:20 +0000 |
commit | 6943e7c569bde3804b870f0c0fbc20cc8eb0f162 (patch) | |
tree | be60e05fdc2e0bf832cdd1523a3afa38883d0f31 /lldb/source/Commands/CommandObjectBreakpoint.cpp | |
parent | 0ee5df8264f0e9741ece31cc1aa3826d411ce33e (diff) | |
download | llvm-6943e7c569bde3804b870f0c0fbc20cc8eb0f162.zip llvm-6943e7c569bde3804b870f0c0fbc20cc8eb0f162.tar.gz llvm-6943e7c569bde3804b870f0c0fbc20cc8eb0f162.tar.bz2 |
Add clarification comments.
llvm-svn: 156350
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp index a3c2e18..625e472 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.cpp +++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp @@ -74,6 +74,8 @@ CommandObjectBreakpointSet::CommandOptions::~CommandOptions () { } +// If an additional option set beyond LLDB_OPTION_SET_10 is added, make sure to +// update the numbers passed to LLDB_OPT_SET_FROM_TO(...) appropriately. #define LLDB_OPT_FILE ( LLDB_OPT_SET_FROM_TO(1, 9) & ~LLDB_OPT_SET_2 ) #define LLDB_OPT_NOT_10 ( LLDB_OPT_SET_FROM_TO(1, 10) & ~LLDB_OPT_SET_10 ) |