1 | // RUN: %clang_cc1 -emit-llvm -o %t %s |
---|---|
2 | |
3 | typedef short T[4]; |
4 | struct s { |
5 | T f0; |
6 | }; |
7 | |
8 | void foo(struct s *x) { |
9 | bar((long) x->f0); |
10 | } |
11 |
1 | // RUN: %clang_cc1 -emit-llvm -o %t %s |
---|---|
2 | |
3 | typedef short T[4]; |
4 | struct s { |
5 | T f0; |
6 | }; |
7 | |
8 | void foo(struct s *x) { |
9 | bar((long) x->f0); |
10 | } |
11 |