summaryrefslogtreecommitdiff
path: root/runtime/runtime.h
diff options
context:
space:
mode:
author Ian Rogers <irogers@google.com> 2014-10-10 20:23:09 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-10-10 20:23:09 +0000
commit6055bccdffcda19542775c7042a06508cd8f90ca (patch)
tree36d9f3da96b63ab8911a56a3c5ac2147d6493652 /runtime/runtime.h
parentb2a7ec2ad3f24c4094185cbf87bd0a39f727ffe7 (diff)
parent647b1a86f518d8db0331b3d52a96392b7a62504b (diff)
Merge "Fix 2 new sets of clang compiler warnings."
Diffstat (limited to 'runtime/runtime.h')
-rw-r--r--runtime/runtime.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/runtime.h b/runtime/runtime.h
index 1a6c6e0c54..30dabe7af4 100644
--- a/runtime/runtime.h
+++ b/runtime/runtime.h
@@ -180,7 +180,7 @@ class Runtime {
// This isn't marked ((noreturn)) because then gcc will merge multiple calls
// in a single function together. This reduces code size slightly, but means
// that the native stack trace we get may point at the wrong call site.
- static void Abort() LOCKS_EXCLUDED(Locks::abort_lock_);
+ static void Abort() NO_RETURN LOCKS_EXCLUDED(Locks::abort_lock_);
// Returns the "main" ThreadGroup, used when attaching user threads.
jobject GetMainThreadGroup() const;