Implement C _FloatN, _FloatNx types.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr57393-1.c
blobe62d44df4849b0c10f033ac25c5f6bc9806b5f11
1 /* PR middle-end/57393 */
2 /* { dg-do compile } */
3 /* { dg-additional-options "-g -ffast-math" } */
5 extern void bar (double);
7 struct S { int n; };
9 void
10 foo (struct S s, double a, int i, int j, int k)
12 struct S t;
13 bar (s.n * a * i * j);
14 t.n = s.n * a * i * k;