commit | 65b798ea10dd716c1bb3dda029f9bf255435af72 | [log] [tgz] |
---|---|---|
author | Andreas Gampe <agampe@google.com> | Mon Apr 06 09:35:22 2015 -0700 |
committer | Andreas Gampe <agampe@google.com> | Mon Apr 06 14:05:07 2015 -0700 |
tree | 774e9901b6917989a63f07f927c3b4d8b921a013 | |
parent | c411c6cc327d3f2b3b4d1987b07dd442205d9454 [diff] [blame] |
ART: Enable more Clang warnings Change-Id: Ie6aba02f4223b1de02530e1515c63505f37e184c
diff --git a/runtime/entrypoints/quick/quick_deoptimization_entrypoints.cc b/runtime/entrypoints/quick/quick_deoptimization_entrypoints.cc index d88d262..6a8aaf2 100644 --- a/runtime/entrypoints/quick/quick_deoptimization_entrypoints.cc +++ b/runtime/entrypoints/quick/quick_deoptimization_entrypoints.cc
@@ -27,7 +27,7 @@ namespace art { -extern "C" void artDeoptimize(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { +extern "C" NO_RETURN void artDeoptimize(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { ScopedQuickEntrypointChecks sqec(self); self->SetException(Thread::GetDeoptimizationException()); self->QuickDeliverException();