From: Hans-Peter Nilsson Date: Thu, 27 Jul 2000 01:43:08 +0000 (+0000) Subject: * gcc.c-tortuer/execute/20000726-1.c: New test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fc5f1cca41afa1c7635156a1eaa81d9050a5d0ab;p=gcc.git * gcc.c-tortuer/execute/20000726-1.c: New test. From-SVN: r35279 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8f62cd8e8e8..4e9a48f5ec9 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +Wed Jul 26 19:41:51 2000 Hans-Peter Nilsson + + * gcc.c-tortuer/execute/20000726-1.c: New test. + 2000-07-26 Alexandre Oliva * gcc.c-torture/execute/enum-2.c: New test. diff --git a/gcc/testsuite/gcc.c-torture/execute/20000726-1.c b/gcc/testsuite/gcc.c-torture/execute/20000726-1.c new file mode 100644 index 00000000000..b0ecd29f3fe --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/execute/20000726-1.c @@ -0,0 +1,31 @@ +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; +}