Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / powerpc / 20040622-1.c
blobc699296d4642cc2e33c272192f32017b28523ed5
1 /* { dg-options "-Os -mlong-double-128" } */
2 /* { dg-do compile { target { { rs6000-*-* } || { powerpc*-*-* && lp64 } } } } */
3 /* Make sure compiler doesn't generate [reg+reg] address mode
4 for long doubles. */
5 union arg {
6 int intarg;
7 long double longdoublearg;
8 };
9 long double d;
10 int va(int n, union arg **argtable)
12 (*argtable)[n].longdoublearg = d;