diff options
author | David Blaikie <dblaikie@gmail.com> | 2019-08-07 17:18:11 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2019-08-07 17:18:11 +0000 |
commit | 90146cd8b955b03bc1a31f6e652d5b76b432536c (patch) | |
tree | a6eb91a55957e3b2da6f6916235516b0da2bf12b /llvm/unittests/DebugInfo | |
parent | fb991596e34aa7403a417205526f47c22b199c11 (diff) | |
download | bcm5719-llvm-90146cd8b955b03bc1a31f6e652d5b76b432536c.tar.gz bcm5719-llvm-90146cd8b955b03bc1a31f6e652d5b76b432536c.zip |
DebugInfo/DWARF: Normalize DWARFObject members on the DWARF spec section names
Some of these names were abbreviated, some were not, some pluralised,
some not. Made the API difficult to use - since it's an exact 1:1
mapping to the DWARF sections - use those names (changing underscore
separation for camel casing).
llvm-svn: 368189
Diffstat (limited to 'llvm/unittests/DebugInfo')
-rw-r--r-- | llvm/unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp b/llvm/unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp index e2631afb007..f2fb5703d35 100644 --- a/llvm/unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp +++ b/llvm/unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp @@ -1096,7 +1096,7 @@ TEST(DWARFDebugInfo, TestEmptyStringOffsets) { ASSERT_TRUE((bool)Obj); std::unique_ptr<DWARFContext> DwarfContext = DWARFContext::create(**Obj); EXPECT_TRUE( - DwarfContext->getDWARFObj().getStringOffsetSection().Data.empty()); + DwarfContext->getDWARFObj().getStrOffsetsSection().Data.empty()); } TEST(DWARFDebugInfo, TestRelations) { |