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
574531f2
Commit
574531f2
authored
Dec 02, 1999
by
Nick Clifton
Committed by
Nick Clifton
Dec 02, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove compile time warnings about uninitilaised fileds
From-SVN: r30757
parent
94f9afc2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
gcc/ChangeLog
+3
-0
gcc/config/fp-bit.c
+2
-2
No files found.
gcc/ChangeLog
View file @
574531f2
1999
-
12
-
02
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
config
/
fp
-
bit
.
c
:
Initialise
all
fields
of
the
NAN
constants
.
*
c
-
lex
.
c
(
check_newline
)
:
Pass
pragma_getc
and
pragma_ungetc
to
HANDLE_PRAGMA
.
...
...
gcc/config/fp-bit.c
View file @
574531f2
...
...
@@ -395,9 +395,9 @@ FLO_union_type;
#else
#if defined L_thenan_sf
const
fp_number_type
__thenan_sf
=
{
CLASS_SNAN
};
const
fp_number_type
__thenan_sf
=
{
CLASS_SNAN
,
0
,
0
,
(
fractype
)
0
};
#elif defined L_thenan_df
const
fp_number_type
__thenan_df
=
{
CLASS_SNAN
};
const
fp_number_type
__thenan_df
=
{
CLASS_SNAN
,
0
,
0
,
(
fractype
)
0
};
#elif defined FLOAT
extern
const
fp_number_type
__thenan_sf
;
#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