From 2dd0e2cea360bc9206eb88ecc40d259e796c239d Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Thu, 24 Jan 2013 12:42:14 -0800 Subject: Directory restructuring of object.h Break object.h into constituent files. Reduce number of #includes in other GC header files. Introduce -inl.h files to avoid mirror files #include-ing each other. Check invariants of verifier RegTypes for all constructors. Change-Id: Iecf1171c02910ac152d52947330ef456df4043bc --- src/compiler_llvm/compiler_llvm.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/compiler_llvm/compiler_llvm.h') diff --git a/src/compiler_llvm/compiler_llvm.h b/src/compiler_llvm/compiler_llvm.h index 9aa9791ee8..bb14c49163 100644 --- a/src/compiler_llvm/compiler_llvm.h +++ b/src/compiler_llvm/compiler_llvm.h @@ -21,7 +21,7 @@ #include "compiler.h" #include "dex_file.h" #include "instruction_set.h" -#include "object.h" +#include "mirror/object.h" #include "procedure_linkage_table.h" #include @@ -31,13 +31,15 @@ #include namespace art { - class ClassLoader; class CompiledInvokeStub; class CompiledMethod; class Compiler; class OatCompilationUnit; - class AbstractMethod; -} + namespace mirror { + class AbstractMethod; + class ClassLoader; + } // namespace mirror +} // namespace art namespace llvm { @@ -47,7 +49,7 @@ namespace llvm { class PointerType; class StructType; class Type; -} +} // namespace llvm namespace art { -- cgit v1.2.3-59-g8ed1b