1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

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 6258ec2e1d
commit a55c04e2f2

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