Skip to content
Snippets Groups Projects
Commit 31d1d680 authored by steven's avatar steven
Browse files

Commit for Victor Leikehman <lei@il.ibm.com>

	PR libgfortran/16704
	* io/read.c (read_radix): Understand letters f and F as hex digits.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85596 138bc75d-0d04-0410-961f-82ee72b054a4
parent b17e4230
No related merge requests found
2004-08-05 Victor Leikehman <lei@il.ibm.com>
PR libgfortran/16704
* io/read.c (read_radix): Understand letters f and F as hex digits.
2004-08-04 Victor Leikehman <lei@il.ibm.com>
* libgfortran.h (array_t, size0) New declarations.
......
......@@ -526,6 +526,7 @@ read_radix (fnode * f, char *dest, int length, int radix)
case 'c':
case 'd':
case 'e':
case 'f':
c = c - 'a' + '9' + 1;
break;
......@@ -534,6 +535,7 @@ read_radix (fnode * f, char *dest, int length, int radix)
case 'C':
case 'D':
case 'E':
case 'F':
c = c - 'A' + '9' + 1;
break;
......
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