diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2011-09-20 22:59:49 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2011-09-20 15:59:49 -0700 |
commit | bbc0f2aa16aa9039264f542012aeca249dc70b35 (patch) | |
tree | 263fcff667c080d24f439bc22d05b527848d89d3 | |
parent | 02a728277f44e65a12ff4d16304fe6b7d4f845d5 (diff) | |
download | gcc-bbc0f2aa16aa9039264f542012aeca249dc70b35.zip gcc-bbc0f2aa16aa9039264f542012aeca249dc70b35.tar.gz gcc-bbc0f2aa16aa9039264f542012aeca249dc70b35.tar.bz2 |
Replace "must be be" with "must be".
2011-09-20 H.J. Lu <hongjiu.lu@intel.com>
PR testsuite/50469
* gfortran.dg/storage_size_2.f08: Replace "must be be" with
"must be".
From-SVN: r179022
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/storage_size_2.f08 | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index fa9a80c..2a7803a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2011-09-20 H.J. Lu <hongjiu.lu@intel.com> + + PR testsuite/50469 + * gfortran.dg/storage_size_2.f08: Replace "must be be" with + "must be". + 2011-09-20 Jason Merrill <jason@redhat.com> * g++.dg/cpp0x/constexpr-generated1.C: New. diff --git a/gcc/testsuite/gfortran.dg/storage_size_2.f08 b/gcc/testsuite/gfortran.dg/storage_size_2.f08 index c18155e..82913c8 100644 --- a/gcc/testsuite/gfortran.dg/storage_size_2.f08 +++ b/gcc/testsuite/gfortran.dg/storage_size_2.f08 @@ -14,10 +14,10 @@ integer(4) :: i1 integer(c_int) :: i2 type(t) :: x -print *,c_sizeof(i1) ! { dg-error "must be be an interoperable data entity" } +print *,c_sizeof(i1) ! { dg-error "must be an interoperable data entity" } print *,c_sizeof(i2) print *,c_sizeof(x) -print *, c_sizeof(ran()) ! { dg-error "must be be an interoperable data entity" } +print *, c_sizeof(ran()) ! { dg-error "must be an interoperable data entity" } print *,storage_size(1.0,4) print *,storage_size(1.0,3.2) ! { dg-error "must be INTEGER" } |