]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/compile/20000511-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20000511-1.c
diff --git a/gcc/testsuite/gcc.c-torture/compile/20000511-1.c b/gcc/testsuite/gcc.c-torture/compile/20000511-1.c
deleted file mode 100644 (file)
index 11c1315..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-typedef struct {
-  char y;
-  char x[32];
-} X;
-
-int z (void)
-{
-  X xxx;
-  xxx.x[0] =
-  xxx.x[31] = '0';
-  xxx.y = 0xf;
-  return f (xxx, xxx);
-}
-
-int main (void)
-{
-  int val;
-
-  val = z ();
-  if (val != 0x60)
-    abort ();
-  exit (0);
-}
-
-int f(X x, X y)
-{
-  if (x.y != y.y)
-    return 'F';
-
-  return x.x[0] + y.x[0];
-}