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
a2538ff7
Commit
a2538ff7
authored
Apr 23, 1998
by
Nick Clifton
Committed by
Nick Clifton
Apr 23, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
find_barrier(): Return as soon as a BARRIER insn is found.
From-SVN: r19386
parent
d0c42859
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+6
-0
gcc/config/arm/arm.c
+1
-1
No files found.
gcc/ChangeLog
View file @
a2538ff7
Thu Apr 23 15:01:13 1998 Nick Clifton <nickc@cygnus.com>
* config/arm/arm.c (find_barrier): Return as soon as a barrier is
found, rather than at end of the loop, after the insn has been
changed.
Thu Apr 23 20:21:06 1997 J"orn Rennecke <amylaar@cygnus.co.uk>
* sh.c (gen_ashift_hi): Implement right shifts via gen_ashift.
...
...
gcc/config/arm/arm.c
View file @
a2538ff7
...
...
@@ -3539,7 +3539,7 @@ find_barrier (from, max_count)
while
(
from
&&
count
<
max_count
)
{
if
(
GET_CODE
(
from
)
==
BARRIER
)
found_barrier
=
from
;
return
from
;
/* Count the length of this insn */
if
(
GET_CODE
(
from
)
==
INSN
...
...
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