* gfortran.dg/bind_c_module.f90: Adjust expected error messages.
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>
Mon, 19 May 2008 14:01:40 +0000 (14:01 +0000)
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>
Mon, 19 May 2008 14:01:40 +0000 (14:01 +0000)
From-SVN: r135530

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/bind_c_module.f90

index 7953aa7..aed54cb 100644 (file)
@@ -1,5 +1,9 @@
 2008-05-19  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
 
+       * gfortran.dg/bind_c_module.f90: Adjust expected error messages.
+
+2008-05-19  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
        * gfortran.dg/char_cast_1.f90: Adjust count in scanning the tree
        dump file.
 
index 58aba2b..a17f5d0 100644 (file)
@@ -10,13 +10,13 @@ module b
   use iso_c_binding
   use a
   implicit none
-  bind(c) :: a  ! { dg-error "attribute applied to" }
+  bind(c) :: a  ! { dg-error "applied to" }
 end module b
 
 ! Causes ICE
 module d
   use a
   implicit none
-  bind(c) :: a  ! { dg-error "attribute applied to" }
+  bind(c) :: a  ! { dg-error "applied to" }
 end module d
 ! { dg-final { cleanup-modules "a" } }