Commit 093e6632 by Ian Lance Taylor

Correct lexing of exponents.

From-SVN: r168129
parent 3868d6bf
......@@ -931,6 +931,25 @@ Lex::is_hex_digit(char c)
|| (c >= 'a' && c <= 'f'));
}
// Return whether an exponent could start at P.
bool
Lex::could_be_exponent(const char* p, const char* pend)
{
if (*p != 'e' && *p != 'E')
return false;
++p;
if (p >= pend)
return false;
if (*p == '+' || *p == '-')
{
++p;
if (p >= pend)
return false;
}
return *p >= '0' && *p <= '9';
}
// Pick up a number.
Token
......@@ -980,7 +999,7 @@ Lex::gather_number()
}
}
if (*p != '.' && *p != 'e' && *p != 'E' && *p != 'i')
if (*p != '.' && *p != 'i' && !Lex::could_be_exponent(p, pend))
{
std::string s(pnum, p - pnum);
mpz_t val;
......@@ -1004,7 +1023,7 @@ Lex::gather_number()
++p;
}
if (*p != '.' && *p != 'E' && *p != 'e' && *p != 'i')
if (*p != '.' && *p != 'i' && !Lex::could_be_exponent(p, pend))
{
std::string s(pnum, p - pnum);
mpz_t val;
......@@ -1039,7 +1058,7 @@ Lex::gather_number()
++p;
}
if (dot && (*p == 'E' || *p == 'e'))
if (dot && Lex::could_be_exponent(p, pend))
{
++p;
if (*p == '+' || *p == '-')
......
......@@ -379,6 +379,9 @@ class Lex
Token
gather_identifier();
static bool
could_be_exponent(const char*, const char*);
Token
gather_number();
......
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