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
1f3fa20e
Commit
1f3fa20e
authored
Mar 27, 1998
by
J"orn Rennecke
Committed by
Joern Rennecke
Mar 27, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* sh.c (find_barrier): Fix calculations for alignemnt increase.
From-SVN: r18853
parent
7a790837
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
gcc/ChangeLog
+4
-0
gcc/config/sh/sh.c
+4
-6
No files found.
gcc/ChangeLog
View file @
1f3fa20e
Fri Mar 27 18:08:21 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* sh.c (find_barrier): Fix calculations for alignemnt increase.
Fri Mar 27 08:56:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
* Makefile.in (stmp-fixinc): If we're actually fixing include
...
...
gcc/config/sh/sh.c
View file @
1f3fa20e
...
...
@@ -2000,22 +2000,20 @@ find_barrier (num_mova, mova, from)
{
if
(
new_align
>
si_align
)
{
count_si
=
count_si
+
new_align
-
1
&
-
si_align
;
si_limit
-=
count_si
-
1
&
new_align
-
si_align
;
si_align
=
new_align
;
}
else
count_si
=
count_si
+
new_align
-
1
&
-
new_align
;
count_si
=
count_si
+
new_align
-
1
&
-
new_align
;
count_si
+=
inc
;
}
if
(
found_hi
)
{
if
(
new_align
>
hi_align
)
{
count_hi
=
count_hi
+
new_align
-
1
&
-
hi_align
;
hi_limit
-=
count_hi
-
1
&
new_align
-
hi_align
;
hi_align
=
new_align
;
}
else
count_hi
=
count_hi
+
new_align
-
1
&
-
new_align
;
count_hi
=
count_hi
+
new_align
-
1
&
-
new_align
;
count_hi
+=
inc
;
}
from
=
NEXT_INSN
(
from
);
...
...
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