diff options
author | 2014-10-24 14:20:06 -0700 | |
---|---|---|
committer | 2014-10-24 14:23:42 -0700 | |
commit | 2c4257be8191c5eefde744e8965fcefc80a0a97d (patch) | |
tree | 9db3e1f1c60f2df29638ba3ce9d5d5bb8b26ca2c /runtime/class_linker.cc | |
parent | 98c271d517bc4d25fc6879b4b8e35ea93885d9e2 (diff) |
Tidy logging code not using UNIMPLEMENTED.
Change-Id: I7a79c1671a6ff8b2040887133b3e0925ef9a3cfe
Diffstat (limited to 'runtime/class_linker.cc')
-rw-r--r-- | runtime/class_linker.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index f6717fb006..854effd772 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -5284,6 +5284,7 @@ mirror::ArtMethod* ClassLinker::ResolveMethod(const DexFile& dex_file, uint32_t break; default: LOG(FATAL) << "Unreachable - invocation type: " << type; + UNREACHABLE(); } if (resolved == nullptr) { // Search by name, which works across dex files. |