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
44c389e4
Commit
44c389e4
authored
Feb 03, 1997
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(find_cross_jump): Don't allow old-style and volatile asms
to match. From-SVN: r13603
parent
b91b26c9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletions
+13
-1
gcc/jump.c
+13
-1
No files found.
gcc/jump.c
View file @
44c389e4
...
...
@@ -2605,7 +2605,19 @@ find_cross_jump (e1, e2, minimum, f1, f2)
}
#endif
if
(
lose
||
GET_CODE
(
p1
)
!=
GET_CODE
(
p2
)
/* Don't allow old-style asm or volatile extended asms to be accepted
for cross jumping purposes. It is conceptually correct to allow
them, since cross-jumping preserves the dynamic instruction order
even though it is changing the static instruction order. However,
if an asm is being used to emit an assembler pseudo-op, such as
the MIPS `.set reorder' pseudo-op, then the static instruction order
matters and it must be preserved. */
if
(
GET_CODE
(
p1
)
==
ASM_INPUT
||
GET_CODE
(
p2
)
==
ASM_INPUT
||
(
GET_CODE
(
p1
)
==
ASM_OPERANDS
&&
MEM_VOLATILE_P
(
p1
))
||
(
GET_CODE
(
p2
)
==
ASM_OPERANDS
&&
MEM_VOLATILE_P
(
p2
)))
lose
=
1
;
if
(
lose
||
GET_CODE
(
p1
)
!=
GET_CODE
(
p2
)
||
!
rtx_renumbered_equal_p
(
p1
,
p2
))
{
/* The following code helps take care of G++ cleanups. */
...
...
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