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
556a4cb2
Commit
556a4cb2
authored
Aug 25, 1994
by
Per Bothner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Always store into multi-word bitfields starting with low addresses.
From-SVN: r7985
parent
af3869c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
gcc/expmed.c
+2
-6
No files found.
gcc/expmed.c
View file @
556a4cb2
...
...
@@ -313,12 +313,8 @@ store_bit_field (str_rtx, bitsize, bitnum, fieldmode, value, align, total_size)
for
(
i
=
0
;
i
<
nwords
;
i
++
)
{
/* If I is 0, use the low-order word in both field and target;
if I is 1, use the next to lowest word; and so on. */
int
wordnum
=
(
WORDS_BIG_ENDIAN
?
nwords
-
i
-
1
:
i
);
int
bit_offset
=
(
WORDS_BIG_ENDIAN
?
MAX
(
bitsize
-
(
i
+
1
)
*
BITS_PER_WORD
,
0
)
:
i
*
BITS_PER_WORD
);
int
wordnum
=
i
;
int
bit_offset
=
i
*
BITS_PER_WORD
;
store_bit_field
(
op0
,
MIN
(
BITS_PER_WORD
,
bitsize
-
i
*
BITS_PER_WORD
),
bitnum
+
bit_offset
,
word_mode
,
...
...
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