diff options
author | Thorsten Glaser <tg@mirbsd.org> | 2015-01-01 20:47:28 +0000 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-01-01 13:50:03 -0600 |
commit | db36600c2956f7b7ea6905f09fc581108c2e3eac (patch) | |
tree | 1a7c185a3c2addbf9d33c73f438051f36407d40c | |
parent | 0839d5e8bf55b21518f96772b89201da96ebef8c (diff) |
maybe fix an "noreturn function does return" warning
Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
-rw-r--r-- | libpthread/nptl/forward.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpthread/nptl/forward.c b/libpthread/nptl/forward.c index 812908001..a5c97babd 100644 --- a/libpthread/nptl/forward.c +++ b/libpthread/nptl/forward.c @@ -160,5 +160,6 @@ FORWARD2(__pthread_unwind, /* We cannot call abort() here. */ INTERNAL_SYSCALL_DECL (err); INTERNAL_SYSCALL (kill, err, 1, SIGKILL); + __builtin_unreachable(); }) #undef return |