From: Richard Henderson Date: Mon, 3 Jan 2005 20:19:47 +0000 (-0800) Subject: * g++.old-deja/g++.ext/attrib5.C: Move the alias after the referent. X-Git-Tag: releases/gcc-4.0.0~1796 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bf7df5992db2a4a27d7088f403ca014e1b4e7f27;p=thirdparty%2Fgcc.git * g++.old-deja/g++.ext/attrib5.C: Move the alias after the referent. From-SVN: r92863 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 56e4aed962d7..058df899faf3 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-01-03 Richard Henderson + + * g++.old-deja/g++.ext/attrib5.C: Move the alias after the referent. + 2005-01-03 Richard Henderson * gcc.dg/vect/vect.exp: Enable for ia64. diff --git a/gcc/testsuite/g++.old-deja/g++.ext/attrib5.C b/gcc/testsuite/g++.old-deja/g++.ext/attrib5.C index 545f12803b0e..2a7e145856c9 100644 --- a/gcc/testsuite/g++.old-deja/g++.ext/attrib5.C +++ b/gcc/testsuite/g++.old-deja/g++.ext/attrib5.C @@ -4,8 +4,8 @@ // { dg-require-alias "" } extern "C" { - void f () __attribute__((weak, alias ("_f"))); void _f () { } + void f () __attribute__((weak, alias ("_f"))); } int main ()