OSDN Git Service

Oops, forgot to commit testcase.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / asm-fs-1.c
1 /* Origin: <hp@bitrange.com>
2    Make sure we do not get spurious '*' characters in section names or
3    elsewhere, with asm-specified names.  */
4 /* { dg-do compile } */
5 /* { dg-options "-ffunction-sections -fdata-sections" } */
6
7 void foo (void) asm ("_bar");
8 void foo (void) {}
9
10 extern int foobar asm ("_baz");
11 int foobar = 3;
12
13 /* { dg-final { scan-assembler-not asm-fs-1.c "\\*_bar" } } */
14 /* { dg-final { scan-assembler-not asm-fs-1.c "\\*_baz" } } */