* g++.old-deja/g++.ext/attrib5.C: Move the alias after the referent.

From-SVN: r92863
This commit is contained in:
Richard Henderson 2005-01-03 12:19:47 -08:00 committed by Richard Henderson
parent f61134e88b
commit bf7df5992d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-01-03 Richard Henderson <rth@redhat.com>
* g++.old-deja/g++.ext/attrib5.C: Move the alias after the referent.
2005-01-03 Richard Henderson <rth@redhat.com> 2005-01-03 Richard Henderson <rth@redhat.com>
* gcc.dg/vect/vect.exp: Enable for ia64. * gcc.dg/vect/vect.exp: Enable for ia64.

View File

@ -4,8 +4,8 @@
// { dg-require-alias "" } // { dg-require-alias "" }
extern "C" { extern "C" {
void f () __attribute__((weak, alias ("_f")));
void _f () { } void _f () { }
void f () __attribute__((weak, alias ("_f")));
} }
int main () int main ()