[Lldb-commits] [PATCH] D77460: [lldb] NFC: Fix trivial typo in comments, documents, and messages

Kazuaki Ishizaki via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Sat Apr 4 07:56:20 PDT 2020


kiszk created this revision.
Herald added subscribers: lldb-commits, atanasyan, MaskRay, jrtc27, kbarton, mgorny, nemanjai, emaste.
Herald added a reviewer: espindola.
Herald added a project: LLDB.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D77460

Files:
  lldb/bindings/interface/SBBlock.i
  lldb/bindings/interface/SBExpressionOptions.i
  lldb/bindings/interface/SBFile.i
  lldb/docs/lldb-platform-packets.txt
  lldb/examples/interposing/darwin/fd_interposing/FDInterposing.cpp
  lldb/examples/python/mach_o.py
  lldb/include/lldb/Symbol/LineEntry.h
  lldb/include/lldb/Symbol/SymbolFile.h
  lldb/include/lldb/Target/Platform.h
  lldb/include/lldb/Target/Process.h
  lldb/include/lldb/Target/Target.h
  lldb/include/lldb/Target/ThreadPlan.h
  lldb/include/lldb/Utility/Connection.h
  lldb/include/lldb/Utility/Reproducer.h
  lldb/include/lldb/Utility/Status.h
  lldb/packages/Python/lldbsuite/test/lldbtest.py
  lldb/packages/Python/lldbsuite/test/test_runner/README.txt
  lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py
  lldb/scripts/verify_api.py
  lldb/source/Commands/CommandObjectWatchpoint.cpp
  lldb/source/Core/FormatEntity.cpp
  lldb/source/Host/common/Editline.cpp
  lldb/source/Host/common/NativeProcessProtocol.cpp
  lldb/source/Plugins/ABI/ARC/ABISysV_arc.cpp
  lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
  lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
  lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
  lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.h
  lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
  lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
  lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
  lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
  lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.h
  lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.h
  lldb/source/Plugins/Process/Darwin/CFUtils.h
  lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm.cpp
  lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.cpp
  lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_mips64.cpp
  lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_ppc64le.cpp
  lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.cpp
  lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
  lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp
  lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
  lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
  lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
  lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
  lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
  lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.h
  lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
  lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
  lldb/source/Symbol/ArmUnwindInfo.cpp
  lldb/source/Target/RegisterContextUnwind.cpp
  lldb/source/Target/StackFrame.cpp
  lldb/source/Target/StopInfo.cpp
  lldb/test/API/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py
  lldb/test/API/functionalities/breakpoint/breakpoint_names/TestBreakpointNames.py
  lldb/test/API/functionalities/breakpoint/step_over_breakpoint/TestStepOverBreakpoint.py
  lldb/test/API/functionalities/load_unload/TestLoadUnload.py
  lldb/test/API/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py
  lldb/test/API/functionalities/process_crash_info/TestProcessCrashInfo.py
  lldb/test/API/functionalities/target-new-solib-notifications/TestModuleLoadedNotifys.py
  lldb/test/API/lang/cpp/namespace/ns3.cpp
  lldb/test/API/macosx/lc-note/kern-ver-str/TestKernVerStrLCNOTE.py
  lldb/test/API/macosx/lc-note/kern-ver-str/create-empty-corefile.cpp
  lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
  lldb/test/API/python_api/frame/TestFrames.py
  lldb/test/API/python_api/function_symbol/main.c
  lldb/test/API/python_api/target/main.c
  lldb/test/API/python_api/thread/TestThreadAPI.py
  lldb/test/API/tools/lldb-server/main.cpp
  lldb/test/API/tools/lldb-vscode/attach/TestVSCode_attach.py
  lldb/test/API/tools/lldb-vscode/breakpoint-events/TestVSCode_breakpointEvents.py
  lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py
  lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py
  lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py
  lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
  lldb/test/API/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py
  lldb/test/API/tools/lldb-vscode/step/TestVSCode_step.py
  lldb/test/Shell/SymbolFile/DWARF/anon_class_w_and_wo_export_symbols.ll
  lldb/third_party/Python/module/pexpect-4.6/pexpect/spawnbase.py
  lldb/tools/debugserver/source/ChangeLog
  lldb/tools/debugserver/source/MacOSX/CFUtils.h
  lldb/tools/debugserver/source/MacOSX/MachProcess.h
  lldb/tools/lldb-test/lldb-test.cpp
  lldb/tools/lldb-vscode/JSONUtils.h
  lldb/tools/lldb-vscode/package.json
  lldb/unittests/Process/Linux/ProcessorTraceTest.cpp
  lldb/unittests/Utility/ArchSpecTest.cpp
  lldb/unittests/debugserver/CMakeLists.txt

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77460.255036.patch
Type: text/x-patch
Size: 76693 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200404/06fb7bbc/attachment-0001.bin>


More information about the lldb-commits mailing list