|
@@ -215,7 +215,8 @@
|
|
* this in the preprocessor, but we can live with this because they're
|
|
* this in the preprocessor, but we can live with this because they're
|
|
* unreleased. Really, we need to have autoconf for the kernel.
|
|
* unreleased. Really, we need to have autoconf for the kernel.
|
|
*/
|
|
*/
|
|
-#define unreachable() annotate_unreachable(); __builtin_unreachable()
|
|
|
|
|
|
+#define unreachable() \
|
|
|
|
+ do { annotate_unreachable(); __builtin_unreachable(); } while (0)
|
|
|
|
|
|
/* Mark a function definition as prohibited from being cloned. */
|
|
/* Mark a function definition as prohibited from being cloned. */
|
|
#define __noclone __attribute__((__noclone__, __optimize__("no-tracer")))
|
|
#define __noclone __attribute__((__noclone__, __optimize__("no-tracer")))
|