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
3e7c7805
Commit
3e7c7805
authored
Aug 23, 2001
by
Bernd Schmidt
Committed by
Bernd Schmidt
Aug 23, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix abort where write_count got to 3
From-SVN: r45137
parent
ab75d1f1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/ChangeLog
+5
-0
gcc/config/ia64/ia64.c
+4
-1
No files found.
gcc/ChangeLog
View file @
3e7c7805
2001
-
08
-
23
Bernd
Schmidt
<
bernds
@redhat
.
com
>
*
config
/
ia64
/
ia64
.
c
(
rws_update
)
:
If
!
pred
,
set
write_count
instead
of
incrementing
it
.
Thu
Aug
23
17
:
21
:
43
CEST
2001
Jan
Hubicka
<
jh
@suse
.
cz
>
Thu
Aug
23
17
:
21
:
43
CEST
2001
Jan
Hubicka
<
jh
@suse
.
cz
>
*
function
.
c
(
thread_prologue_and_epilogue_insns
)
:
Avoid
*
function
.
c
(
thread_prologue_and_epilogue_insns
)
:
Avoid
...
...
gcc/config/ia64/ia64.c
View file @
3e7c7805
...
@@ -4026,7 +4026,10 @@ rws_update (rws, regno, flags, pred)
...
@@ -4026,7 +4026,10 @@ rws_update (rws, regno, flags, pred)
struct
reg_flags
flags
;
struct
reg_flags
flags
;
int
pred
;
int
pred
;
{
{
rws
[
regno
].
write_count
+=
pred
?
1
:
2
;
if
(
pred
)
rws
[
regno
].
write_count
++
;
else
rws
[
regno
].
write_count
=
2
;
rws
[
regno
].
written_by_fp
|=
flags
.
is_fp
;
rws
[
regno
].
written_by_fp
|=
flags
.
is_fp
;
/* ??? Not tracking and/or across differing predicates. */
/* ??? Not tracking and/or across differing predicates. */
rws
[
regno
].
written_by_and
=
flags
.
is_and
;
rws
[
regno
].
written_by_and
=
flags
.
is_and
;
...
...
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