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
cef3d50c
Commit
cef3d50c
authored
Jan 05, 2001
by
Mark Mitchell
Committed by
Mark Mitchell
Jan 05, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ggc-page.c (NUM_EXTRA_ORDERS): Hardwire to zero for now.
From-SVN: r38717
parent
341e3d11
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
gcc/ChangeLog
+4
-0
gcc/ggc-page.c
+11
-0
No files found.
gcc/ChangeLog
View file @
cef3d50c
2001-01-05 Mark Mitchell <mark@codesourcery.com>
* ggc-page.c (NUM_EXTRA_ORDERS): Hardwire to zero for now.
2001-01-05 Joseph S. Myers <jsm28@cam.ac.uk>
* builtins.def (BUILT_IN_CONJ, BUILT_IN_CREAL, BUILT_IN_CIMAG):
...
...
gcc/ggc-page.c
View file @
cef3d50c
...
...
@@ -140,12 +140,23 @@ Boston, MA 02111-1307, USA. */
/* The size of an object on a page of the indicated ORDER. */
#define OBJECT_SIZE(ORDER) object_size_table[ORDER]
#ifdef NO_ALIGNMENT_PROBLEM
/* The number of extra orders, not corresponding to power-of-two sized
objects. */
#define NUM_EXTRA_ORDERS \
(sizeof (extra_order_size_table) / sizeof (extra_order_size_table[0]))
#else
/* !defined(NO_ALIGNMENT_PROBLEM) */
/* For now, we can't use this code because we don't ensure that the
objects returned are appropriately aligned. The problem is that
some tree_list sized things, for example, use */
#define NUM_EXTRA_ORDERS 0
#endif
/* !defined(NO_ALIGNMENT_PROBLEM) */
/* The Ith entry is the maximum size of an object to be stored in the
Ith extra order. Adding a new entry to this array is the *only*
thing you need to do to add a new special allocation size. */
...
...
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