summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp')
-rw-r--r--lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp b/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp
deleted file mode 100644
index 88b69c3182b..00000000000
--- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-//===-- DWARFIndex.cpp -----------------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#include "Plugins/SymbolFile/DWARF/DWARFIndex.h"
-#include "Plugins/SymbolFile/DWARF/DWARFDIE.h"
-#include "Plugins/SymbolFile/DWARF/DWARFDebugInfo.h"
-
-using namespace lldb_private;
-using namespace lldb;
-
-DWARFIndex::~DWARFIndex() = default;
-
-void DWARFIndex::ParseFunctions(
- const DIEArray &offsets, DWARFDebugInfo &info,
- llvm::function_ref<bool(const DWARFDIE &die, bool include_inlines,
- lldb_private::SymbolContextList &sc_list)>
- resolve_function,
- bool include_inlines, SymbolContextList &sc_list) {
- const size_t num_matches = offsets.size();
- for (size_t i = 0; i < num_matches; ++i) {
- DWARFDIE die = info.GetDIE(offsets[i]);
- if (die)
- resolve_function(die, include_inlines, sc_list);
- }
-}
OpenPOWER on IntegriCloud