diff options
author | 2024-01-17 15:54:51 +0000 | |
---|---|---|
committer | 2024-01-19 18:01:00 +0000 | |
commit | 06d94bd3ac251c3e8656a71cbe1c504e2a5f3830 (patch) | |
tree | a0863c576f8abb283299219d0873a59e0c888d88 /compiler/optimizing/code_generator.cc | |
parent | 9f8df195b7ff2ce47eec4e9b193ff3214ebed19c (diff) |
Move files related to compiled code into oat/ directory
Test: art/test.py -b --host
Change-Id: Icedd3a82c6bca5147c3bc9dc50de5a729003d66f
Diffstat (limited to 'compiler/optimizing/code_generator.cc')
-rw-r--r-- | compiler/optimizing/code_generator.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index b0e07e32ea..b00e7e1873 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -48,7 +48,6 @@ #include "dex/bytecode_utils.h" #include "dex/code_item_accessors-inl.h" #include "graph_visualizer.h" -#include "image.h" #include "gc/space/image_space.h" #include "intern_table.h" #include "intrinsics.h" @@ -60,7 +59,8 @@ #include "parallel_move_resolver.h" #include "scoped_thread_state_change-inl.h" #include "ssa_liveness_analysis.h" -#include "stack_map.h" +#include "oat/image.h" +#include "oat/stack_map.h" #include "stack_map_stream.h" #include "string_builder_append.h" #include "thread-current-inl.h" |