summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectBreakpoint.cpp
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2013-03-09 00:48:58 +0000
committerJim Ingham <jingham@apple.com>2013-03-09 00:48:58 +0000
commit168d469a191da470b89a72f8d5340be3ba7850f1 (patch)
tree525f3304d2a101e6cde26bc48b44c8f779ad0384 /lldb/source/Commands/CommandObjectBreakpoint.cpp
parentc33136706d9fe43541e1ecf79f31603a260257c4 (diff)
downloadbcm5719-llvm-168d469a191da470b89a72f8d5340be3ba7850f1.tar.gz
bcm5719-llvm-168d469a191da470b89a72f8d5340be3ba7850f1.zip
Fix a reversed test for "for_expression" in creating C++ exception breakpoints.
Add a missing "break" in processing the -h option to "breakpoint set". llvm-svn: 176741
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectBreakpoint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp
index f8f546d2ddf..9775cd48270 100644
--- a/lldb/source/Commands/CommandObjectBreakpoint.cpp
+++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp
@@ -189,7 +189,7 @@ public:
if (!success)
error.SetErrorStringWithFormat ("Invalid boolean value for on-catch option: '%s'", option_arg);
}
-
+ break;
case 'i':
{
m_ignore_count = Args::StringToUInt32(option_arg, UINT32_MAX, 0);
OpenPOWER on IntegriCloud