Skip to content

Commit 8a94a74

Browse files
committed
[LLDB] Swift: s/DWARFRangeList/llvm::DWARFAddressRangeVector
Per fb8df8c.
1 parent 826c36e commit 8a94a74

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserSwift.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
#include "lldb/Utility/Log.h"
3333
#include "lldb/Utility/Status.h"
3434

35+
#include "llvm/DebugInfo/DWARF/DWARFAddressRange.h"
36+
3537
#include "clang/AST/DeclObjC.h"
3638

3739
using namespace lldb;
@@ -255,7 +257,7 @@ DWARFASTParserSwift::ConstructDemangledNameFromDWARF(const DWARFDIE &die) {
255257
Function *DWARFASTParserSwift::ParseFunctionFromDWARF(
256258
lldb_private::CompileUnit &comp_unit, const DWARFDIE &die,
257259
lldb_private::AddressRanges ranges) {
258-
DWARFRangeList unused_ranges;
260+
llvm::DWARFAddressRangesVector unused_ranges;
259261
const char *name = NULL;
260262
const char *mangled = NULL;
261263
std::optional<int> decl_file = 0;

0 commit comments

Comments
 (0)