* gfortran/fortran.torture/execute/character_passing.f90:
Fix types for LSAME.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102925
138bc75d-0d04-0410-961f-
82ee72b054a4
+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