forked from OSchip/llvm-project
Updated to a more meaningful macro name.
llvm-svn: 156340
This commit is contained in:
parent
51d6c42824
commit
4ab2e6be38
|
@ -103,7 +103,7 @@
|
|||
#define LLDB_OPT_SET_8 (1U << 7)
|
||||
#define LLDB_OPT_SET_9 (1U << 8)
|
||||
#define LLDB_OPT_SET_10 (1U << 9)
|
||||
#define LLDB_OPT_SET_FROM(A, B) (((1U << (B)) - 1) ^ (1U << ((A)-1) - 1))
|
||||
#define LLDB_OPT_SET_FROM_TO(A, B) (((1U << (B)) - 1) ^ (((1U << (A))-1) >> 1))
|
||||
|
||||
#if defined(__cplusplus)
|
||||
|
||||
|
|
|
@ -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[] =
|
||||
|
|
Loading…
Reference in New Issue