diff options
author | Vladimir Marko <vmarko@google.com> | 2016-09-02 12:38:38 +0100 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2016-09-02 15:15:28 +0100 |
commit | 3a21e386fa55a8b86dffa5250985b263fcfd2155 (patch) | |
tree | ce6fecaae067f86e094ae7844ee5fa4ae8ee63e8 /compiler/optimizing/code_generator.h | |
parent | f94a4cf18946bda4a4f19378436d2bf131a492ca (diff) |
Clean up some includes.
Remove some unnecessary includes from header files, replace
others with forward references and add includes to source
files as needed. Reduce dependency on stack.h by pulling
StackReference<> out to its own file.
Test: m test-art-host
Change-Id: I0fb182145e328870cbd918b0ef6ae2950223c1b2
Diffstat (limited to 'compiler/optimizing/code_generator.h')
-rw-r--r-- | compiler/optimizing/code_generator.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h index fd396c474c..78a8afb156 100644 --- a/compiler/optimizing/code_generator.h +++ b/compiler/optimizing/code_generator.h @@ -23,8 +23,6 @@ #include "base/arena_object.h" #include "base/bit_field.h" #include "base/enums.h" -#include "compiled_method.h" -#include "driver/compiler_options.h" #include "globals.h" #include "graph_visualizer.h" #include "locations.h" @@ -54,6 +52,7 @@ static int64_t constexpr kPrimLongMax = INT64_C(0x7fffffffffffffff); class Assembler; class CodeGenerator; class CompilerDriver; +class CompilerOptions; class LinkerPatch; class ParallelMoveResolver; |