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
c8cfe1f6
Commit
c8cfe1f6
authored
Apr 11, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(add_to_delay_list): Clear any cached block information for INSN.
From-SVN: r4084
parent
cbcf989d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
gcc/reorg.c
+17
-2
No files found.
gcc/reorg.c
View file @
c8cfe1f6
...
...
@@ -879,9 +879,24 @@ add_to_delay_list (insn, delay_list)
rtx
insn
;
rtx
delay_list
;
{
/* If we have an empty list, just make a new list element. */
/* If we have an empty list, just make a new list element. If
INSN has it's block number recorded, clear it since we may
be moving the insn to a new block. */
if
(
delay_list
==
0
)
return
gen_rtx
(
INSN_LIST
,
VOIDmode
,
insn
,
NULL_RTX
);
{
struct
target_info
*
tinfo
;
for
(
tinfo
=
target_hash_table
[
INSN_UID
(
insn
)
%
TARGET_HASH_PRIME
];
tinfo
;
tinfo
=
tinfo
->
next
)
if
(
tinfo
->
uid
==
INSN_UID
(
insn
))
break
;
if
(
tinfo
)
tinfo
->
block
=
-
1
;
return
gen_rtx
(
INSN_LIST
,
VOIDmode
,
insn
,
NULL_RTX
);
}
/* Otherwise this must be an INSN_LIST. Add INSN to the end of the
list. */
...
...
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