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
c6a8e616
Commit
c6a8e616
authored
Jul 26, 2000
by
Rodney Brown
Committed by
Jeff Law
Jul 26, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* real.c (asctoeg): Rename `error' label to unexpected_char_error
From-SVN: r35271
parent
5d7a9c0a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
gcc/ChangeLog
+4
-0
gcc/real.c
+5
-5
No files found.
gcc/ChangeLog
View file @
c6a8e616
2000-07-27 Rodney Brown <RodneyBrown@pmsc.com>
* real.c (asctoeg): Rename `error' label to unexpected_char_error
2000-07-26 Nick Clifton <nickc@cygnus.com>
* config/arm/vxarm.h (CPP_PREDEFINES): Remove definition of
...
...
gcc/real.c
View file @
c6a8e616
...
...
@@ -5173,7 +5173,7 @@ asctoeg (ss, y, oprec)
&&
(
c
!=
'\0'
)
&&
(
c
!=
'\n'
)
&&
(
c
!=
'\r'
)
&&
(
c
!=
' '
)
&&
(
c
!=
','
))
goto
error
;
goto
unexpected_char_
error
;
--
sp
;
while
(
*
sp
==
'0'
)
*
sp
--
=
'z'
;
...
...
@@ -5243,18 +5243,18 @@ asctoeg (ss, y, oprec)
goto
expnt
;
case
'.'
:
/* decimal point */
if
(
decflg
)
goto
error
;
goto
unexpected_char_
error
;
++
decflg
;
break
;
case
'-'
:
nsign
=
0xffff
;
if
(
sgnflg
)
goto
error
;
goto
unexpected_char_
error
;
++
sgnflg
;
break
;
case
'+'
:
if
(
sgnflg
)
goto
error
;
goto
unexpected_char_
error
;
++
sgnflg
;
break
;
case
','
:
...
...
@@ -5267,7 +5267,7 @@ asctoeg (ss, y, oprec)
case
'I'
:
goto
infinite
;
default
:
error
:
unexpected_char_
error
:
#ifdef NANS
einan
(
yy
);
#else
...
...
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