diff options
| author | 2013-01-31 15:21:37 -0800 | |
|---|---|---|
| committer | 2013-02-01 12:22:53 -0800 | |
| commit | 641ce0371c2f0dc95d26be02d8366124c8b66653 (patch) | |
| tree | 5c132a223a739e852849d6a0d1b9ffef4305dfc3 /src/compiler/codegen/codegen_util.h | |
| parent | 6cbd384cb98c6619c73fe4f76ef40a34ac6f355d (diff) | |
Rename compiler_llvm CompilationUnit to LlvmCompilationUnit
Also fixed stray ART_TEST_CFLAGS to LOCAL_CFLAGS
Also fixed relative includes
Tried to change CompilationUnit to reference LlvmCompilationUnit, but
that causes issues because of the split libart-compiler
libart-compiler-llvm.
Change-Id: I7a490f339add6355a20c1cedae858ccf6967a6aa
Diffstat (limited to 'src/compiler/codegen/codegen_util.h')
| -rw-r--r-- | src/compiler/codegen/codegen_util.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/compiler/codegen/codegen_util.h b/src/compiler/codegen/codegen_util.h index 3bb4291767..4f146560b2 100644 --- a/src/compiler/codegen/codegen_util.h +++ b/src/compiler/codegen/codegen_util.h @@ -17,8 +17,15 @@ #ifndef ART_SRC_COMPILER_CODEGEN_CODEGENUTIL_H_ #define ART_SRC_COMPILER_CODEGEN_CODEGENUTIL_H_ +#include <stdint.h> + +#include "compiler/compiler_enums.h" + namespace art { +class CompilationUnit; +struct LIR; + void MarkSafepointPC(CompilationUnit* cu, LIR* inst); bool FastInstance(CompilationUnit* cu, uint32_t field_idx, int& field_offset, bool& is_volatile, bool is_put); |