aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CFrontend/2004-03-07-BitfieldCrash.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/CFrontend/2004-03-07-BitfieldCrash.c b/test/CFrontend/2004-03-07-BitfieldCrash.c
deleted file mode 100644
index 438555b5a3..0000000000
--- 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;
-}