diff options
author | 2016-02-05 13:34:46 +0000 | |
---|---|---|
committer | 2016-02-08 11:33:50 +0000 | |
commit | 4fda4eb799c95be266f52aaf3461a440ea86b841 (patch) | |
tree | 54a7e56b5633caf2b868f6028010b488eb1923ce /compiler/utils/assembler.h | |
parent | 3c258f4d7a6492af733a9351ba430d876a3e5ccf (diff) |
Move code related to debug info generation to its own directory.
debug/dwarf/ contains helper classes which hide the details
of the DWARF file format. It acts as independent DWARF library.
debug/ contains ART-specific code which generates ELF debug
sections (which includes non-DWARF sections like .symtab).
Change-Id: Id351f604e4e64be2ca395a78324ea02e30481497
Diffstat (limited to 'compiler/utils/assembler.h')
-rw-r--r-- | compiler/utils/assembler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/utils/assembler.h b/compiler/utils/assembler.h index 1dbc142391..414ea7e660 100644 --- a/compiler/utils/assembler.h +++ b/compiler/utils/assembler.h @@ -21,9 +21,10 @@ #include "arch/instruction_set.h" #include "arch/instruction_set_features.h" +#include "arm/constants_arm.h" #include "base/logging.h" #include "base/macros.h" -#include "arm/constants_arm.h" +#include "debug/dwarf/debug_frame_opcode_writer.h" #include "label.h" #include "managed_register.h" #include "memory_region.h" @@ -31,7 +32,6 @@ #include "offsets.h" #include "x86/constants_x86.h" #include "x86_64/constants_x86_64.h" -#include "dwarf/debug_frame_opcode_writer.h" namespace art { |