summaryrefslogtreecommitdiffstats
path: root/compiler/jni
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2014-10-25 00:14:26 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-10-25 00:14:26 +0000
commit3e3364e267117462894e0c3b7d9b413b25d28057 (patch)
treeb5f96ac99323be3e210156de8d97a61af7e1a19c /compiler/jni
parentc57a66d5aadfd682c63e34ec1b1f304260f8c333 (diff)
parent2c4257be8191c5eefde744e8965fcefc80a0a97d (diff)
downloadart-3e3364e267117462894e0c3b7d9b413b25d28057.zip
art-3e3364e267117462894e0c3b7d9b413b25d28057.tar.gz
art-3e3364e267117462894e0c3b7d9b413b25d28057.tar.bz2
Merge "Tidy logging code not using UNIMPLEMENTED."
Diffstat (limited to 'compiler/jni')
-rw-r--r--compiler/jni/portable/jni_compiler.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/jni/portable/jni_compiler.cc b/compiler/jni/portable/jni_compiler.cc
index d2f54f8..ff37d85 100644
--- a/compiler/jni/portable/jni_compiler.cc
+++ b/compiler/jni/portable/jni_compiler.cc
@@ -298,6 +298,7 @@ void JniCompiler::CreateFunction(const std::string& func_name) {
case 'D': ret_type = irb_.getJDoubleTy(); break;
case 'L': ret_type = irb_.getJObjectTy(); break;
default: LOG(FATAL) << "Unreachable: unexpected return type in shorty " << shorty;
+ UNREACHABLE();
}
// Get argument type
std::vector< ::llvm::Type*> args_type;