Re: 2.6.14 assorted warnings

From: Al Viro
Date: Sun Oct 30 2005 - 17:32:17 EST


On Sun, Oct 30, 2005 at 10:25:43PM +0000, Al Viro wrote:
> static inline __attribute__((always_inline)) int bar(int n, int *idx)
> {
> if (n != 1)
> return 0;
> *idx = 1;
> return 1;
> }
> void baz(int *v, int n)
> {
> int idx;
> int p = bar(n, &idx);
> if (__builtin_expect(!p, 0))
> return;
> *v |= idx;
> }
>
> and try gcc -Wall on that.

Duh. gcc -Wall -Os, of course
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/