Michael137 updated this revision to Diff 483160.
Michael137 added a comment.

- Fix commit message


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D140102/new/

https://reviews.llvm.org/D140102

Files:
  lldb/source/Commands/CommandObjectMemory.cpp


Index: lldb/source/Commands/CommandObjectMemory.cpp
===================================================================
--- lldb/source/Commands/CommandObjectMemory.cpp
+++ lldb/source/Commands/CommandObjectMemory.cpp
@@ -1578,7 +1578,11 @@
       : CommandObjectParsed(interpreter, "memory history",
                             "Print recorded stack traces for "
                             "allocation/deallocation events "
-                            "associated with an address.",
+                            "associated with an address."
+                            "\n"
+                            "This command requires a memory history "
+                            "provider plugin to be present. For example, "
+                            "compile the debuggee with address sanitizer.",
                             nullptr,
                             eCommandRequiresTarget | eCommandRequiresProcess |
                                 eCommandProcessMustBePaused |


Index: lldb/source/Commands/CommandObjectMemory.cpp
===================================================================
--- lldb/source/Commands/CommandObjectMemory.cpp
+++ lldb/source/Commands/CommandObjectMemory.cpp
@@ -1578,7 +1578,11 @@
       : CommandObjectParsed(interpreter, "memory history",
                             "Print recorded stack traces for "
                             "allocation/deallocation events "
-                            "associated with an address.",
+                            "associated with an address."
+                            "\n"
+                            "This command requires a memory history "
+                            "provider plugin to be present. For example, "
+                            "compile the debuggee with address sanitizer.",
                             nullptr,
                             eCommandRequiresTarget | eCommandRequiresProcess |
                                 eCommandProcessMustBePaused |
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to