]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/950628-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 950628-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/950628-1.c b/gcc/testsuite/gcc.c-torture/execute/950628-1.c
deleted file mode 100644 (file)
index e330ff5..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-typedef struct
-{
-  char hours, day, month;
-  short year;
-} T;
-
-T g (void)
-{
-  T now;
-
-  now.hours = 1;
-  now.day = 2;
-  now.month = 3;
-  now.year = 4;
-  return now;
-}
-
-T f (void)
-{
-  T virk;
-
-  virk = g ();
-  return virk;
-}
-
-main ()
-{
-  if (f ().hours != 1 || f ().day != 2 || f ().month != 3 || f ().year != 4)
-    abort ();
-  exit (0);
-}