re PR fortran/30681 ("obsolescent" vs. "obsolete")

2007-02-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR fortran/30681
	* gfortran.dg/pr17229.f: Change "Obsolete" to "Obsolescent".

From-SVN: r122125
This commit is contained in:
Jerry DeLisle 2007-02-19 06:52:18 +00:00
parent bb6a1e6dcf
commit 312f2e97a4
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2007-02-18 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/30681
* gfortran.dg/pr17229.f: Change "Obsolete" to "Obsolescent".
2007-02-18 Roger Sayle <roger@eyesopen.com>
PR rtl-optimization/28173

View File

@ -5,18 +5,18 @@
l = .false.
i = -1
if (l) if (i) 999,999,999 ! { dg-warning "Obsolete: arithmetic IF statement" }
if (l) if (i) 999,999,999 ! { dg-warning "Obsolescent: arithmetic IF statement" }
l = .true.
if (l) if (i) 10,999,999 ! { dg-warning "Obsolete: arithmetic IF statement" }
if (l) if (i) 10,999,999 ! { dg-warning "Obsolescent: arithmetic IF statement" }
go to 999
10 i = 0
if (l) if (i) 999,20,999 ! { dg-warning "Obsolete: arithmetic IF statement" }
if (l) if (i) 999,20,999 ! { dg-warning "Obsolescent: arithmetic IF statement" }
go to 999
20 i = 1
if (l) if (i) 999,999,30 ! { dg-warning "Obsolete: arithmetic IF statement" }
if (l) if (i) 999,999,30 ! { dg-warning "Obsolescent: arithmetic IF statement" }
go to 999
999 call abort