summaryrefslogtreecommitdiff
path: root/gcc/alloc-pool.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2009-10-20 14:15:52 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2009-10-20 14:15:52 +0000
commitb78cd8859a15ad7dffd57a4f0be481c2e2762da6 (patch)
tree322a27d1030541cab9540d8239d50c48f6395e03 /gcc/alloc-pool.c
parent8345c8e4278ecde5c20a1825d136e941833f04dc (diff)
ggc-page.c: Include cfgloop.h.
2009-10-20 Richard Guenther <rguenther@suse.de> * ggc-page.c: Include cfgloop.h. (struct max_alignment): Drop long double, add void *. (extra_order_size_table): Add low non-power-of-two multiples of MAX_ALIGNMENT. Drop small type-based entries, add tree_type, cgraph_node and loop. * alloc-pool.c (struct allocation_object_def): Drop long double aligning element. From-SVN: r153014
Diffstat (limited to 'gcc/alloc-pool.c')
-rw-r--r--gcc/alloc-pool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/alloc-pool.c b/gcc/alloc-pool.c
index c9d990464ad..cb5d83d23ee 100644
--- a/gcc/alloc-pool.c
+++ b/gcc/alloc-pool.c
@@ -41,10 +41,10 @@ typedef struct allocation_object_def
/* Because we want any type of data to be well aligned after the ID,
the following elements are here. They are never accessed so
- the allocated object may be even smaller than this structure. */
+ the allocated object may be even smaller than this structure.
+ We do not care about alignment for floating-point types. */
char *align_p;
HOST_WIDEST_INT align_i;
- long double align_ld;
} u;
} allocation_object;