blob: c77c925d87678f57bafefe805a6e9adba70b04f7 [file] [log] [blame]
Anders Carlssonde9f1532010-04-17 20:21:41 +00001// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
2
3// CHECK: = type { i32, [4 x i8] }
4union Test1 {
5 int a;
6 int b: 39;
7};
8
9Test1 t1;