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
88924698
Commit
88924698
authored
25 years ago
by
Nick Clifton
Committed by
Nick Clifton
25 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow machine dependent reorganisation pass to place information into the RTL
dump file if it so wishes. From-SVN: r28723
parent
6c26cda2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/ChangeLog
+6
-0
gcc/toplev.c
+4
-1
No files found.
gcc/ChangeLog
View file @
88924698
Fri
Aug
13
10
:
21
:
28
1999
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
toplev
.
c
(
rest_of_compilation
)
:
Allow
machine
dependent
reorganisation
pass
to
place
information
into
the
RTL
dump
file
if
it
so
wishes
.
Sun
Aug
15
12
:
41
:
21
1999
Jim
Wilson
<
wilson
@cygnus
.
com
>
*
explow
.
c
(
hard_function_value
)
:
Use
VOIDmode
instead
of
...
...
This diff is collapsed.
Click to expand it.
gcc/toplev.c
View file @
88924698
...
...
@@ -4321,11 +4321,14 @@ rest_of_compilation (decl)
/* If a machine dependent reorganization is needed, call it. */
#ifdef MACHINE_DEPENDENT_REORG
if
(
mach_dep_reorg_dump
)
open_dump_file
(
".mach"
,
decl_printable_name
(
decl
,
2
));
MACHINE_DEPENDENT_REORG
(
insns
);
if
(
mach_dep_reorg_dump
)
{
dump_rtl
(
".mach"
,
decl
,
print_rtl_with_bb
,
insns
);
close_dump_file
(
print_rtl_with_bb
,
insns
);
if
(
graph_dump_format
!=
no_graph
)
print_rtl_graph_with_bb
(
dump_base_name
,
".mach"
,
insns
);
}
...
...
This diff is collapsed.
Click to expand it.
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