blob: b530eb7ce1e5de2f5a7e1eefb614481c29125901 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o -
2// PR3744
3struct Empty {};
4struct Union {
5 union {
6 int zero_arr[0];
7 } contents;
8};
9static inline void Foo(struct Union *u) {
10 int *array = u->contents.zero_arr;
11}
12static void Bar(struct Union *u) {
13 Foo(u);
14}