[Lldb-commits] [lldb] r141423 - /lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp

Jim Ingham jingham at apple.com
Fri Oct 7 15:17:16 PDT 2011


Author: jingham
Date: Fri Oct  7 17:17:16 2011
New Revision: 141423

URL: http://llvm.org/viewvc/llvm-project?rev=141423&view=rev
Log:
Fix the option lists that "--file" belongs to so the help won't come out whonky.

Modified:
    lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp

Modified: lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp?rev=141423&r1=141422&r2=141423&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp Fri Oct  7 17:17:16 2011
@@ -71,7 +71,7 @@
 {
 }
 
-#define LLDB_OPT_FILE (LLDB_OPT_SET_ALL & ~(LLDB_OPT_SET_2))
+#define LLDB_OPT_FILE (LLDB_OPT_SET_1 | LLDB_OPT_SET_3 | LLDB_OPT_SET_4 | LLDB_OPT_SET_5 | LLDB_OPT_SET_6 | LLDB_OPT_SET_7 | LLDB_OPT_SET_8 | LLDB_OPT_SET_9 )
 
 OptionDefinition
 CommandObjectBreakpointSet::CommandOptions::g_option_table[] =





More information about the lldb-commits mailing list