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
18b0f6cc
Commit
18b0f6cc
authored
Nov 22, 2004
by
Nick Clifton
Committed by
Nick Clifton
Nov 22, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sbitmap.c (sbitmap_union_of_preds): Remove redundant initialisation of 'e'.
From-SVN: r91017
parent
90710901
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-0
gcc/sbitmap.c
+1
-1
No files found.
gcc/ChangeLog
View file @
18b0f6cc
2004
-
11
-
22
Nick
Clifton
<
nickc
@
redhat
.
com
>
*
sbitmap
.
c
(
sbitmap_union_of_preds
):
Remove
redundant
initialisation
of
'e'
.
2004
-
11
-
22
Kazu
Hirata
<
kazu
@
cs
.
umass
.
edu
>
PR
rtl
-
optimization
/
18599
...
...
gcc/sbitmap.c
View file @
18b0f6cc
...
...
@@ -637,7 +637,7 @@ sbitmap_union_of_preds (sbitmap dst, sbitmap *src, int bb)
edge
e
;
unsigned
ix
;
for
(
e
=
NULL
,
ix
=
0
;
ix
<
EDGE_COUNT
(
b
->
preds
);
ix
++
)
for
(
ix
=
0
;
ix
<
EDGE_COUNT
(
b
->
preds
);
ix
++
)
{
e
=
EDGE_PRED
(
b
,
ix
);
if
(
e
->
src
==
ENTRY_BLOCK_PTR
)
...
...
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