Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr69574.c
blobfeaac24043bb3e5b2eb43da03d982fd04b409042
1 /* { dg-do compile } */
3 typedef unsigned mytype;
5 struct S {
6 mytype *pu;
7 };
9 mytype f(struct S *e)
11 mytype x;
12 if(&x != e->pu)
13 __builtin_memcpy(&x, e->pu, sizeof(unsigned));
14 return x;