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
7cae778a
Commit
7cae778a
authored
Dec 13, 1996
by
Stan Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(override_options): Set default for -mcpu to PROCESSOR_DEFAULT_STRING.
From-SVN: r13308
parent
aff48e32
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
gcc/config/i386/i386.c
+5
-3
No files found.
gcc/config/i386/i386.c
View file @
7cae778a
...
@@ -216,10 +216,13 @@ override_options ()
...
@@ -216,10 +216,13 @@ override_options ()
}
}
}
}
/* Get the architectural level. */
if
(
ix86_arch_string
==
(
char
*
)
0
)
if
(
ix86_arch_string
==
(
char
*
)
0
)
{
ix86_arch_string
=
PROCESSOR_PENTIUM_STRING
;
ix86_arch_string
=
PROCESSOR_PENTIUM_STRING
;
if
(
ix86_cpu_string
==
(
char
*
)
0
)
ix86_cpu_string
=
PROCESSOR_DEFAULT_STRING
;
}
for
(
i
=
0
;
i
<
ptt_size
;
i
++
)
for
(
i
=
0
;
i
<
ptt_size
;
i
++
)
if
(
!
strcmp
(
ix86_arch_string
,
processor_target_table
[
i
].
name
))
if
(
!
strcmp
(
ix86_arch_string
,
processor_target_table
[
i
].
name
))
{
{
...
@@ -257,7 +260,6 @@ override_options ()
...
@@ -257,7 +260,6 @@ override_options ()
ix86_cpu_string
=
PROCESSOR_DEFAULT_STRING
;
ix86_cpu_string
=
PROCESSOR_DEFAULT_STRING
;
ix86_cpu
=
PROCESSOR_DEFAULT
;
ix86_cpu
=
PROCESSOR_DEFAULT
;
}
}
/* Validate -mregparm= value */
/* Validate -mregparm= value */
if
(
i386_regparm_string
)
if
(
i386_regparm_string
)
{
{
...
...
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