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
a4b5b2ae
Commit
a4b5b2ae
authored
Sep 21, 2001
by
Richard Kenner
Committed by
Richard Kenner
Sep 20, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ggc-page.c (ggc_marked_p): Properly convert return to boolean.
From-SVN: r45715
parent
e7b6a0ee
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/ggc-page.c
+1
-1
No files found.
gcc/ChangeLog
View file @
a4b5b2ae
Thu
Sep
20
09
:
00
:
27
2001
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
*
ggc
-
page
.
c
(
ggc_marked_p
)
:
Properly
convert
return
to
boolean
.
2001
-
09
-
20
DJ
Delorie
<
dj
@redhat
.
com
>
*
c
-
typeck
.
c
(
really_start_incremental_init
)
:
Discriminate
...
...
gcc/ggc-page.c
View file @
a4b5b2ae
...
...
@@ -1027,7 +1027,7 @@ ggc_marked_p (p)
word
=
bit
/
HOST_BITS_PER_LONG
;
mask
=
(
unsigned
long
)
1
<<
(
bit
%
HOST_BITS_PER_LONG
);
return
entry
->
in_use_p
[
word
]
&
mask
;
return
(
entry
->
in_use_p
[
word
]
&
mask
)
!=
0
;
}
/* Return the size of the gc-able object P. */
...
...
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