1 __attribute__ ((__noreturn__
)) extern void fail (void);
5 /* This used to get stuck in an infinite loop in find_comparison_args
6 when compiling this function for MIPS at -O2. */
8 void foo (const unsigned char y
)
10 ((void) (__builtin_expect((!! y
== y
), 1) ? 0 : (fail (), 0)));
14 /* This used to similarly get stuck when compiling for PowerPC at -O2. */