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
816bc01f
Commit
816bc01f
authored
Jan 05, 2004
by
Steven Bosscher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
I am a moron.
From-SVN: r75421
parent
a6008bd8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
gcc/toplev.c
+10
-10
No files found.
gcc/toplev.c
View file @
816bc01f
...
...
@@ -3015,9 +3015,8 @@ rest_of_handle_loop_optimize (tree decl, rtx insns)
sooner, but we want the profile feedback to work more
efficiently. */
static
void
rest_of_handle_loop2
(
tree
decl
ATTRIBUTE_UNUSED
,
rtx
insns
ATTRIBUTE_UNUSED
)
rest_of_handle_loop2
(
tree
decl
,
rtx
insns
)
{
#if 0
struct
loops
*
loops
;
timevar_push
(
TV_LOOP
);
open_dump_file
(
DFI_loop2
,
decl
);
...
...
@@ -3049,7 +3048,6 @@ rest_of_handle_loop2 (tree decl ATTRIBUTE_UNUSED, rtx insns ATTRIBUTE_UNUSED)
close_dump_file
(
DFI_loop2
,
print_rtl_with_bb
,
get_insns
());
timevar_pop
(
TV_LOOP
);
ggc_collect
();
#endif
}
/* This is called from finish_function (within langhooks.parse_file)
...
...
@@ -3281,9 +3279,6 @@ rest_of_compilation (tree decl)
if
(
flag_loop_optimize
)
rest_of_handle_loop_optimize
(
decl
,
insns
);
if
(
flag_gcse
)
rest_of_handle_jump_bypass
(
decl
,
insns
);
}
timevar_push
(
TV_FLOW
);
...
...
@@ -3311,11 +3306,16 @@ rest_of_compilation (tree decl)
if
(
flag_tracer
)
rest_of_handle_tracer
(
decl
,
insns
);
if
(
optimize
>
0
&&
(
flag_unswitch_loops
if
(
optimize
>
0
)
{
if
(
flag_unswitch_loops
||
flag_peel_loops
||
flag_unroll_loops
))
rest_of_handle_loop2
(
decl
,
insns
);
||
flag_unroll_loops
)
rest_of_handle_loop2
(
decl
,
insns
);
if
(
flag_gcse
)
rest_of_handle_jump_bypass
(
decl
,
insns
);
}
if
(
flag_web
)
rest_of_handle_web
(
decl
,
insns
);
...
...
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