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
96fd03a4
Commit
96fd03a4
authored
Dec 01, 2005
by
Nathan Sidwell
Committed by
Nathan Sidwell
Dec 01, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/ms1/ms1.c (ms1_reorg_hazard): Don't count noop moves.
From-SVN: r107821
parent
9e28024a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletions
+12
-1
gcc/ChangeLog
+2
-0
gcc/config/ms1/ms1.c
+10
-1
No files found.
gcc/ChangeLog
View file @
96fd03a4
2005
-
12
-
01
Nathan
Sidwell
<
nathan
@codesourcery
.
com
>
*
config
/
ms1
/
ms1
.
c
(
ms1_reorg_hazard
)
:
Don
'
t
count
noop
moves
.
*
vec
.
h
(
VEC_block_remove
)
:
New
.
2005
-
12
-
01
Gabriel
Dos
Reis
<
gdr
@integrable
-
solutions
.
net
>
...
...
gcc/config/ms1/ms1.c
View file @
96fd03a4
...
...
@@ -1915,7 +1915,16 @@ ms1_reorg_hazard (void)
break
;
}
}
count
-=
INSN_CODE
(
prev
)
>=
0
;
if
(
INSN_CODE
(
prev
)
>=
0
)
{
rtx
set
=
single_set
(
prev
);
/* A noop set will get deleted in a later split pass,
so we can't count on it for hazard avoidance. */
if
(
!
set
||
!
set_noop_p
(
set
))
count
--
;
}
}
if
(
rescan
)
...
...
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