diff options
author | 2014-05-22 22:07:37 +0000 | |
---|---|---|
committer | 2014-05-22 22:07:38 +0000 | |
commit | 7d5cf703f3c03769e5b2f7ebc9d216c52ee5c70d (patch) | |
tree | 6d6f6aff838a440f418fe4a4e1451d9db8c8d5dc /compiler/common_compiler_test.h | |
parent | be2cb9b284f3eca3b99571e83b7e0e3109f1ef06 (diff) | |
parent | 3bdb873122964da7937eb070cbcf2ef638a8e459 (diff) |
Merge "Revert "Fix an outstanding compaction bug in interpreter.""
Diffstat (limited to 'compiler/common_compiler_test.h')
-rw-r--r-- | compiler/common_compiler_test.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/common_compiler_test.h b/compiler/common_compiler_test.h index 5050d4eb78..fb6c625926 100644 --- a/compiler/common_compiler_test.h +++ b/compiler/common_compiler_test.h @@ -377,7 +377,7 @@ class CommonCompilerTest : public CommonRuntimeTest { timings.EndSplit(); } - void CompileDirectMethod(Handle<mirror::ClassLoader> class_loader, const char* class_name, + void CompileDirectMethod(Handle<mirror::ClassLoader>& class_loader, const char* class_name, const char* method_name, const char* signature) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { std::string class_descriptor(DotToDescriptor(class_name)); @@ -390,7 +390,7 @@ class CommonCompilerTest : public CommonRuntimeTest { CompileMethod(method); } - void CompileVirtualMethod(Handle<mirror::ClassLoader> class_loader, const char* class_name, + void CompileVirtualMethod(Handle<mirror::ClassLoader>& class_loader, const char* class_name, const char* method_name, const char* signature) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { std::string class_descriptor(DotToDescriptor(class_name)); |