OSDN Git Service

* gcc.c-torture/compile/20080625-1.c: Skip for M32C.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20000718.c
1 extern double foo(double, double);
2 extern void bar(float*, int*);
3
4 void
5 baz(int* arg)
6 {
7     float tmp = (float)foo(2.0,1.0);
8     unsigned i;
9     short junk[64];
10
11     for (i=0; i<10; i++, arg++) {
12         bar(&tmp, arg);
13     }
14 }