20011119-1.c (xxx): New.

* gcc.c-torture/compile/20011119-1.c (xxx): New.
        * gcc.c-torture/compile/20011119-2.c (xxx): New.

From-SVN: r51335
This commit is contained in:
Richard Henderson 2002-03-25 12:50:44 -08:00 committed by Richard Henderson
parent 6b7aec015a
commit e7969749ce
3 changed files with 13 additions and 16 deletions

View File

@ -1,3 +1,8 @@
2002-03-25 Richard Henderson <rth@redhat.com>
* gcc.c-torture/compile/20011119-1.c (xxx): New.
* gcc.c-torture/compile/20011119-2.c (xxx): New.
2002-03-25 Bob Wilson <bob.wilson@acm.org>
* g++.old-deja/g++.jason/thunk3.C: Add xtensa-*-* to list of

View File

@ -1,5 +1,4 @@
extern inline int foo (void)
{
return 23;
}
extern inline int foo (void) { return 23; }
int xxx(void) __asm__("xxx");
int xxx(void) { return 23; }
extern int foo (void) __attribute__ ((weak, alias ("xxx")));

View File

@ -1,13 +1,6 @@
extern inline int foo (void)
{
return 23;
}
int bar (void)
{
return foo ();
}
extern inline int foo (void) { return 23; }
int bar (void) { return foo (); }
extern int foo (void) __attribute__ ((weak, alias ("xxx")));
int baz (void)
{
return foo ();
}
int baz (void) { return foo (); }
int xxx(void) __asm__("xxx");
int xxx(void) { return 23; }