• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 struct s {
2 	struct {
3 		int u, v;
4 	} a, b;
5 };
6 
7 static const struct s s;
8 
foo(int c)9 static int foo(int c)
10 {
11 	return c && s.b.v;
12 }
13 
14 /*
15  * check-name: cost-deref-nested
16  * check-command: test-linearize -fdump-ir $file
17  *
18  * check-output-ignore
19  * check-output-excludes: cbr
20  */
21