Oops, forgot to commit testcase.

From-SVN: r36825
This commit is contained in:
Hans-Peter Nilsson 2000-10-10 14:52:31 +00:00
parent 462561b741
commit e9fc4ea8d1
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
/* Origin: <hp@bitrange.com>
Make sure we do not get spurious '*' characters in section names or
elsewhere, with asm-specified names. */
/* { dg-do compile } */
/* { dg-options "-ffunction-sections -fdata-sections" } */
void foo (void) asm ("_bar");
void foo (void) {}
extern int foobar asm ("_baz");
int foobar = 3;
/* { dg-final { scan-assembler-not asm-fs-1.c "\\*_bar" } } */
/* { dg-final { scan-assembler-not asm-fs-1.c "\\*_baz" } } */