• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 extern void f(void);
2 extern int a[];
3 
foo(void)4 int foo(void) { if (f) return 1; return 0; }
bar(void)5 int bar(void) { if (a) return 1; return 0; }
qux(void)6 int qux(void) { if (f && a) return 1; return 0; }
7 
8 /*
9  * check-name: cond-address.c
10  * check-command: test-linearize -Wno-decl $file
11  * check-output-ignore
12  *
13  * check-output-excludes: VOID
14  */
15