Author: fjricci Date: Thu May 19 15:11:28 2016 New Revision: 270103 URL: http://llvm.org/viewvc/llvm-project?rev=270103&view=rev Log: Fix "thread backtrace -s": option was misparsed because of a missing break.
<rdar://problem/24525106> Modified: lldb/branches/release_38/source/Commands/CommandObjectThread.cpp Modified: lldb/branches/release_38/source/Commands/CommandObjectThread.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/branches/release_38/source/Commands/CommandObjectThread.cpp?rev=270103&r1=270102&r2=270103&view=diff ============================================================================== --- lldb/branches/release_38/source/Commands/CommandObjectThread.cpp (original) +++ lldb/branches/release_38/source/Commands/CommandObjectThread.cpp Thu May 19 15:11:28 2016 @@ -194,6 +194,7 @@ public: if (!success) error.SetErrorStringWithFormat("invalid integer value for option '%c'", short_option); } + break; case 'e': { bool success; _______________________________________________ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits