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
4c11675d
Commit
4c11675d
authored
May 20, 2002
by
Dale Johannesen
Committed by
Dale Johannesen
May 20, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Back out my previous patch; causes bootstrap problem for Ada (86 Linux)
From-SVN: r53671
parent
6a4d6760
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
8 deletions
+10
-8
gcc/ChangeLog
+4
-0
gcc/combine.c
+6
-8
No files found.
gcc/ChangeLog
View file @
4c11675d
2002-05-20 Dale Johannesen <dalej@apple.com>
* combine.c (cant_combine_insn_p): Back out my
previous patch.
2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
* params.c: Fix formatting.
...
...
gcc/combine.c
View file @
4c11675d
...
...
@@ -1460,10 +1460,10 @@ cant_combine_insn_p (insn)
if
(
!
INSN_P
(
insn
))
return
1
;
/* Never combine loads and stores involving hard regs
that are likely
to be spilled. The register allocator can usually handle such
reg-reg moves by tying. If we allow the combiner to make
substitutions of likely-spilled regs, we may abort in reload
.
/* Never combine loads and stores involving hard regs
. The register
allocator can usually handle such reg-reg moves by tying. If we allow
the combiner to make substitutions of hard regs, we risk aborting in
reload on machines that have SMALL_REGISTER_CLASSES
.
As an exception, we allow combinations involving fixed regs; these are
not available to the register allocator so there's no risk involved. */
...
...
@@ -1478,11 +1478,9 @@ cant_combine_insn_p (insn)
dest
=
SUBREG_REG
(
dest
);
if
(
REG_P
(
src
)
&&
REG_P
(
dest
)
&&
((
REGNO
(
src
)
<
FIRST_PSEUDO_REGISTER
&&
!
fixed_regs
[
REGNO
(
src
)]
&&
CLASS_LIKELY_SPILLED_P
(
REGNO_REG_CLASS
(
REGNO
(
src
))))
&&
!
fixed_regs
[
REGNO
(
src
)])
||
(
REGNO
(
dest
)
<
FIRST_PSEUDO_REGISTER
&&
!
fixed_regs
[
REGNO
(
dest
)]
&&
CLASS_LIKELY_SPILLED_P
(
REGNO_REG_CLASS
(
REGNO
(
dest
))))))
&&
!
fixed_regs
[
REGNO
(
dest
)])))
return
1
;
return
0
;
...
...
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