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
c831fdea
Commit
c831fdea
authored
Oct 27, 1999
by
Mark Mitchell
Committed by
Mark Mitchell
Oct 27, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ggc-page.c (poison_pages): Don't be overzealous.
From-SVN: r30209
parent
95815af9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
gcc/ChangeLog
+4
-0
gcc/ggc-page.c
+8
-0
No files found.
gcc/ChangeLog
View file @
c831fdea
Tue
Oct
26
23
:
15
:
03
1999
Mark
Mitchell
<
mark
@codesourcery
.
com
>
*
ggc
-
page
.
c
(
poison_pages
)
:
Don
'
t
be
overzealous
.
Tue
Oct
26
23
:
29
:
18
1999
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
c
-
typeck
.
c
(
build_function_call
)
:
Check
that
the
built
-
in
...
...
gcc/ggc-page.c
View file @
c831fdea
...
...
@@ -1021,6 +1021,14 @@ poison_pages ()
for
(
p
=
G
.
pages
[
order
];
p
!=
NULL
;
p
=
p
->
next
)
{
size_t
i
;
if
(
p
->
context_depth
!=
G
.
context_depth
)
/* Since we don't do any collection for pages in pushed
contexts, there's no need to do any poisoning. And
besides, the IN_USE_P array isn't valid until we pop
contexts. */
continue
;
for
(
i
=
0
;
i
<
num_objects
;
i
++
)
{
size_t
word
,
bit
;
...
...
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