2 restrict-1.c from the execute part of the gcc torture tests.
7 /* PR rtl-optimization/16536
8 Origin: Jeremy Denise <jeremy.denise@libertysurf.fr>
9 Reduced: Wolfgang Bangerth <bangerth@dealii.org>
10 Volker Reichelt <reichelt@igpm.rwth-aachen.de> */
11 /* { dg-options "-fgnu89-inline" } */
17 #if 0 // TODO: Enable when compound literals are supported
18 inline A
foo (const A
* p
, const A
* q
)
20 return (A
){p
->i
+q
->i
};
23 void bar (A
* __restrict__ p
)
31 testTortureExecute (void)
33 #if 0 // TODO: Enable when compound literals are supported