diff options
Diffstat (limited to 'compiler/debug/dwarf/dwarf_test.h')
-rw-r--r-- | compiler/debug/dwarf/dwarf_test.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/debug/dwarf/dwarf_test.h b/compiler/debug/dwarf/dwarf_test.h index 6b039a7b5f..e51f807dd4 100644 --- a/compiler/debug/dwarf/dwarf_test.h +++ b/compiler/debug/dwarf/dwarf_test.h @@ -29,9 +29,9 @@ #include "base/os.h" #include "base/unix_file/fd_file.h" #include "common_compiler_test.h" +#include "elf/elf_builder.h" #include "gtest/gtest.h" -#include "linker/elf_builder.h" -#include "linker/file_output_stream.h" +#include "stream/file_output_stream.h" namespace art { namespace dwarf { @@ -63,8 +63,8 @@ class DwarfTest : public CommonCompilerTest { InstructionSet isa = (sizeof(typename ElfTypes::Addr) == 8) ? InstructionSet::kX86_64 : InstructionSet::kX86; ScratchFile file; - linker::FileOutputStream output_stream(file.GetFile()); - linker::ElfBuilder<ElfTypes> builder(isa, nullptr, &output_stream); + FileOutputStream output_stream(file.GetFile()); + ElfBuilder<ElfTypes> builder(isa, &output_stream); builder.Start(); if (!debug_info_data_.empty()) { builder.WriteSection(".debug_info", &debug_info_data_); |