diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-04-04 09:55:27 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-04-04 10:04:47 +0100 |
commit | 0bf8b9ca3899a2913948d02fa17ce5fbe3e7af54 (patch) | |
tree | f1e4ab44932f5ef11af271b8bb69a24953104fb2 /runtime | |
parent | 839f43a40c9fe170266f42a9726c02195c73d043 (diff) | |
download | art-0bf8b9ca3899a2913948d02fa17ce5fbe3e7af54.zip art-0bf8b9ca3899a2913948d02fa17ce5fbe3e7af54.tar.gz art-0bf8b9ca3899a2913948d02fa17ce5fbe3e7af54.tar.bz2 |
Please clang by making explicit instantiations non-static.
Change-Id: I4112bf62c69b4f28ca369c4bf3c626be43692afd
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/entrypoints/quick/quick_trampoline_entrypoints.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc b/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc index 61ed472..963c3d1 100644 --- a/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc +++ b/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc @@ -1684,10 +1684,10 @@ static uint64_t artInvokeCommon(uint32_t method_idx, mirror::Object* this_object // Explicit artInvokeCommon template function declarations to please analysis tool. #define EXPLICIT_INVOKE_COMMON_TEMPLATE_DECL(type, access_check) \ template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \ - static uint64_t artInvokeCommon<type, access_check>(uint32_t method_idx, \ - mirror::Object* this_object, \ - mirror::ArtMethod* caller_method, \ - Thread* self, mirror::ArtMethod** sp) \ + uint64_t artInvokeCommon<type, access_check>(uint32_t method_idx, \ + mirror::Object* this_object, \ + mirror::ArtMethod* caller_method, \ + Thread* self, mirror::ArtMethod** sp) \ EXPLICIT_INVOKE_COMMON_TEMPLATE_DECL(kVirtual, false); EXPLICIT_INVOKE_COMMON_TEMPLATE_DECL(kVirtual, true); |