1_Bool eqs0(  signed char a) { return a == 0; }
2_Bool eqs1(  signed char a) { return a == 1; }
3_Bool nes0(  signed char a) { return a != 0; }
4_Bool nes1(  signed char a) { return a != 1; }
5
6/*
7 * check-name: bool-sext-test
8 * check-command: test-linearize -Wno-decl $file
9 *
10 * check-output-ignore
11 * check-output-excludes: sext\\.
12 */
13