From: Chris Lattner Date: Thu, 20 Jan 2005 20:58:42 +0000 (+0000) Subject: Remove this test. This test is already in PR269, so it should be X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=87a9b716c1945e0770b4b9ea13ddad994c54cda9;p=oota-llvm.git Remove this test. This test is already in PR269, so it should be readded when the bug is fixed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19722 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CFrontend/2004-03-07-BitfieldCrash.c b/test/CFrontend/2004-03-07-BitfieldCrash.c deleted file mode 100644 index 438555b5a3a..00000000000 --- a/test/CFrontend/2004-03-07-BitfieldCrash.c +++ /dev/null @@ -1,15 +0,0 @@ -// RUN: %llvmgcc -S %s -o /dev/null - -/* - * XFAIL: * - */ -struct s { - unsigned long long u33: 33; - unsigned long long u40: 40; -}; - -struct s a = { 1, 2}; - -int foo() { - return a.u40; -}