]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* g++.old-deja/g++.ext/attrib5.C: Move the alias after the referent.
authorRichard Henderson <rth@redhat.com>
Mon, 3 Jan 2005 20:19:47 +0000 (12:19 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Mon, 3 Jan 2005 20:19:47 +0000 (12:19 -0800)
From-SVN: r92863

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.ext/attrib5.C

index 56e4aed962d7f9553072a701f66641ab62d72abb..058df899faf39d54290b033ac14b55daedb4e133 100644 (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>
 
        * gcc.dg/vect/vect.exp: Enable for ia64.
index 545f12803b0e32f0b1161a4a0678dcb528bbe6d9..2a7e145856c9d1daa7e7d326f05ee2796b5b6107 100644 (file)
@@ -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 ()