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
6d101824
Commit
6d101824
authored
Dec 10, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(combinable_i3pat): Bring back to sync with can_combine_p.
From-SVN: r13274
parent
0d9b0e51
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
gcc/combine.c
+6
-2
No files found.
gcc/combine.c
View file @
6d101824
...
...
@@ -1143,13 +1143,17 @@ combinable_i3pat (i3, loc, i2dest, i1dest, i1_not_in_src, pi3dest_killed)
||
(
i1dest
&&
reg_overlap_mentioned_p
(
i1dest
,
inner_dest
))))
/* This is the same test done in can_combine_p except that we
allow a hard register with SMALL_REGISTER_CLASSES if SRC is a
CALL operation. */
CALL operation.
Moreover, we can't test all_adjacent; we don't have to, since
this instruction will stay in place, thus we are not considering
to increase the lifetime of INNER_DEST. */
||
(
GET_CODE
(
inner_dest
)
==
REG
&&
REGNO
(
inner_dest
)
<
FIRST_PSEUDO_REGISTER
&&
(
!
HARD_REGNO_MODE_OK
(
REGNO
(
inner_dest
),
GET_MODE
(
inner_dest
))
#ifdef SMALL_REGISTER_CLASSES
||
(
GET_CODE
(
src
)
!=
CALL
&&
!
REG_USERVAR_P
(
inner_dest
))
||
(
GET_CODE
(
src
)
!=
CALL
&&
!
REG_USERVAR_P
(
inner_dest
)
&&
FUNCTION_VALUE_REGNO_P
(
REGNO
(
inner_dest
)))
#endif
))
||
(
i1_not_in_src
&&
reg_overlap_mentioned_p
(
i1dest
,
src
)))
...
...
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