diff options
author | 2019-02-12 14:00:30 +0000 | |
---|---|---|
committer | 2019-02-12 14:44:44 +0000 | |
commit | 7370d92da01ad07c649e3f988aaf55ee7585a803 (patch) | |
tree | 961717b2838d923b87b2ecf1ebac55a8c5ecaa8d /compiler/cfi_test.h | |
parent | 91b290038cbd00a48028922a5e76c0c39d6ebcb6 (diff) |
Remove oat_patches from the DWARF writer.
We no longer use them.
Test: test-art-host-gtest-dwarf_test
Change-Id: Ie018d2314f028584edb398b6310a7284a0ec2069
Diffstat (limited to 'compiler/cfi_test.h')
-rw-r--r-- | compiler/cfi_test.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/compiler/cfi_test.h b/compiler/cfi_test.h index bc816da3dc..2fc81c958a 100644 --- a/compiler/cfi_test.h +++ b/compiler/cfi_test.h @@ -51,14 +51,11 @@ class CFITest : public dwarf::DwarfTest { dwarf::WriteCIE(is64bit, dwarf::Reg(8), initial_opcodes, &debug_frame_data_); std::vector<uintptr_t> debug_frame_patches; dwarf::WriteFDE(is64bit, - /* section_address= */ 0, - /* cie_address= */ 0, + /* cie_pointer= */ 0, /* code_address= */ 0, actual_asm.size(), actual_cfi, - /* buffer_address= */ 0, - &debug_frame_data_, - &debug_frame_patches); + &debug_frame_data_); ReformatCfi(Objdump(false, "-W"), &lines); // Pretty-print assembly. const uint8_t* asm_base = actual_asm.data(); |