diff options
Diffstat (limited to 'src/dex_cache.h')
-rw-r--r-- | src/dex_cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dex_cache.h b/src/dex_cache.h index 0d217bc..137f267 100644 --- a/src/dex_cache.h +++ b/src/dex_cache.h @@ -26,7 +26,7 @@ class CodeAndDirectMethods : public IntArray { } void SetResolvedDirectMethodTrampoline(uint32_t method_idx) { - UNIMPLEMENTED(FATAL) << "need to install a trampoline to resolve the method_idx at runtime"; + UNIMPLEMENTED(WARNING) << "need to install a trampoline to resolve the method_idx at runtime"; Set(method_idx * kMax + kCode, 0xffffffff); Set(method_idx * kMax + kMethod, method_idx); } |