Correct lexing of exponents.

From-SVN: r168129
This commit is contained in:
Ian Lance Taylor 2010-12-21 18:51:45 +00:00
parent 3868d6bfa6
commit 093e663242
2 changed files with 25 additions and 3 deletions

View File

@ -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 == '-')

View File

@ -379,6 +379,9 @@ class Lex
Token
gather_identifier();
static bool
could_be_exponent(const char*, const char*);
Token
gather_number();