Remove this test. This test is already in PR269, so it should be

readded when the bug is fixed.

llvm-svn: 19722
This commit is contained in:
Chris Lattner 2005-01-20 20:58:42 +00:00
parent 4d25c04f94
commit ac4e5ef023
1 changed files with 0 additions and 15 deletions

View File

@ -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;
}