summaryrefslogtreecommitdiff
path: root/src/compiler_llvm/jni_compiler.h
diff options
context:
space:
mode:
author Logan Chien <loganchien@google.com> 2012-07-10 04:07:28 -0700
committer Shih-wei Liao <sliao@google.com> 2012-07-11 10:26:43 -0700
commit1258417d54c85a2cbb98267b397c238070f28338 (patch)
treeaf89aa0abba0df86b5f942b25ae50e6613ef4265 /src/compiler_llvm/jni_compiler.h
parentf1f863695b28f630abb772f50170fefaddc2fb91 (diff)
Code cleanup: Use "const T*" instead of "T const*"
Change-Id: I97d205df7d659e5670009df21b8c20b1d8224133
Diffstat (limited to 'src/compiler_llvm/jni_compiler.h')
-rw-r--r--src/compiler_llvm/jni_compiler.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/compiler_llvm/jni_compiler.h b/src/compiler_llvm/jni_compiler.h
index 15a789c64f..15c9810607 100644
--- a/src/compiler_llvm/jni_compiler.h
+++ b/src/compiler_llvm/jni_compiler.h
@@ -63,7 +63,7 @@ class JniCompiler {
private:
CompilationUnit* cunit_;
- Compiler const* compiler_;
+ const Compiler* compiler_;
llvm::Module* module_;
llvm::LLVMContext* context_;
@@ -74,9 +74,9 @@ class JniCompiler {
uint32_t access_flags_;
uint32_t method_idx_;
ClassLinker * class_linker_;
- ClassLoader const* class_loader_;
- DexCache const* dex_cache_;
- DexFile const* dex_file_;
+ const ClassLoader* class_loader_;
+ const DexCache* dex_cache_;
+ const DexFile* dex_file_;
Method* method_;
llvm::Function* func_;