brintos

brintos / llvm-project-archived public Read only

0
0
Text · 139 B · b3a4a05 Raw
11 lines · c
1// RUN: %clang_cc1 -std=c89 -emit-llvm -o %t %s2 3typedef short T[4];4struct s {5  T f0;6};7 8void foo(struct s *x) {9  bar((long) x->f0);10}11