[llvm-branch-commits] [lldb] 6baa5ce - Fix typo, arvm7 -> armv7
Tom Stellard via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu May 6 16:51:34 PDT 2021
Author: Brad Smith
Date: 2021-05-06T16:51:09-07:00
New Revision: 6baa5ce2e4b70424981ba5632d10681d41f57cfc
URL: https://github.com/llvm/llvm-project/commit/6baa5ce2e4b70424981ba5632d10681d41f57cfc
DIFF: https://github.com/llvm/llvm-project/commit/6baa5ce2e4b70424981ba5632d10681d41f57cfc.diff
LOG: Fix typo, arvm7 -> armv7
(cherry picked from commit 3a62d4fde88544125ce9ceff990db108ee91148a)
Added:
Modified:
lldb/docs/man/lldb.rst
lldb/tools/driver/Driver.cpp
Removed:
################################################################################
diff --git a/lldb/docs/man/lldb.rst b/lldb/docs/man/lldb.rst
index 6dca15fa35dc..b75288db380d 100644
--- a/lldb/docs/man/lldb.rst
+++ b/lldb/docs/man/lldb.rst
@@ -256,11 +256,11 @@ executable. To disambiguate between arguments passed to lldb and arguments
passed to the debugged executable, arguments starting with a - must be passed
after --.
- lldb --arch x86_64 /path/to/program program argument -- --arch arvm7
+ lldb --arch x86_64 /path/to/program program argument -- --arch armv7
For convenience, passing the executable after -- is also supported.
- lldb --arch x86_64 -- /path/to/program program argument --arch arvm7
+ lldb --arch x86_64 -- /path/to/program program argument --arch armv7
Passing one of the attach options causes :program:`lldb` to immediately attach
to the given process.
diff --git a/lldb/tools/driver/Driver.cpp b/lldb/tools/driver/Driver.cpp
index e4a60127b65e..210a712f9741 100644
--- a/lldb/tools/driver/Driver.cpp
+++ b/lldb/tools/driver/Driver.cpp
@@ -751,11 +751,11 @@ static void printHelp(LLDBOptTable &table, llvm::StringRef tool_name) {
arguments passed to the debugged executable, arguments starting with a - must
be passed after --.
- lldb --arch x86_64 /path/to/program program argument -- --arch arvm7
+ lldb --arch x86_64 /path/to/program program argument -- --arch armv7
For convenience, passing the executable after -- is also supported.
- lldb --arch x86_64 -- /path/to/program program argument --arch arvm7
+ lldb --arch x86_64 -- /path/to/program program argument --arch armv7
Passing one of the attach options causes lldb to immediately attach to the
given process.
More information about the llvm-branch-commits
mailing list