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
6a7b4ca6
Commit
6a7b4ca6
authored
Jan 15, 2002
by
Jan Hubicka
Committed by
Jan Hubicka
Jan 14, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* unroll.c (final_reg_note_copy): Fix previous commit.
From-SVN: r48858
parent
e7afe229
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
gcc/ChangeLog
+4
-0
gcc/unroll.c
+9
-4
No files found.
gcc/ChangeLog
View file @
6a7b4ca6
Tue Jan 15 00:56:11 CET 2002 Jan Hubicka <jh@suse.cz>
* unroll.c (final_reg_note_copy): Fix previous commit.
2002-01-14 Kazu Hirata <kazu@hxi.com>
2002-01-14 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300-protos.h: Remove the prototype for
* config/h8300/h8300-protos.h: Remove the prototype for
...
...
gcc/unroll.c
View file @
6a7b4ca6
...
@@ -1741,11 +1741,16 @@ final_reg_note_copy (notesp, map)
...
@@ -1741,11 +1741,16 @@ final_reg_note_copy (notesp, map)
{
{
rtx
insn
=
map
->
insn_map
[
INSN_UID
(
XEXP
(
note
,
0
))];
rtx
insn
=
map
->
insn_map
[
INSN_UID
(
XEXP
(
note
,
0
))];
/* If we failed to remap the note, something is awry. */
/* If we failed to remap the note, something is awry.
Allow REG_LABEL as it may reference label outside
the unrolled loop. */
if
(
!
insn
)
if
(
!
insn
)
abort
();
{
if
(
REG_NOTE_KIND
(
note
)
!=
REG_LABEL
)
XEXP
(
note
,
0
)
=
insn
;
abort
();
}
else
XEXP
(
note
,
0
)
=
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