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
8f54d2ff
Commit
8f54d2ff
authored
Jul 24, 2001
by
Jan Hubicka
Committed by
Jan Hubicka
Jul 24, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* flow.c (delete_noop_moves): Do not confuse libcall regions.
From-SVN: r44290
parent
016c22b5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ChangeLog
+4
-0
gcc/flow.c
+5
-3
No files found.
gcc/ChangeLog
View file @
8f54d2ff
Tue Jul 24 10:49:40 CEST 2001 Jan Hubicka <jh@suse.cz>
* flow.c (delete_noop_moves): Do not confuse libcall regions.
2001-07-23 Richard Henderson <rth@redhat.com>
2001-07-23 Richard Henderson <rth@redhat.com>
* flow.c (try_simplify_condjump): Use tidy_fallthru_edge.
* flow.c (try_simplify_condjump): Use tidy_fallthru_edge.
...
...
gcc/flow.c
View file @
8f54d2ff
...
@@ -4327,9 +4327,11 @@ delete_noop_moves (f)
...
@@ -4327,9 +4327,11 @@ delete_noop_moves (f)
next
=
NEXT_INSN
(
insn
);
next
=
NEXT_INSN
(
insn
);
if
(
INSN_P
(
insn
)
&&
noop_move_p
(
insn
))
if
(
INSN_P
(
insn
)
&&
noop_move_p
(
insn
))
{
{
if
(
insn
==
bb
->
end
)
/* Do not call flow_delete_insn here to not confuse backward
bb
->
end
=
PREV_INSN
(
insn
);
pointers of LIBCALL block. */
flow_delete_insn
(
insn
);
PUT_CODE
(
insn
,
NOTE
);
NOTE_LINE_NUMBER
(
insn
)
=
NOTE_INSN_DELETED
;
NOTE_SOURCE_FILE
(
insn
)
=
0
;
}
}
}
}
}
}
...
...
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