summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-06 06:18:52 +0000
committerChris Lattner <sabre@nondot.org>2009-08-06 06:18:52 +0000
commita03a60b7177ee4cae4f5ed5d6756ad7bdf6cdffe (patch)
tree09c0e6287d5917a2e963d886386813ffed8d21fa /test/FrontendC++/2009-08-05-ZeroInitWidth.cpp
parent8113c6739e854d94910491965d83797487bc8a54 (diff)
downloadllvm-a03a60b7177ee4cae4f5ed5d6756ad7bdf6cdffe.tar.gz
llvm-a03a60b7177ee4cae4f5ed5d6756ad7bdf6cdffe.tar.bz2
llvm-a03a60b7177ee4cae4f5ed5d6756ad7bdf6cdffe.tar.xz
add a testcase for my llvm-gcc hack.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78289 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2009-08-05-ZeroInitWidth.cpp')
-rw-r--r--test/FrontendC++/2009-08-05-ZeroInitWidth.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp b/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp
new file mode 100644
index 0000000000..bc862e70bd
--- /dev/null
+++ b/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp
@@ -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 = {
+ {}
+};
+