OSDN Git Service

Target Hook to issue diagnostics for AltiVec argument to funtion
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20011018-1.c
1 /* { dg-do compile { target alpha*-*-* } } */
2 /* { dg-options "-O2 -mieee" } */
3
4 double foo (void);
5 void bar (float, float);
6
7 void test (void)
8 {
9   float f, g;
10
11   f = foo();
12   g = foo();
13   asm ("");
14   bar (f, g);
15 }