Commit 4e7842a0 by Tom Tromey Committed by Tom Tromey

lex.c (yylex): Recognize floating point constants with leading 0.

	* lex.c (yylex): Recognize floating point constants with leading
	0.

From-SVN: r37593
parent 21bc13c9
2000-11-20 Tom Tromey <tromey@cygnus.com>
* lex.c (yylex): Recognize floating point constants with leading
0.
2000-11-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2000-11-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* java-tree.h (cyclic_inheritance_report): Constify. * java-tree.h (cyclic_inheritance_report): Constify.
......
...@@ -1024,8 +1024,12 @@ java_lex (java_lval) ...@@ -1024,8 +1024,12 @@ java_lex (java_lval)
int seen_exponent = 0; int seen_exponent = 0;
int fflag = 0; /* 1 for {f,F}, 0 for {d,D}. FP literal are int fflag = 0; /* 1 for {f,F}, 0 for {d,D}. FP literal are
double unless specified. */ double unless specified. */
if (radix != 10)
/* It is ok if the radix is 8 because this just means we've
seen a leading `0'. However, radix==16 is invalid. */
if (radix == 16)
java_lex_error ("Can't express non-decimal FP literal", 0); java_lex_error ("Can't express non-decimal FP literal", 0);
radix = 10;
for (;;) for (;;)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment