Skip to content
Snippets Groups Projects
Commit 33107839 authored by tkoenig's avatar tkoenig
Browse files

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.



git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120800 138bc75d-0d04-0410-961f-82ee72b054a4
parent eb030b26
No related merge requests found
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
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment