diff options
| author | buzbee <buzbee@google.com> | 2013-05-24 13:02:32 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-05-24 13:02:32 +0000 |
| commit | 21d7d95469551dbe13d896986cefa240c280b3e8 (patch) | |
| tree | 291b3cb81502f2925a1eb46900d1cb1fab8eadd7 /vm/compiler/Compiler.cpp | |
| parent | c9ccb3651e6e486f6012f80ee23136c906e69273 (diff) | |
| parent | bbbe552a31f7229708bfc748480ce538218ae076 (diff) | |
Merge "JIT tuning; set cache size on command line"
Diffstat (limited to 'vm/compiler/Compiler.cpp')
| -rw-r--r-- | vm/compiler/Compiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/compiler/Compiler.cpp b/vm/compiler/Compiler.cpp index 188027f3d..fbde41f5b 100644 --- a/vm/compiler/Compiler.cpp +++ b/vm/compiler/Compiler.cpp @@ -182,7 +182,7 @@ bool dvmCompilerSetupCodeCache(void) MAP_PRIVATE , fd, 0); close(fd); if (gDvmJit.codeCache == MAP_FAILED) { - ALOGE("Failed to mmap the JIT code cache: %s", strerror(errno)); + ALOGE("Failed to mmap the JIT code cache of size %d: %s", gDvmJit.codeCacheSize, strerror(errno)); return false; } |
