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
ea3fa5f7
Commit
ea3fa5f7
authored
Apr 07, 1992
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r708
parent
0be8e859
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
gcc/config/sparc/sparc.h
+9
-0
gcc/sched.c
+3
-4
No files found.
gcc/config/sparc/sparc.h
View file @
ea3fa5f7
...
...
@@ -1378,6 +1378,15 @@ extern struct rtx_def *legitimize_pic_address ();
"%f16", "%f17", "%f18", "%f19", "%f20", "%f21", "%f22", "%f23", \
"%f24", "%f25", "%f26", "%f27", "%f28", "%f29", "%f30", "%f31"}
/* Define additional names for use in asm clobbers and asm declarations.
We define the fake Condition Code register as an alias for reg 0 (which
is our `condition code' register), so that condition codes can easily
be clobbered by an asm. No such register actually exists. Condition
codes are partly stored in the PSR and partly in the FSR. */
#define ADDITIONAL_REGISTER_NAMES {"ccr", 0}
/* How to renumber registers for dbx and gdb. */
#define DBX_REGISTER_NUMBER(REGNO) (REGNO)
...
...
gcc/sched.c
View file @
ea3fa5f7
...
...
@@ -1217,10 +1217,9 @@ sched_analyze_2 (x, insn)
rtx
link
;
/* User of CC0 depends on immediately preceding insn.
All notes are removed from the list of insns to schedule before we
reach here, so the previous insn must be the setter of cc0. */
if
(
GET_CODE
(
PREV_INSN
(
insn
))
!=
INSN
)
abort
();
There may be a note before this insn now, but all notes will
be removed before we actually try to schedule the insns, so
it doesn't matter. */
SCHED_GROUP_P
(
insn
)
=
1
;
/* Make a copy of all dependencies on PREV_INSN, and add to this insn.
...
...
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