mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 23:29:51 +00:00
241d75b40f
automatically. Use -S with llvm-gcc rather than -c, so tests can work when llvm-gcc is really dragonegg (which can output IR with -S but not -c). llvm-svn: 120160
13 lines
167 B
C++
13 lines
167 B
C++
// RUN: %llvmgxx -S %s -o -
|
|
// rdar://7114564
|
|
struct A {
|
|
unsigned long long : (sizeof(unsigned long long) * 8) - 16;
|
|
};
|
|
struct B {
|
|
A a;
|
|
};
|
|
struct B b = {
|
|
{}
|
|
};
|
|
|