* gcc.c-torture/execute/20000808-1.c: New test.

From-SVN: r35580
This commit is contained in:
Alexandre Oliva 2000-08-09 05:21:17 +00:00 committed by Alexandre Oliva
parent 2696f6a43d
commit 8e32b501b8
2 changed files with 60 additions and 0 deletions

View File

@ -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.

View File

@ -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();
}