[Lldb-commits] [lldb] 3a62d4f - Fix typo, arvm7 -> armv7
Brad Smith via lldb-commits
lldb-commits at lists.llvm.org
Tue May 4 21:57:36 PDT 2021
Author: Brad Smith
Date: 2021-05-05T00:56:44-04:00
New Revision: 3a62d4fde88544125ce9ceff990db108ee91148a
URL: https://github.com/llvm/llvm-project/commit/3a62d4fde88544125ce9ceff990db108ee91148a
DIFF: https://github.com/llvm/llvm-project/commit/3a62d4fde88544125ce9ceff990db108ee91148a.diff
LOG: Fix typo, arvm7 -> armv7
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 c5121538741f..b91e930f3d84 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 lldb-commits
mailing list