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
1f9dfb72
Commit
1f9dfb72
authored
Sep 23, 1992
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(fold_convert): Add missing cast to HOST_WIDE_INT.
From-SVN: r2218
parent
01ca1b91
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
gcc/fold-const.c
+1
-1
No files found.
gcc/fold-const.c
View file @
1f9dfb72
...
@@ -1520,7 +1520,7 @@ fold_convert (t, arg1)
...
@@ -1520,7 +1520,7 @@ fold_convert (t, arg1)
if
(
d
>=
(
REAL_VALUE_TYPE
)
half_word
*
half_word
/
2
)
if
(
d
>=
(
REAL_VALUE_TYPE
)
half_word
*
half_word
/
2
)
{
{
low
=
d
-
(
REAL_VALUE_TYPE
)
half_word
*
half_word
/
2
;
low
=
d
-
(
REAL_VALUE_TYPE
)
half_word
*
half_word
/
2
;
low
|=
1
<<
(
HOST_BITS_PER_WIDE_INT
-
1
);
low
|=
(
HOST_WIDE_INT
)
1
<<
(
HOST_BITS_PER_WIDE_INT
-
1
);
}
}
else
else
low
=
(
HOST_WIDE_INT
)
d
;
low
=
(
HOST_WIDE_INT
)
d
;
...
...
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