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
2b968770
Commit
2b968770
authored
Mar 30, 2000
by
Richard Kenner
Committed by
Richard Kenner
Mar 30, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expmed.c (store_fixed_bit_field): STRUCT_ALIGN is in bits.
From-SVN: r32830
parent
bdb429a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
gcc/ChangeLog
+2
-0
gcc/expmed.c
+2
-2
No files found.
gcc/ChangeLog
View file @
2b968770
Thu
Mar
30
06
:
32
:
51
2000
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
*
expmed
.
c
(
store_fixed_bit_field
)
:
STRUCT_ALIGN
is
in
bits
.
*
calls
.
c
(
expand_call
)
:
Pass
bit
alignment
to
mark_reg_pointer
.
*
explow
.
c
(
memory_address
,
allocate_dynamic_stack_space
)
:
Likewise
.
*
function
.
c
(
assign_parms
)
:
Likewise
.
...
...
gcc/expmed.c
View file @
2b968770
...
...
@@ -646,7 +646,7 @@ store_fixed_bit_field (op0, offset, bitsize, bitpos, value, struct_align)
int
all_one
=
0
;
if
(
!
SLOW_UNALIGNED_ACCESS
(
word_mode
,
struct_align
))
struct_align
=
BIGGEST_ALIGNMENT
/
BITS_PER_UNIT
;
struct_align
=
BIGGEST_ALIGNMENT
;
/* There is a case not handled here:
a structure with a known alignment of just a halfword
...
...
@@ -674,7 +674,7 @@ store_fixed_bit_field (op0, offset, bitsize, bitpos, value, struct_align)
a word, we won't be doing the extraction the normal way. */
mode
=
get_best_mode
(
bitsize
,
bitpos
+
offset
*
BITS_PER_UNIT
,
struct_align
*
BITS_PER_UNIT
,
word_mode
,
struct_align
,
word_mode
,
GET_CODE
(
op0
)
==
MEM
&&
MEM_VOLATILE_P
(
op0
));
if
(
mode
==
VOIDmode
)
...
...
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