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
a0ac9e5a
Commit
a0ac9e5a
authored
Mar 03, 2000
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcse.c (dump_hash_table): Really fix error in last change.
From-SVN: r32306
parent
cdd9eb8f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+5
-2
gcc/gcse.c
+2
-1
No files found.
gcc/ChangeLog
View file @
a0ac9e5a
2000
-
03
-
03
Jason
Merrill
<
jason
@casey
.
cygnus
.
com
>
*
gcse
.
c
(
dump_hash_table
)
:
Really
fix
error
in
last
change
.
2000
-
03
-
02
Denis
Chertykov
<
denisc
@overta
.
ru
>
2000
-
03
-
02
Denis
Chertykov
<
denisc
@overta
.
ru
>
*
avr
.
c
(
print_operand
)
:
Use
print_operand_address
instead
of
*
avr
.
c
(
print_operand
)
:
Use
print_operand_address
instead
of
...
@@ -14,8 +18,7 @@
...
@@ -14,8 +18,7 @@
2000
-
03
-
02
Clinton
Popetz
<
cpopetz
@cygnus
.
com
>
2000
-
03
-
02
Clinton
Popetz
<
cpopetz
@cygnus
.
com
>
*
config
/
i386
/
i386
.
c
:
(
constant_call_address_operand
)
:
Reject
*
i386
.
c
:
(
constant_call_address_operand
)
:
Reject
CONST_INT
.
CONST_INT
.
2000
-
03
-
02
Jason
Merrill
<
jason
@casey
.
cygnus
.
com
>
2000
-
03
-
02
Jason
Merrill
<
jason
@casey
.
cygnus
.
com
>
...
...
gcc/gcse.c
View file @
a0ac9e5a
...
@@ -2011,9 +2011,10 @@ dump_hash_table (file, name, table, table_size, total_size)
...
@@ -2011,9 +2011,10 @@ dump_hash_table (file, name, table, table_size, total_size)
for
(
i
=
0
;
i
<
total_size
;
i
++
)
for
(
i
=
0
;
i
<
total_size
;
i
++
)
if
(
flat_table
[
i
]
!=
0
)
if
(
flat_table
[
i
]
!=
0
)
{
{
expr
=
flat_table
[
i
];
fprintf
(
file
,
"Index %d (hash value %d)
\n
"
,
fprintf
(
file
,
"Index %d (hash value %d)
\n
"
,
expr
->
bitmap_index
,
hash_val
[
i
]);
expr
->
bitmap_index
,
hash_val
[
i
]);
print_rtl
(
file
,
flat_table
[
i
]
->
expr
);
print_rtl
(
file
,
expr
->
expr
);
fprintf
(
file
,
"
\n
"
);
fprintf
(
file
,
"
\n
"
);
}
}
...
...
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