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
3b63eac4
Commit
3b63eac4
authored
Aug 23, 2001
by
Bernd Schmidt
Committed by
Bernd Schmidt
Aug 23, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
When moving asms out of the way, don't move all of them to the same place
From-SVN: r45138
parent
3e7c7805
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
gcc/ChangeLog
+3
-0
gcc/config/ia64/ia64.c
+2
-2
No files found.
gcc/ChangeLog
View file @
3b63eac4
...
...
@@ -3,6 +3,9 @@
*
config
/
ia64
/
ia64
.
c
(
rws_update
)
:
If
!
pred
,
set
write_count
instead
of
incrementing
it
.
*
config
/
ia64
/
ia64
.
c
(
ia64_sched_reorder
)
:
When
there
'
s
more
than
one
asm
ready
,
don
'
t
try
to
move
them
all
into
the
same
array
element
.
Thu
Aug
23
17
:
21
:
43
CEST
2001
Jan
Hubicka
<
jh
@suse
.
cz
>
*
function
.
c
(
thread_prologue_and_epilogue_insns
)
:
Avoid
...
...
gcc/config/ia64/ia64.c
View file @
3b63eac4
...
...
@@ -6153,8 +6153,8 @@ ia64_internal_sched_reorder (dump, sched_verbose, ready, pn_ready,
if
(
GET_CODE
(
PATTERN
(
insn
))
==
ASM_INPUT
||
asm_noperands
(
PATTERN
(
insn
))
>=
0
)
{
rtx
lowest
=
ready
[
0
];
ready
[
0
]
=
insn
;
rtx
lowest
=
ready
[
n_asms
];
ready
[
n_asms
]
=
insn
;
*
insnp
=
lowest
;
n_asms
++
;
}
...
...
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