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
8c4f5c09
Commit
8c4f5c09
authored
Jul 18, 1994
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(move_movables): Aviod lossage when CALL_INSN_FUNCTION_USAGE
is NULL. From-SVN: r7777
parent
98068ba2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
gcc/loop.c
+6
-4
No files found.
gcc/loop.c
View file @
8c4f5c09
...
...
@@ -1791,8 +1791,9 @@ move_movables (movables, threshold, insn_count, loop_start, end, nregs)
/* Because the USAGE information potentially
contains objects other than hard registers
we need to copy it. */
CALL_INSN_FUNCTION_USAGE
(
i1
)
=
copy_rtx
(
CALL_INSN_FUNCTION_USAGE
(
temp
));
if
(
CALL_INSN_FUNCTION_USAGE
(
temp
))
CALL_INSN_FUNCTION_USAGE
(
i1
)
=
copy_rtx
(
CALL_INSN_FUNCTION_USAGE
(
temp
));
}
else
i1
=
emit_insn_before
(
body
,
loop_start
);
...
...
@@ -1834,8 +1835,9 @@ move_movables (movables, threshold, insn_count, loop_start, end, nregs)
/* Because the USAGE information potentially
contains objects other than hard registers
we need to copy it. */
CALL_INSN_FUNCTION_USAGE
(
i1
)
=
copy_rtx
(
CALL_INSN_FUNCTION_USAGE
(
p
));
if
(
CALL_INSN_FUNCTION_USAGE
(
p
))
CALL_INSN_FUNCTION_USAGE
(
i1
)
=
copy_rtx
(
CALL_INSN_FUNCTION_USAGE
(
p
));
}
else
i1
=
emit_insn_before
(
PATTERN
(
p
),
loop_start
);
...
...
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