Commit fc5f1cca by Hans-Peter Nilsson Committed by Jeff Law

* gcc.c-tortuer/execute/20000726-1.c: New test.

From-SVN: r35279
parent 9f9f0e4f
Wed Jul 26 19:41:51 2000 Hans-Peter Nilsson <hp@axis.com>
* gcc.c-tortuer/execute/20000726-1.c: New test.
2000-07-26 Alexandre Oliva <aoliva@redhat.com>
* gcc.c-torture/execute/enum-2.c: New test.
......
void adjust_xy (short *, short *);
struct adjust_template
{
short kx_x;
short kx_y;
short kx;
short kz;
};
static struct adjust_template adjust = {0, 0, 1, 1};
main ()
{
short x = 1, y = 1;
adjust_xy (&x, &y);
if (x != 1)
abort ();
exit (0);
}
void
adjust_xy (x, y)
short *x;
short *y;
{
*x = adjust.kx_x * *x + adjust.kx_y * *y + adjust.kx;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment