1 /* Test typeof with __asm redirection. */
2 /* { dg-do compile } */
3 /* { dg-options "-O2" } */
6 extern int foo1
__asm ("bar1");
10 extern int foo2 (int) __asm ("bar2");
17 extern __typeof (foo3
) foo3
__asm ("bar3");
20 extern int foo4 (int);
21 extern __typeof (foo4
) foo4
__asm ("bar4");
27 // { dg-final { scan-assembler-not "foo" } }