[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / CodeGen / 2008-08-19-cast-of-typedef.c
blob740f48a8baa36aae18e0eb40ef66f72bcda57c58
1 // RUN: %clang_cc1 -emit-llvm -o %t %s
3 typedef short T[4];
4 struct s {
5 T f0;
6 };
8 void foo(struct s *x) {
9 bar((long) x->f0);