diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-05-07 23:23:41 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-05-07 23:23:41 +0000 |
commit | 4ab2e6be388b5df6b21e47a0f5a0e3c5b2f8b9d5 (patch) | |
tree | 13246fc5cd0dc515a5fa87d03d0891584ac03d1a /lldb/source/Commands/CommandObjectBreakpoint.cpp | |
parent | 51d6c428241a12774577c1c076e166eac0c939cf (diff) | |
download | llvm-4ab2e6be388b5df6b21e47a0f5a0e3c5b2f8b9d5.zip llvm-4ab2e6be388b5df6b21e47a0f5a0e3c5b2f8b9d5.tar.gz llvm-4ab2e6be388b5df6b21e47a0f5a0e3c5b2f8b9d5.tar.bz2 |
Updated to a more meaningful macro name.
llvm-svn: 156340
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp index cb86e08..a3c2e18 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.cpp +++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp @@ -74,8 +74,8 @@ CommandObjectBreakpointSet::CommandOptions::~CommandOptions () { } -#define LLDB_OPT_FILE ( LLDB_OPT_SET_FROM(1, 9) & ~LLDB_OPT_SET_2 ) -#define LLDB_OPT_NOT_10 ( LLDB_OPT_SET_FROM(1, 10) & ~LLDB_OPT_SET_10 ) +#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 ) OptionDefinition CommandObjectBreakpointSet::CommandOptions::g_option_table[] = |