* gcc.dg/asm-names.c (ymain): New.

From-SVN: r45205
This commit is contained in:
Aldy Hernandez 2001-08-27 19:23:11 +00:00 committed by Aldy Hernandez
parent e2dff3f2f6
commit 90d925d3b2
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-08-25 Aldy Hernandez <aldyh@redhat.com>
* gcc.dg/asm-names.c (ymain): New.
2001-08-22 Geoffrey Keating <geoffk@redhat.com>
* gcc.c-torture/compile/961203-1.x: Mark unsupported by stormy16.

View File

@ -21,3 +21,7 @@ main (void)
extern int xmain (void) asm ("main");
int xmain (void) { return main(); }
/* In case built where the runtime calls __main. */
extern int ymain (void) asm ("___main");
int ymain (void) { return main(); }