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
eb516666
Commit
eb516666
authored
Oct 17, 1998
by
Graham Stott
Committed by
Jeff Law
Oct 17, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcse.c (dump_cuid_table): Correct typo.
From-SVN: r23154
parent
f9d48c82
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/gcse.c
+3
-3
No files found.
gcc/ChangeLog
View file @
eb516666
Sat
Oct
17
13
:
09
:
09
1998
Graham
<
grahams
@rcp
.
co
.
uk
>
*
gcse
.
c
(
dump_cuid_table
)
:
Correct
typo
.
Sat
Oct
17
11
:
02
:
47
1998
Nick
Clifton
<
nickc
@cygnus
.
com
>
Sat
Oct
17
11
:
02
:
47
1998
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
toplev
.
c
(
display_help
)
:
Prepend
'
-
m
'
to
target
specific
*
toplev
.
c
(
display_help
)
:
Prepend
'
-
m
'
to
target
specific
...
...
gcc/gcse.c
View file @
eb516666
...
@@ -927,13 +927,13 @@ void
...
@@ -927,13 +927,13 @@ void
dump_cuid_table
(
file
)
dump_cuid_table
(
file
)
FILE
*
file
;
FILE
*
file
;
{
{
int
i
,
n
;
int
i
;
fprintf
(
file
,
"CUID table
\n
"
);
fprintf
(
file
,
"CUID table
\n
"
);
for
(
i
=
n
=
0
;
i
<
max_cuid
;
i
++
)
for
(
i
=
0
;
i
<
max_cuid
;
i
++
)
{
{
rtx
insn
=
CUID_INSN
(
i
);
rtx
insn
=
CUID_INSN
(
i
);
if
(
n
!=
0
&&
n
%
10
==
0
)
if
(
i
!=
0
&&
i
%
10
==
0
)
fprintf
(
file
,
"
\n
"
);
fprintf
(
file
,
"
\n
"
);
if
(
insn
!=
NULL
)
if
(
insn
!=
NULL
)
fprintf
(
file
,
" %d"
,
INSN_UID
(
insn
));
fprintf
(
file
,
" %d"
,
INSN_UID
(
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