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
0a9aeefd
Commit
0a9aeefd
authored
Sep 04, 2004
by
Jan Hubicka
Committed by
Jan Hubicka
Sep 04, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* passes.c (rest_of_clean_state): Decompose the instruction stream.
From-SVN: r87080
parent
273a2526
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
gcc/ChangeLog
+4
-0
gcc/passes.c
+12
-0
No files found.
gcc/ChangeLog
View file @
0a9aeefd
2004
-
09
-
04
Jan
Hubicka
<
jh
@
suse
.
cz
>
*
passes
.
c
(
rest_of_clean_state
):
Decompose
the
instruction
stream
.
2004
-
09
-
04
Richard
Sandiford
<
rsandifo
@
redhat
.
com
>
*
doc
/
md
.
texi
(
shift
patterns
):
New
anchor
.
Add
reference
to
...
...
gcc/passes.c
View file @
0a9aeefd
...
...
@@ -1634,6 +1634,18 @@ static void
rest_of_clean_state
(
void
)
{
coverage_end_function
();
rtx
insn
,
next
;
/* It is very important to decompose the RTL instruction chain here:
debug information keeps pointing into CODE_LABEL insns inside the function
body. If these remain pointing to the other insns, we end up preserving
whole RTL chain and attached detailed debug info in memory. */
for
(
insn
=
get_insns
();
insn
;
insn
=
next
)
{
next
=
NEXT_INSN
(
insn
);
NEXT_INSN
(
insn
)
=
NULL
;
PREV_INSN
(
insn
)
=
NULL
;
}
/* In case the function was not output,
don't leave any temporary anonymous types
...
...
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