Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
e75abdab
Commit
e75abdab
authored
Jul 23, 2002
by
Tom Tromey
Committed by
Tom Tromey
Jul 23, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lex.c (java_lex): Check for `e' or `E' after 0.
From-SVN: r55664
parent
9cc37f69
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/java/ChangeLog
+4
-0
gcc/java/lex.c
+3
-2
No files found.
gcc/java/ChangeLog
View file @
e75abdab
2002-07-22 Tom Tromey <tromey@redhat.com>
* lex.c (java_lex): Check for `e' or `E' after 0.
2002-07-21 Richard Henderson <rth@redhat.com>
* lang.c (java_unsafe_for_reeval): New.
...
...
gcc/java/lex.c
View file @
e75abdab
...
...
@@ -1023,9 +1023,10 @@ java_lex (java_lval)
}
else
if
(
JAVA_ASCII_DIGIT
(
c
))
radix
=
8
;
else
if
(
c
==
'.'
)
else
if
(
c
==
'.'
||
c
==
'e'
||
c
==
'E'
)
{
/* Push the '.' back and prepare for a FP parsing... */
/* Push the '.', 'e', or 'E' back and prepare for a FP
parsing... */
java_unget_unicode
();
c
=
'0'
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment