From 320c6e97dfd516395b168d9bb30a3b237c7ab442 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Sun, 1 Apr 2007 15:29:02 +0000 Subject: [PATCH] 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 --- test/CFrontend/2007-03-26-ZeroWidthBitfield.c | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test/CFrontend/2007-03-26-ZeroWidthBitfield.c 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; -- 2.34.1