• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 extern void def(void *, unsigned int);
2 
bar(void)3 static int bar(void)
4 {
5 	int x[2] = { 1, 2 };
6 
7 	def(x, sizeof(x));
8 	return x[1];
9 }
10 
11 /*
12  * check-name: eval/addressable-degen
13  * check-command: test-linearize -fdump-ir $file
14  *
15  * check-output-ignore
16  * check-output-contains: load\\.
17  */
18