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
a34a369b
Commit
a34a369b
authored
Apr 23, 1993
by
Doug Evans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(emit_reload_insns): Advance following_insn if it is a clobber,
not if the next insn is a clobber. From-SVN: r4198
parent
c9d28865
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
gcc/reload1.c
+5
-5
No files found.
gcc/reload1.c
View file @
a34a369b
...
@@ -5209,14 +5209,14 @@ emit_reload_insns (insn)
...
@@ -5209,14 +5209,14 @@ emit_reload_insns (insn)
&&
GET_CODE
(
PATTERN
(
PREV_INSN
(
before_insn
)))
==
USE
)
&&
GET_CODE
(
PATTERN
(
PREV_INSN
(
before_insn
)))
==
USE
)
before_insn
=
PREV_INSN
(
before_insn
);
before_insn
=
PREV_INSN
(
before_insn
);
/* If
this insn
is followed by any CLOBBER insns made by find_reloads,
/* If
INSN
is followed by any CLOBBER insns made by find_reloads,
put our reloads after them since they may otherwise be
put our reloads after them since they may otherwise be
misinterpreted. */
misinterpreted. */
while
(
NEXT_INSN
(
following_insn
)
!=
0
while
(
GET_CODE
(
following_insn
)
==
INSN
&&
GET_
CODE
(
NEXT_INSN
(
following_insn
))
==
INSN
&&
GET_
MODE
(
following_insn
)
==
DImode
&&
GET_
MODE
(
NEXT_INSN
(
following_insn
))
==
DImode
&&
GET_
CODE
(
PATTERN
(
following_insn
))
==
CLOBBER
&&
GET_CODE
(
PATTERN
(
NEXT_INSN
(
following_insn
)))
==
CLOBBER
)
&&
NEXT_INSN
(
following_insn
)
!=
0
)
following_insn
=
NEXT_INSN
(
following_insn
);
following_insn
=
NEXT_INSN
(
following_insn
);
/* Now output the instructions to copy the data into and out of the
/* Now output the instructions to copy the data into and out of the
...
...
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