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
5970d32e
Commit
5970d32e
authored
Nov 28, 1994
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(store_bit_field, extract_bit_field): Consistently use
SLOW_UNALIGNED_ACCESS instead of STRICT_ALIGNMENT. From-SVN: r8568
parent
94d681a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/expmed.c
+3
-3
No files found.
gcc/expmed.c
View file @
5970d32e
...
@@ -409,7 +409,7 @@ store_bit_field (str_rtx, bitsize, bitnum, fieldmode, value, align, total_size)
...
@@ -409,7 +409,7 @@ store_bit_field (str_rtx, bitsize, bitnum, fieldmode, value, align, total_size)
bestmode
=
GET_MODE
(
op0
);
bestmode
=
GET_MODE
(
op0
);
if
(
bestmode
==
VOIDmode
if
(
bestmode
==
VOIDmode
||
(
S
TRICT_ALIGNMENT
&&
GET_MODE_SIZE
(
bestmode
)
>
align
))
||
(
S
LOW_UNALIGNED_ACCESS
&&
GET_MODE_SIZE
(
bestmode
)
>
align
))
goto
insv_loses
;
goto
insv_loses
;
/* Adjust address to point to the containing unit of that mode. */
/* Adjust address to point to the containing unit of that mode. */
...
@@ -1012,7 +1012,7 @@ extract_bit_field (str_rtx, bitsize, bitnum, unsignedp,
...
@@ -1012,7 +1012,7 @@ extract_bit_field (str_rtx, bitsize, bitnum, unsignedp,
bestmode
=
GET_MODE
(
xop0
);
bestmode
=
GET_MODE
(
xop0
);
if
(
bestmode
==
VOIDmode
if
(
bestmode
==
VOIDmode
||
(
S
TRICT_ALIGNMENT
&&
GET_MODE_SIZE
(
bestmode
)
>
align
))
||
(
S
LOW_UNALIGNED_ACCESS
&&
GET_MODE_SIZE
(
bestmode
)
>
align
))
goto
extzv_loses
;
goto
extzv_loses
;
/* Compute offset as multiple of this unit,
/* Compute offset as multiple of this unit,
...
@@ -1148,7 +1148,7 @@ extract_bit_field (str_rtx, bitsize, bitnum, unsignedp,
...
@@ -1148,7 +1148,7 @@ extract_bit_field (str_rtx, bitsize, bitnum, unsignedp,
bestmode
=
GET_MODE
(
xop0
);
bestmode
=
GET_MODE
(
xop0
);
if
(
bestmode
==
VOIDmode
if
(
bestmode
==
VOIDmode
||
(
S
TRICT_ALIGNMENT
&&
GET_MODE_SIZE
(
bestmode
)
>
align
))
||
(
S
LOW_UNALIGNED_ACCESS
&&
GET_MODE_SIZE
(
bestmode
)
>
align
))
goto
extv_loses
;
goto
extv_loses
;
/* Compute offset as multiple of this unit,
/* Compute offset as multiple of this unit,
...
...
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