aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compat/struct-big.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gcc.c-torture/compat/struct-big.c')
-rw-r--r--gcc-4.9/gcc/testsuite/gcc.c-torture/compat/struct-big.c54
1 files changed, 54 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gcc.c-torture/compat/struct-big.c b/gcc-4.9/gcc/testsuite/gcc.c-torture/compat/struct-big.c
new file mode 100644
index 000000000..e1d5c6a6b
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gcc.c-torture/compat/struct-big.c
@@ -0,0 +1,54 @@
+typedef struct {int a, b, c, d, e;} T;
+
+int h (T *);
+T g (T);
+
+#if COMPILER != 1
+h (T *x)
+{
+ if (x->a != 0 || x->b != 1 || x->c != 2 || x->d != 3 || x->e != 4)
+ abort ();
+}
+#endif
+
+#if COMPILER != 2
+T
+g (T x)
+{
+ if (x.a != 13 || x.b != 47 || x.c != 123456 || x.d != -4711 || x.e != -2)
+ abort ();
+ x.a = 0;
+ x.b = 1;
+ x.c = 2;
+ x.d = 3;
+ x.e = 4;
+ h (&x);
+ return x;
+}
+#endif
+
+#if COMPILER != 1
+f ()
+{
+ T x;
+ x.a = 13;
+ x.b = 47;
+ x.c = 123456;
+ x.d = -4711;
+ x.e = -2;
+ g (x);
+ if (x.a != 13 || x.b != 47 || x.c != 123456 || x.d != -4711 || x.e != -2)
+ abort ();
+ x = g (x);
+ if (x.a != 0 || x.b != 1 || x.c != 2 || x.d != 3 || x.e != 4)
+ abort ();
+}
+#endif
+
+#if COMPILER != 2
+main ()
+{
+ f ();
+ exit (0);
+}
+#endif