View | Details | Raw Unified | Return to bug 198141
Collapse All | Expand All

(-)devel/pecl-ev/files/patch-libev__ev.c (+18 lines)
Line 0 Link Here
1
--- libev/ev.c.orig	2014-12-08 18:18:51.000000000 +0100
2
+++ libev/ev.c	2015-03-01 22:43:14.480908000 +0100
3
@@ -1006,12 +1006,12 @@
4
   }
5
 #endif
6
 
7
-#if ECB_GCC_VERSION(4,5)
8
+#if ECB_GCC_VERSION(4,5) || defined __clang__
9
   #define ecb_unreachable() __builtin_unreachable ()
10
 #else
11
   /* this seems to work fine, but gcc always emits a warning for it :/ */
12
-  ecb_inline void ecb_unreachable (void) ecb_noreturn;
13
-  ecb_inline void ecb_unreachable (void) { }
14
+  ecb_inline ecb_noreturn void ecb_unreachable (void);
15
+  ecb_inline ecb_noreturn void ecb_unreachable (void) { }
16
 #endif
17
 
18
 /* try to tell the compiler that some condition is definitely true */

Return to bug 198141