summaryrefslogtreecommitdiff
path: root/compiler/elf_writer_debug.h
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2015-12-01 10:16:19 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-12-01 10:16:19 +0000
commitd1744d449cf2b56af7e0896b3729fac2a414e3af (patch)
treecd23e1e0a3cea10cc9a9ae8269a01f75ada8ef0e /compiler/elf_writer_debug.h
parente51e3f988ba91f0469757738fa55f835e16e37d9 (diff)
parent10c13565474de2786aad7c2e79757ea250747a15 (diff)
Merge "Refactor oat file writing to give Dex2Oat more control."
Diffstat (limited to 'compiler/elf_writer_debug.h')
-rw-r--r--compiler/elf_writer_debug.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/compiler/elf_writer_debug.h b/compiler/elf_writer_debug.h
index e58fd0a390..9ed102f91b 100644
--- a/compiler/elf_writer_debug.h
+++ b/compiler/elf_writer_debug.h
@@ -17,23 +17,22 @@
#ifndef ART_COMPILER_ELF_WRITER_DEBUG_H_
#define ART_COMPILER_ELF_WRITER_DEBUG_H_
-#include <vector>
-
#include "elf_builder.h"
#include "dwarf/dwarf_constants.h"
#include "oat_writer.h"
+#include "utils/array_ref.h"
namespace art {
namespace dwarf {
template<typename ElfTypes>
void WriteCFISection(ElfBuilder<ElfTypes>* builder,
- const std::vector<OatWriter::DebugInfo>& method_infos,
+ const ArrayRef<const MethodDebugInfo>& method_infos,
CFIFormat format);
template<typename ElfTypes>
void WriteDebugSections(ElfBuilder<ElfTypes>* builder,
- const std::vector<OatWriter::DebugInfo>& method_infos);
+ const ArrayRef<const MethodDebugInfo>& method_infos);
} // namespace dwarf
} // namespace art