1#define __bitwise __attribute__((bitwise))
2
3typedef unsigned short __bitwise __be16;
4
5static void foo(__be16 x)
6{
7	if (~x)
8		;
9}
10
11/*
12 * check-name: foul-scalar
13 */
14