db/insert_manual_states.pl: remove debug output
[smatch.git] / validation / optim / fact-xor-shift.c
blob5fb228bd80a1d9ea992e2b7a6abf5a7d1af8f197
1 typedef unsigned int uint;
2 typedef signed int sint;
5 uint fact_xor_shl(uint a, uint b, uint s)
7 return ((a << s) ^ (b << s)) == ((a ^ b) << s);
10 uint fact_xor_lsr(uint a, uint b, uint s)
12 return ((a >> s) ^ (b >> s)) == ((a ^ b) >> s);
15 sint fact_xor_asr(sint a, sint b, sint s)
17 return ((a >> s) ^ (b >> s)) == ((a ^ b) >> s);
21 * check-name: fact-xor-shift
22 * check-command: test-linearize -Wno-decl $file
24 * check-output-ignore
25 * check-output-returns: 1