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
16b6e120
Commit
16b6e120
authored
Dec 16, 1998
by
Nick Clifton
Committed by
Nick Clifton
Dec 16, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ensure that last optimisation level set overrides any previous levels.
From-SVN: r24347
parent
f868ca8f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
6 deletions
+17
-6
gcc/ChangeLog
+6
-0
gcc/toplev.c
+11
-6
No files found.
gcc/ChangeLog
View file @
16b6e120
Wed
Dec
16
17
:
30
:
35
1998
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
toplev
.
c
(
main
)
:
Disable
optimize_size
if
a
specific
optimization
level
is
requested
.
Always
set
optimization
level
to
2
if
-
Os
is
specified
.
Wed
Dec
16
16
:
33
:
04
1998
Dave
Brolley
<
brolley
@cygnus
.
com
>
*
objc
/
lang
-
specs
.
h
:
Pass
-
MD
,
-
MMD
and
-
MG
to
cc1obj
if
configured
with
...
...
gcc/toplev.c
View file @
16b6e120
...
...
@@ -4556,6 +4556,7 @@ main (argc, argv)
if
(
!
strcmp
(
argv
[
i
],
"-O"
))
{
optimize
=
1
;
optimize_size
=
0
;
}
else
if
(
argv
[
i
][
0
]
==
'-'
&&
argv
[
i
][
1
]
==
'O'
)
{
...
...
@@ -4564,22 +4565,26 @@ main (argc, argv)
int
c
;
if
((
p
[
0
]
==
's'
)
&&
(
p
[
1
]
==
0
))
optimize_size
=
1
;
{
optimize_size
=
1
;
/* Optimizing for size forces optimize to be 2. */
optimize
=
2
;
}
else
{
while
((
c
=
*
p
++
))
if
(
!
(
c
>=
'0'
&&
c
<=
'9'
))
break
;
if
(
c
==
0
)
optimize
=
atoi
(
&
argv
[
i
][
2
]);
{
optimize
=
atoi
(
&
argv
[
i
][
2
]);
optimize_size
=
0
;
}
}
}
}
/* Optimizing for size forces optimize to be no less than 2. */
if
(
optimize_size
&&
(
optimize
<
2
))
optimize
=
2
;
obey_regdecls
=
(
optimize
==
0
);
if
(
optimize
>=
1
)
...
...
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