]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/asm-fs-1.c
Package description and copyright added.
[pkg-cerco/acc.git] / tests / GCCTestSuite / 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 "-w -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 "\\*_bar" } } */
14 /* { dg-final { scan-assembler-not "\\*_baz" } } */