• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 extern int array[2];
2 
stupid_select(int idx)3 static inline int stupid_select(int idx)
4 {
5 	if (idx)
6 		idx = 0;
7 	return array[idx];
8 }
9 
select(void)10 int select(void)
11 {
12 	int d = stupid_select(-1);
13 	return d;
14 }
15 
16 /*
17  * check-name: merge_bbe-adjust_phi
18  * check-command: test-linearize -Wno-decl $file
19  *
20  * check-output-ignore
21  * check-output-excludes: phisrc\\.
22  * check-output-excludes: phi\\.
23  */
24