1/* { dg-do assemble { target i?86-*-* x86_64-*-* } } */
2/* { dg-skip-if "" { "*-*-darwin*" } { "*" } { "" } } */
3/* { dg-options "-std=c99 -x assembler-with-cpp" } */
4
5#ifndef __ASSEMBLER__
6extern int func(void);
7#else
8.global func
9.type func,%function
10.align 4
11func:
12        ret
13.size func,.-func
14#endif
15