diff options
author | Richard Henderson <rth@cygnus.com> | 1999-11-15 20:55:19 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-11-15 20:55:19 -0800 |
commit | 63408827c4d31b6be3de9026658c5440e19c273b (patch) | |
tree | 843dc855bf9ff6321be0e9793797d36b421d0ea5 /gcc/ggc.h | |
parent | 1344f8d5d033c461d07e336331b6551bfb2c5c77 (diff) | |
download | gcc-63408827c4d31b6be3de9026658c5440e19c273b.tar.gz |
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
Diffstat (limited to 'gcc/ggc.h')
-rw-r--r-- | gcc/ggc.h | 8 |
1 files changed, 4 insertions, 4 deletions
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. */ |