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
f916eeb6
Commit
f916eeb6
authored
Sep 23, 1998
by
Nick Clifton
Committed by
Nick Clifton
Sep 23, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add comment provided by Jim Wilson.
From-SVN: r22560
parent
80db34d8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+4
-0
gcc/expmed.c
+4
-0
No files found.
gcc/ChangeLog
View file @
f916eeb6
Wed
Sep
23
16
:
22
:
01
1998
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
expmed
.
c
(
extract_bit_field
)
:
Add
comment
from
Jim
Wilson
.
Wed
Sep
23
13
:
26
:
02
1998
Richard
Henderson
<
rth
@cygnus
.
com
>
Wed
Sep
23
13
:
26
:
02
1998
Richard
Henderson
<
rth
@cygnus
.
com
>
*
alpha
.
c
(
get_aligned_mem
)
:
Revert
Sep
20
change
.
*
alpha
.
c
(
get_aligned_mem
)
:
Revert
Sep
20
change
.
...
...
gcc/expmed.c
View file @
f916eeb6
...
@@ -983,6 +983,10 @@ extract_bit_field (str_rtx, bitsize, bitnum, unsignedp,
...
@@ -983,6 +983,10 @@ extract_bit_field (str_rtx, bitsize, bitnum, unsignedp,
&&
((
bitsize
>=
BITS_PER_WORD
&&
bitsize
==
GET_MODE_BITSIZE
(
mode
)
&&
((
bitsize
>=
BITS_PER_WORD
&&
bitsize
==
GET_MODE_BITSIZE
(
mode
)
&&
bitpos
%
BITS_PER_WORD
==
0
)
&&
bitpos
%
BITS_PER_WORD
==
0
)
||
(
mode_for_size
(
bitsize
,
GET_MODE_CLASS
(
tmode
),
0
)
!=
BLKmode
||
(
mode_for_size
(
bitsize
,
GET_MODE_CLASS
(
tmode
),
0
)
!=
BLKmode
/* ??? The big endian test here is wrong. This is correct
if the value is in a register, and if mode_for_size is not
the same mode as op0. This causes us to get unnecessarily
inefficient code from the Thumb port when -mbig-endian. */
&&
(
BYTES_BIG_ENDIAN
&&
(
BYTES_BIG_ENDIAN
?
bitpos
+
bitsize
==
BITS_PER_WORD
?
bitpos
+
bitsize
==
BITS_PER_WORD
:
bitpos
==
0
))))
:
bitpos
==
0
))))
...
...
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