xref: /llvm-project/clang/test/CodeGen/2008-08-19-cast-of-typedef.c (revision 7d644e1215b376ec5e915df9ea2eeb56e2d94626)
1 // RUN: %clang_cc1 -std=c89 -emit-llvm -o %t %s
2 
3 typedef short T[4];
4 struct s {
5   T f0;
6 };
7 
foo(struct s * x)8 void foo(struct s *x) {
9   bar((long) x->f0);
10 }
11