aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2000-08-09 05:21:17 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2000-08-09 05:21:17 +0000
commit8e32b501b82f3ea5e8615d41ef18267308c654cf (patch)
tree1429e1232ea655b0c6b6a50433bd9624307c04b5 /gcc
parent2696f6a43d6cb8810564ed9d7d38518676608fb5 (diff)
downloadgcc-8e32b501b82f3ea5e8615d41ef18267308c654cf.zip
gcc-8e32b501b82f3ea5e8615d41ef18267308c654cf.tar.gz
gcc-8e32b501b82f3ea5e8615d41ef18267308c654cf.tar.bz2
* gcc.c-torture/execute/20000808-1.c: New test.
From-SVN: r35580
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gcc.c-torture/execute/20000808-1.c56
2 files changed, 60 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 6fed580..be6ce31 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2000-08-09 Alexandre Oliva <aoliva@redhat.com>
+
+ * gcc.c-torture/execute/20000808-1.c: New test.
+
2000-08-09 Joseph S. Myers <jsm28@cam.ac.uk>
* gcc.dg/c90-const-expr-1.c: New test.
diff --git a/gcc/testsuite/gcc.c-torture/execute/20000808-1.c b/gcc/testsuite/gcc.c-torture/execute/20000808-1.c
new file mode 100644
index 0000000..5c66fb9
--- /dev/null
+++ b/gcc/testsuite/gcc.c-torture/execute/20000808-1.c
@@ -0,0 +1,56 @@
+typedef struct {
+ long int p_x, p_y;
+} Point;
+
+void
+bar ()
+{
+}
+
+void
+f (p0, p1, p2, p3, p4, p5)
+ Point p0, p1, p2, p3, p4, p5;
+{
+ if (p0.p_x != 0 || p0.p_y != 1
+ || p1.p_x != -1 || p1.p_y != 0
+ || p2.p_x != 1 || p2.p_y != -1
+ || p3.p_x != -1 || p3.p_y != 1
+ || p4.p_x != 0 || p4.p_y != -1
+ || p5.p_x != 1 || p5.p_y != 0)
+ abort ();
+}
+
+void
+foo ()
+{
+ Point p0, p1, p2, p3, p4, p5;
+
+ bar();
+
+ p0.p_x = 0;
+ p0.p_y = 1;
+
+ p1.p_x = -1;
+ p1.p_y = 0;
+
+ p2.p_x = 1;
+ p2.p_y = -1;
+
+ p3.p_x = -1;
+ p3.p_y = 1;
+
+ p4.p_x = 0;
+ p4.p_y = -1;
+
+ p5.p_x = 1;
+ p5.p_y = 0;
+
+ f (p0, p1, p2, p3, p4, p5);
+}
+
+int
+main()
+{
+ foo();
+ exit();
+}