From 63408827c4d31b6be3de9026658c5440e19c273b Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Mon, 15 Nov 1999 20:55:19 -0800 Subject: ggc-common.c (ggc_print_statistics): Cast size_t to unsigned long for printing. * ggc-common.c (ggc_print_statistics): Cast size_t to unsigned long for printing. * ggc.h (struct ggc_statistics): Rearrange elements for better packing on 64-bit hosts. * lcm.c (compute_laterin): Store a size_t not an int in bb->aux. (compute_nearerout): Likewise. From-SVN: r30547 --- gcc/ggc.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/ggc.h') diff --git a/gcc/ggc.h b/gcc/ggc.h index 2c12a139935..3f55a21736b 100644 --- a/gcc/ggc.h +++ b/gcc/ggc.h @@ -182,14 +182,14 @@ typedef struct ggc_statistics /* The Ith element is the number of bytes allocated by nodes with code I. */ size_t size_rtxs[256]; - /* The total number of tree nodes allocated. */ - unsigned total_num_trees; /* The total size of the tree nodes allocated. */ size_t total_size_trees; - /* The total number of RTL nodes allocated. */ - unsigned total_num_rtxs; /* The total size of the RTL nodes allocated. */ size_t total_size_rtxs; + /* The total number of tree nodes allocated. */ + unsigned total_num_trees; + /* The total number of RTL nodes allocated. */ + unsigned total_num_rtxs; } ggc_statistics; /* Return the number of bytes allocated at the indicated address. */ -- cgit v1.2.1