[Lldb-commits] [lldb] 4c50cf9 - [lldb] Fix YAMLModuleTester for the rename in 67b4afc4
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Mon Jun 8 04:34:28 PDT 2020
Author: Pavel Labath
Date: 2020-06-08T13:34:03+02:00
New Revision: 4c50cf9197370a6a42601bf39c0cd8606b8ff6ec
URL: https://github.com/llvm/llvm-project/commit/4c50cf9197370a6a42601bf39c0cd8606b8ff6ec
DIFF: https://github.com/llvm/llvm-project/commit/4c50cf9197370a6a42601bf39c0cd8606b8ff6ec.diff
LOG: [lldb] Fix YAMLModuleTester for the rename in 67b4afc4
Added:
Modified:
lldb/unittests/TestingSupport/Symbol/YAMLModuleTester.cpp
Removed:
################################################################################
diff --git a/lldb/unittests/TestingSupport/Symbol/YAMLModuleTester.cpp b/lldb/unittests/TestingSupport/Symbol/YAMLModuleTester.cpp
index f40ff1db8232..54c2c9441e57 100644
--- a/lldb/unittests/TestingSupport/Symbol/YAMLModuleTester.cpp
+++ b/lldb/unittests/TestingSupport/Symbol/YAMLModuleTester.cpp
@@ -93,7 +93,7 @@ class YAMLObjectFile : public lldb_private::ObjectFile {
YAMLModuleTester::YAMLModuleTester(llvm::StringRef yaml_data,
llvm::StringRef triple) {
- auto sections_map = llvm::DWARFYAML::EmitDebugSections(yaml_data, true);
+ auto sections_map = llvm::DWARFYAML::emitDebugSections(yaml_data, true);
if (!sections_map)
return;
m_sections_map = std::move(*sections_map);
More information about the lldb-commits
mailing list