diff options
Diffstat (limited to 'runtime/dex_file.cc')
-rw-r--r-- | runtime/dex_file.cc | 3 |
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; } |