summaryrefslogtreecommitdiff
path: root/runtime/mirror/executable.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/mirror/executable.cc')
-rw-r--r--runtime/mirror/executable.cc12
1 files changed, 4 insertions, 8 deletions
diff --git a/runtime/mirror/executable.cc b/runtime/mirror/executable.cc
index 33ebd817d1..17c16a2c0b 100644
--- a/runtime/mirror/executable.cc
+++ b/runtime/mirror/executable.cc
@@ -32,14 +32,10 @@ bool Executable::CreateFromArtMethod(ArtMethod* method) {
return true;
}
-template bool Executable::CreateFromArtMethod<PointerSize::k32, false>(
- ArtMethod* method);
-template bool Executable::CreateFromArtMethod<PointerSize::k32, true>(
- ArtMethod* method);
-template bool Executable::CreateFromArtMethod<PointerSize::k64, false>(
- ArtMethod* method);
-template bool Executable::CreateFromArtMethod<PointerSize::k64, true>(
- ArtMethod* method);
+template bool Executable::CreateFromArtMethod<PointerSize::k32, false>(ArtMethod* method);
+template bool Executable::CreateFromArtMethod<PointerSize::k32, true>(ArtMethod* method);
+template bool Executable::CreateFromArtMethod<PointerSize::k64, false>(ArtMethod* method);
+template bool Executable::CreateFromArtMethod<PointerSize::k64, true>(ArtMethod* method);
ArtMethod* Executable::GetArtMethod() {
return reinterpret_cast<ArtMethod*>(GetField64(ArtMethodOffset()));