• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

sfoo(void)1 static int sfoo(void)
2 {
3 	return __builtin_types_compatible_p(char, signed char);
4 }
5 
ufoo(void)6 static int ufoo(void)
7 {
8 	return __builtin_types_compatible_p(char, unsigned char);
9 }
10 
11 /*
12  * check-name: plain-char-compatibility
13  * check-command: test-linearize $file
14  * check-known-to-fail
15  *
16  * check-output-ignore
17  * check-output-pattern(2): ret.*\\$0
18  * check-output-excludes: ret.*\\$1
19  */
20