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
5fa7422b
Commit
5fa7422b
authored
May 06, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(fixup_var_refs_insns): Change from USE and CLOBBER insns to using
CALL_INSN_FUNCTION_USAGE. From-SVN: r7244
parent
0e6362d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
13 deletions
+1
-13
gcc/function.c
+1
-13
No files found.
gcc/function.c
View file @
5fa7422b
...
...
@@ -1449,19 +1449,7 @@ fixup_var_refs_insns (var, promoted_mode, unsignedp, insn, toplevel)
replacements
->
old
=
fixup_stack_1
(
replacements
->
old
,
insn
);
/* We can not separate USE insns from the CALL_INSN
that they belong to. If this is a CALL_INSN, insert
the move insn before the USE insns preceding it
instead of immediately before the insn. */
if
(
GET_CODE
(
insn
)
==
CALL_INSN
)
{
insert_before
=
insn
;
while
(
GET_CODE
(
PREV_INSN
(
insert_before
))
==
INSN
&&
GET_CODE
(
PATTERN
(
PREV_INSN
(
insert_before
)))
==
USE
)
insert_before
=
PREV_INSN
(
insert_before
);
}
else
insert_before
=
insn
;
insert_before
=
insn
;
/* If we are changing the mode, do a conversion.
This might be wasteful, but combine.c will
...
...
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