• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 void abort(void) __attribute__((noreturn));
2 
bar(int a)3 int bar(int a)
4 {
5 	return a ? (abort(), 0) : 0;
6 }
7 
qux(int a)8 int qux(int a)
9 {
10 	return a ? (abort(), 0) : (abort(), 1);
11 }
12 
13 /*
14  * check-name: join-cond-discard
15  * check-command: test-linearize -Wno-decl $file
16  *
17  * check-output-ignore
18  * check-output-excludes: phisrc\\..*phi
19  */
20