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: r51337
This commit is contained in:
Richard Henderson 2002-03-25 12:55:20 -08:00 committed by Richard Henderson
parent 15e5ad7698
commit 8018b36d0b
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 Zack Weinberg <zack@codesourcery.com>
* gcc.dg/c90-hexfloat-1.c: Adjust error regexps.

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; }