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
85a59cea
Commit
85a59cea
authored
Oct 28, 2004
by
Diego Novillo
Committed by
Diego Novillo
Oct 28, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* opts.c (decode_options): Don't run PRE at -Os.
From-SVN: r89770
parent
283dd633
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+4
-0
gcc/opts.c
+3
-1
No files found.
gcc/ChangeLog
View file @
85a59cea
2004
-
10
-
28
Diego
Novillo
<
dnovillo
@
redhat
.
com
>
*
opts
.
c
(
decode_options
):
Don
't run PRE at -Os.
2004-10-28 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.md (movqicc_internal): Allow exactly one
...
...
gcc/opts.c
View file @
85a59cea
...
...
@@ -497,7 +497,6 @@ decode_options (unsigned int argc, const char **argv)
flag_tree_dce
=
1
;
flag_tree_dom
=
1
;
flag_tree_dse
=
1
;
flag_tree_pre
=
1
;
flag_tree_ter
=
1
;
flag_tree_live_range_split
=
1
;
flag_tree_sra
=
1
;
...
...
@@ -511,6 +510,9 @@ decode_options (unsigned int argc, const char **argv)
the condition is satisfied in the first iteration and therefore
to eliminate it. Jump threading handles these cases now. */
flag_tree_ch
=
1
;
/* PRE tends to generate bigger code. */
flag_tree_pre
=
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