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
7762d54e
Commit
7762d54e
authored
Nov 29, 1999
by
Bernd Schmidt
Committed by
Bernd Schmidt
Nov 29, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing return types
From-SVN: r30705
parent
c5984b7b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
gcc/ChangeLog
+6
-0
gcc/fold-const.c
+3
-0
No files found.
gcc/ChangeLog
View file @
7762d54e
1999
-
11
-
29
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
fold
-
const
.
c
[
TARGET_FLOAT_FORMAT
!=
IEEE_FLOAT_FORMAT
]
(
target_isinf
,
target_isnan
,
target_negative
)
:
Add
return
types
to
function
definitions
.
1999
-
11
-
29
Bruce
Korb
<
autogen
@linuxbox
.
com
>
1999
-
11
-
29
Bruce
Korb
<
autogen
@linuxbox
.
com
>
*
fixinc
/
fixincl
.
c
(
process
)
:
don
'
t
skip
GLIBC
files
any
more
.
*
fixinc
/
fixincl
.
c
(
process
)
:
don
'
t
skip
GLIBC
files
any
more
.
...
...
gcc/fold-const.c
View file @
7762d54e
...
@@ -858,6 +858,7 @@ target_negative (x)
...
@@ -858,6 +858,7 @@ target_negative (x)
/* Let's assume other float formats don't have infinity.
/* Let's assume other float formats don't have infinity.
(This can be overridden by redefining REAL_VALUE_ISINF.) */
(This can be overridden by redefining REAL_VALUE_ISINF.) */
int
target_isinf
(
x
)
target_isinf
(
x
)
REAL_VALUE_TYPE
x
;
REAL_VALUE_TYPE
x
;
{
{
...
@@ -867,6 +868,7 @@ target_isinf (x)
...
@@ -867,6 +868,7 @@ target_isinf (x)
/* Let's assume other float formats don't have NaNs.
/* Let's assume other float formats don't have NaNs.
(This can be overridden by redefining REAL_VALUE_ISNAN.) */
(This can be overridden by redefining REAL_VALUE_ISNAN.) */
int
target_isnan
(
x
)
target_isnan
(
x
)
REAL_VALUE_TYPE
x
;
REAL_VALUE_TYPE
x
;
{
{
...
@@ -876,6 +878,7 @@ target_isnan (x)
...
@@ -876,6 +878,7 @@ target_isnan (x)
/* Let's assume other float formats don't have minus zero.
/* Let's assume other float formats don't have minus zero.
(This can be overridden by redefining REAL_VALUE_NEGATIVE.) */
(This can be overridden by redefining REAL_VALUE_NEGATIVE.) */
int
target_negative
(
x
)
target_negative
(
x
)
REAL_VALUE_TYPE
x
;
REAL_VALUE_TYPE
x
;
{
{
...
...
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