summaryrefslogtreecommitdiff
path: root/runtime/dex_file.cc
diff options
context:
space:
mode:
author Ian Rogers <irogers@google.com> 2014-10-24 14:20:06 -0700
committer Ian Rogers <irogers@google.com> 2014-10-24 14:23:42 -0700
commit2c4257be8191c5eefde744e8965fcefc80a0a97d (patch)
tree9db3e1f1c60f2df29638ba3ce9d5d5bb8b26ca2c /runtime/dex_file.cc
parent98c271d517bc4d25fc6879b4b8e35ea93885d9e2 (diff)
Tidy logging code not using UNIMPLEMENTED.
Change-Id: I7a79c1671a6ff8b2040887133b3e0925ef9a3cfe
Diffstat (limited to 'runtime/dex_file.cc')
-rw-r--r--runtime/dex_file.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/dex_file.cc b/runtime/dex_file.cc
index 78cbe58416..761441eae6 100644
--- a/runtime/dex_file.cc
+++ b/runtime/dex_file.cc
@@ -1182,13 +1182,14 @@ void EncodedStaticFieldValueIterator::Next() {
case kArray:
case kAnnotation:
UNIMPLEMENTED(FATAL) << ": type " << type_;
- break;
+ UNREACHABLE();
case kNull:
jval_.l = NULL;
width = 0;
break;
default:
LOG(FATAL) << "Unreached";
+ UNREACHABLE();
}
ptr_ += width;
}