Remove this test. This test is already in PR269, so it should be
authorChris Lattner <sabre@nondot.org>
Thu, 20 Jan 2005 20:58:42 +0000 (20:58 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 20 Jan 2005 20:58:42 +0000 (20:58 +0000)
readded when the bug is fixed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19722 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2004-03-07-BitfieldCrash.c [deleted file]

diff --git a/test/CFrontend/2004-03-07-BitfieldCrash.c b/test/CFrontend/2004-03-07-BitfieldCrash.c
deleted file mode 100644 (file)
index 438555b..0000000
+++ /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;
-}