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
0c8eb998
Commit
0c8eb998
authored
Aug 24, 2004
by
Richard Henderson
Committed by
Richard Henderson
Aug 24, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* trans-const.c (gfc_conv_mpz_to_tree): Fix 64-bit shift warning.
From-SVN: r86504
parent
9e995780
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
gcc/fortran/ChangeLog
+4
-0
gcc/fortran/trans-const.c
+6
-5
No files found.
gcc/fortran/ChangeLog
View file @
0c8eb998
2004-08-24 Richard Henderson <rth@redhat.com>
* trans-const.c (gfc_conv_mpz_to_tree): Fix 64-bit shift warning.
2004-08-24 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* resolve.c (merge_argument_lists): Revert unintentionally
...
...
gcc/fortran/trans-const.c
View file @
0c8eb998
...
...
@@ -187,21 +187,22 @@ gfc_conv_mpz_to_tree (mpz_t i, int kind)
else
if
(
sizeof
(
mp_limb_t
)
==
2
*
sizeof
(
HOST_WIDE_INT
))
{
mp_limb_t
limb0
=
mpz_getlimbn
(
i
,
0
);
int
coun
t
=
(
sizeof
(
mp_limb_t
)
-
sizeof
(
HOST_WIDE_INT
))
*
CHAR_BIT
;
int
shif
t
=
(
sizeof
(
mp_limb_t
)
-
sizeof
(
HOST_WIDE_INT
))
*
CHAR_BIT
;
low
=
limb0
;
high
=
limb0
>>
coun
t
;
high
=
limb0
>>
shif
t
;
}
else
if
(
sizeof
(
mp_limb_t
)
<
sizeof
(
HOST_WIDE_INT
))
{
int
shift
=
sizeof
(
mp_limb_t
)
*
CHAR_BIT
;
int
n
,
count
=
sizeof
(
HOST_WIDE_INT
)
/
sizeof
(
mp_limb_t
);
for
(
low
=
n
=
0
;
n
<
count
;
++
n
)
{
low
<<=
s
izeof
(
mp_limb_t
)
*
CHAR_BIT
;
low
<<=
s
hift
;
low
|=
mpz_getlimbn
(
i
,
n
);
}
for
(
high
=
0
;
n
<
2
*
count
;
++
n
)
for
(
high
=
0
,
n
=
count
;
n
<
2
*
count
;
++
n
)
{
high
<<=
s
izeof
(
mp_limb_t
)
*
CHAR_BIT
;
high
<<=
s
hift
;
high
|=
mpz_getlimbn
(
i
,
n
);
}
}
...
...
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