* gcc.dg/asm-names.c (ymain): New.
authoraldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 27 Aug 2001 19:23:11 +0000 (19:23 +0000)
committeraldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 27 Aug 2001 19:23:11 +0000 (19:23 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45205 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/asm-names.c

index dddbe24..1bdaf96 100644 (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.
index f02f08f..dbfa792 100644 (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(); }