string_0xfe_0xff_1.f90: Use char instead of achar for 0xff to avoid the "Extended ASCII not...

2007-01-15  Thomas Koenig  <Thomas.Koenig@online.de>

       * gfortran.dg/string_0xfe_0xff_1.f90:  Use char instead
       of achar for 0xff to avoid the "Extended ASCII not
       implemented" error message.

From-SVN: r120800
This commit is contained in:
Thomas Koenig 2007-01-15 17:39:28 +00:00 committed by Thomas Koenig
parent 226d4e9482
commit bc31cbf4a5
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2007-01-15 Thomas Koenig <Thomas.Koenig@online.de>
* gfortran.dg/string_0xfe_0xff_1.f90: Use char instead
of achar for 0xff to avoid the "Extended ASCII not
implemented" error message.
2007-01-15 Paul Thomas <pault@gcc.gnu.org>
PR fortran/28172

View File

@ -3,5 +3,5 @@
! as characters, of bytes 0xfe and 0xff.
program main
if (char (254) /= "þ") call abort
if (achar (255) /= "˙") call abort
if (char (255) /= "ÿ") call abort
end program main