aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/static-local-union.c
blob: 289eae0184f1a68ac25c75b483017f76c599b75b (plain)
1
2
3
4
// RUN: %clang_cc1 -emit-llvm < %s

int a(void) {static union{int a;} r[2] = {1,2};return r[1].a;}