diff options
| author | 2014-10-10 20:23:09 +0000 | |
|---|---|---|
| committer | 2014-10-10 20:23:09 +0000 | |
| commit | 6055bccdffcda19542775c7042a06508cd8f90ca (patch) | |
| tree | 36d9f3da96b63ab8911a56a3c5ac2147d6493652 /runtime/runtime.h | |
| parent | b2a7ec2ad3f24c4094185cbf87bd0a39f727ffe7 (diff) | |
| parent | 647b1a86f518d8db0331b3d52a96392b7a62504b (diff) | |
Merge "Fix 2 new sets of clang compiler warnings."
Diffstat (limited to 'runtime/runtime.h')
| -rw-r--r-- | runtime/runtime.h | 2 |
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; |