blob: f837ace203f1a559110d0152b1f887bc163ccc9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
_Bool equ0(unsigned char a) { return a == 0; }
_Bool equ1(unsigned char a) { return a == 1; }
_Bool neu0(unsigned char a) { return a != 0; }
_Bool neu1(unsigned char a) { return a != 1; }
/*
* check-name: bool-zext-test
* check-command: test-linearize -Wno-decl $file
* check-known-to-fail
*
* check-output-ignore
* check-output-excludes: zext\\.
*/
|