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
aa6d7407
Commit
aa6d7407
authored
May 20, 2016
by
Jeff Law
Committed by
Jeff Law
May 20, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* bitmap.c (bitmap_find_bit): Remove useless test.
From-SVN: r236546
parent
e93044fc
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/bitmap.c
+1
-1
No files found.
gcc/ChangeLog
View file @
aa6d7407
2016-05-20 Jeff Law <law@redhat.com>
* bitmap.c (bitmap_find_bit): Remove useless test.
2016-05-20 Segher Boessenkool <segher@kernel.crashing.org>
2016-05-20 Segher Boessenkool <segher@kernel.crashing.org>
* function.c (thread_prologue_and_epilogue_insns): Commit the
* function.c (thread_prologue_and_epilogue_insns): Commit the
...
...
gcc/bitmap.c
View file @
aa6d7407
...
@@ -556,7 +556,7 @@ bitmap_find_bit (bitmap head, unsigned int bit)
...
@@ -556,7 +556,7 @@ bitmap_find_bit (bitmap head, unsigned int bit)
want, the one we want doesn't exist. */
want, the one we want doesn't exist. */
head
->
current
=
element
;
head
->
current
=
element
;
head
->
indx
=
element
->
indx
;
head
->
indx
=
element
->
indx
;
if
(
element
!=
0
&&
element
->
indx
!=
indx
)
if
(
element
->
indx
!=
indx
)
element
=
0
;
element
=
0
;
return
element
;
return
element
;
...
...
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