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
80a08664
Commit
80a08664
authored
Jan 30, 2004
by
Steven Bosscher
Committed by
Steven Bosscher
Jan 30, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* toplev.c: Fix broken checkin of 2003-12-30, again.
From-SVN: r76948
parent
690495b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
9 deletions
+15
-9
gcc/ChangeLog
+8
-0
gcc/toplev.c
+7
-9
No files found.
gcc/ChangeLog
View file @
80a08664
2004-01-30 Steven Bosscher <s.bosscher@student.tudelft.nl>
* toplev.c: Fix broken checkin of 2003-12-30, again.
2004-01-30 Ulrich Weigand <uweigand@de.ibm.com>
2004-01-30 Ulrich Weigand <uweigand@de.ibm.com>
* configure.ac (gcc_cv_as_dwarf2_debug_line): Enable test for
* configure.ac (gcc_cv_as_dwarf2_debug_line): Enable test for
...
@@ -3207,6 +3211,10 @@
...
@@ -3207,6 +3211,10 @@
* toplev.c (output_file_directive): Don't use
* toplev.c (output_file_directive): Don't use
ASM_OUTPUT_MAIN_SOURCE_FILENAME.
ASM_OUTPUT_MAIN_SOURCE_FILENAME.
2004-01-05 Steven Bosscher <s.bosscher@student.tudelft.nl>
* toplev.c: Fix broken checkin of 2003-12-30.
2004-01-05 Daniel Berlin <dberlin@dberlin.org>
2004-01-05 Daniel Berlin <dberlin@dberlin.org>
* ggc-zone.c: Remove everything in #ifdef USING_MALLOC_PAGE_GROUPS
* ggc-zone.c: Remove everything in #ifdef USING_MALLOC_PAGE_GROUPS
...
...
gcc/toplev.c
View file @
80a08664
...
@@ -3316,6 +3316,9 @@ rest_of_compilation (tree decl)
...
@@ -3316,6 +3316,9 @@ rest_of_compilation (tree decl)
if
(
flag_loop_optimize
)
if
(
flag_loop_optimize
)
rest_of_handle_loop_optimize
(
decl
,
insns
);
rest_of_handle_loop_optimize
(
decl
,
insns
);
if
(
flag_gcse
)
rest_of_handle_jump_bypass
(
decl
,
insns
);
}
}
timevar_push
(
TV_FLOW
);
timevar_push
(
TV_FLOW
);
...
@@ -3343,16 +3346,11 @@ rest_of_compilation (tree decl)
...
@@ -3343,16 +3346,11 @@ rest_of_compilation (tree decl)
if
(
flag_tracer
)
if
(
flag_tracer
)
rest_of_handle_tracer
(
decl
,
insns
);
rest_of_handle_tracer
(
decl
,
insns
);
if
(
optimize
>
0
)
if
(
optimize
>
0
{
&&
(
flag_unswitch_loops
if
(
flag_unswitch_loops
||
flag_peel_loops
||
flag_peel_loops
||
flag_unroll_loops
)
||
flag_unroll_loops
))
rest_of_handle_loop2
(
decl
,
insns
);
rest_of_handle_loop2
(
decl
,
insns
);
if
(
flag_gcse
)
rest_of_handle_jump_bypass
(
decl
,
insns
);
}
if
(
flag_web
)
if
(
flag_web
)
rest_of_handle_web
(
decl
,
insns
);
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