2005-08-09 Thomas Koenig <Thomas.Koenig@online.de>
* gfortran/fortran.torture/execute/character_passing.f90:
Fix types for LSAME.
From-SVN: r102925
+2005-08-09 Thomas Koenig <Thomas.Koenig@online.de>
+
+ * gfortran/fortran.torture/execute/character_passing.f90:
+ Fix types for LSAME.
+
2005-08-09 Dorit Nuzman <dorit@il.ibm.com>
* gcc.dg/vect/vect-reduc-1char.c: Reverse last change - change
! the character agruments.
program foo
character*1 a1, a2, b
+ logical LSAME, x
a1='A'
a2='A'
b='B'
x = LSAME(a1,a2)
- if ( x.ne.1 ) then
+ if ( .not. x ) then
call abort ();
endif
end