OSDN Git Service

* g++.old-deja/g++.ext/attrib5.C: Move the alias after the referent.
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 3 Jan 2005 20:19:47 +0000 (20:19 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 3 Jan 2005 20:19:47 +0000 (20:19 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92863 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 56e4aed..058df89 100644 (file)
@@ -1,5 +1,9 @@
 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.
        * lib/target-supports.exp (check_effective_target_vect_int): Likewise.
        (check_effective_target_vect_float): Likewise.
index 545f128..2a7e145 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 ()