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
e7373556
Commit
e7373556
authored
Feb 01, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(make_extraction): Don't make an extraction that has the potential of
crossing a boundary. From-SVN: r6462
parent
08d95f91
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
gcc/combine.c
+10
-0
No files found.
gcc/combine.c
View file @
e7373556
...
...
@@ -5120,6 +5120,16 @@ make_extraction (mode, inner, pos, pos_rtx, len,
&&
!
in_compare
&&
!
spans_byte
&&
unsignedp
)
return
0
;
/* Unless we are allowed to span bytes, reject this if we would be
spanning bytes or if the position is not a constant and the length
is not 1. In all other cases, we would only be going outside
out object in cases when an original shift would have been
undefined. */
if
(
!
spans_byte
&&
((
pos_rtx
==
0
&&
pos
+
len
>
GET_MODE_BITSIZE
(
is_mode
))
||
(
pos_rtx
!=
0
&&
len
!=
1
)))
return
0
;
/* Get the mode to use should INNER be a MEM, the mode for the position,
and the mode for the result. */
#ifdef HAVE_insv
...
...
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