add a testcase for my llvm-gcc hack.

llvm-svn: 78289
This commit is contained in:
Chris Lattner 2009-08-06 06:18:52 +00:00
parent 84f399103b
commit 5ccb3af0aa
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
// RUN: %llvmgxx -c -emit-llvm %s -o -
// rdar://7114564
struct A {
unsigned long long : (sizeof(unsigned long long) * 8) - 16;
};
struct B {
A a;
};
struct B b = {
{}
};