From 7d09e1e4e5da4b865becdf32c7810d467bbb3000 Mon Sep 17 00:00:00 2001 From: law <law@138bc75d-0d04-0410-961f-82ee72b054a4> Date: Sun, 31 Oct 1999 04:44:09 +0000 Subject: [PATCH] * lex.c (yylex): Accept 'f' in mantissa of hex float constant. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30285 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cp/ChangeLog | 4 ++++ gcc/cp/lex.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index f430d58ad3d9..ab55f8fa7a1f 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +Sat Oct 30 22:42:50 1999 Stephen L Moshier <moshier@mediaone.net> + + * lex.c (yylex): Accept 'f' in mantissa of hex float constant. + 1999-10-30 Mark Mitchell <mark@codesourcery.com> * decl.c (pop_cp_function_context): Don't call free on a NULL diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index b4d973ab6066..a672bd0b249f 100644 --- a/gcc/cp/lex.c +++ b/gcc/cp/lex.c @@ -3850,7 +3850,9 @@ real_yylex () || (ISALNUM (c) && c != 'l' && c != 'L' && c != 'u' && c != 'U' && c != 'i' && c != 'I' && c != 'j' && c != 'J' - && (floatflag == NOT_FLOAT || ((c != 'f') && (c != 'F'))))) + && (floatflag == NOT_FLOAT + || ((base != 16) && (c != 'f') && (c != 'F')) + || base == 16))) { if (c == '.') { -- GitLab