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