From: Duncan Sands Date: Sun, 1 Apr 2007 15:29:02 +0000 (+0000) Subject: Testcase for the problem worked around in X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=320c6e97dfd516395b168d9bb30a3b237c7ab442;p=oota-llvm.git Testcase for the problem worked around in http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20070319/046204.html git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35554 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CFrontend/2007-03-26-ZeroWidthBitfield.c b/test/CFrontend/2007-03-26-ZeroWidthBitfield.c new file mode 100644 index 00000000000..89bfb8e1cb0 --- /dev/null +++ b/test/CFrontend/2007-03-26-ZeroWidthBitfield.c @@ -0,0 +1,2 @@ +// RUN: %llvmgcc %s -S -o - +struct Z { int :0; } z;