We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35ec58d commit 302d717Copy full SHA for 302d717
lldb/source/Commands/CommandObjectTarget.cpp
@@ -3626,6 +3626,15 @@ class CommandObjectTargetModulesLookup : public CommandObjectParsed {
3626
m_print_all = false;
3627
}
3628
3629
+ Status OptionParsingFinished(ExecutionContext *execution_context) override {
3630
+ Status status;
3631
+ if (m_all_ranges && !m_verbose) {
3632
+ status.SetErrorString("--show-variable-ranges must be used in "
3633
+ "conjunction with --verbose.");
3634
+ }
3635
+ return status;
3636
3637
+
3638
llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
3639
return llvm::makeArrayRef(g_target_modules_lookup_options);
3640
0 commit comments