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
c0bd9b24
Commit
c0bd9b24
authored
Dec 17, 1995
by
Jeff Law
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pa.c (override_options): Make 7100 scheduling the default.
From-SVN: r10792
parent
0f05dcc2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
gcc/config/pa/pa.c
+9
-8
No files found.
gcc/config/pa/pa.c
View file @
c0bd9b24
...
...
@@ -75,19 +75,20 @@ int n_deferred_plabels = 0;
void
override_options
()
{
/* Default to 700 scheduling which is reasonable for older 800 processors
correct for the 700s, and not too bad for the 7100s and 7100LCs. */
/* Default to 7100 scheduling. If the 7100LC scheduling ever
gets reasonably tuned, it should be the default since that
what most PAs sold now are. */
if
(
pa_cpu_string
==
NULL
||
!
strcmp
(
pa_cpu_string
,
"700"
))
{
pa_cpu_string
=
"700"
;
pa_cpu
=
PROCESSOR_700
;
}
else
if
(
!
strcmp
(
pa_cpu_string
,
"7100"
))
||
!
strcmp
(
pa_cpu_string
,
"7100"
))
{
pa_cpu_string
=
"7100"
;
pa_cpu
=
PROCESSOR_7100
;
}
else
if
(
!
strcmp
(
pa_cpu_string
,
"700"
))
{
pa_cpu_string
=
"700"
;
pa_cpu
=
PROCESSOR_700
;
}
else
if
(
!
strcmp
(
pa_cpu_string
,
"7100LC"
))
{
pa_cpu_string
=
"7100LC"
;
...
...
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