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
9616dd8d
Commit
9616dd8d
authored
26 years ago
by
Jeffrey A Law
Committed by
Jeff Law
26 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* regmove.c (regmove_optimize): Fix typo initializing regmove_bb_head.
From-SVN: r21386
parent
f8c86b58
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/regmove.c
+1
-1
No files found.
gcc/ChangeLog
View file @
9616dd8d
Sun Jul 26 01:01:32 1998 Jeffrey A Law (law@cygnus.com)
* regmove.c (regmove_optimize): Fix typo initializing regmove_bb_head.
Sat Jul 25 23:29:23 1998 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* Makefile.in (install-info): Only try to update the info
...
...
This diff is collapsed.
Click to expand it.
gcc/regmove.c
View file @
9616dd8d
...
...
@@ -862,7 +862,7 @@ regmove_optimize (f, nregs, regmove_dump_file)
for
(
i
=
maxregnum
;
--
i
>=
0
;
)
regno_src_regno
[
i
]
=
-
1
;
regmove_bb_head
=
(
int
*
)
alloca
(
sizeof
(
int
)
*
(
get_max_uid
()
+
1
));
for
(
i
=
get_max_uid
();
--
i
>=
0
;
)
regmove_bb_head
[
i
]
=
-
1
;
for
(
i
=
get_max_uid
();
i
>=
0
;
i
--
)
regmove_bb_head
[
i
]
=
-
1
;
for
(
i
=
0
;
i
<
n_basic_blocks
;
i
++
)
regmove_bb_head
[
INSN_UID
(
basic_block_head
[
i
])]
=
i
;
...
...
This diff is collapsed.
Click to expand it.
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