diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2004-09-02 02:39:15 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@gcc.gnu.org> | 2004-09-02 02:39:15 +0000 |
commit | 1e8964cf94aa8b0e7176434d7b31fbf040416764 (patch) | |
tree | 38a0908d766fce589e9428a80444d100866d3cd3 /gcc/ggc.h | |
parent | 262767053ee39b37d4e34b4fae01bfb1697bd081 (diff) | |
download | gcc-1e8964cf94aa8b0e7176434d7b31fbf040416764.tar.gz |
*** empty log message ***
From-SVN: r86955
Diffstat (limited to 'gcc/ggc.h')
-rw-r--r-- | gcc/ggc.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/ggc.h b/gcc/ggc.h index 821de0c2b32..13ac2c5c5c5 100644 --- a/gcc/ggc.h +++ b/gcc/ggc.h @@ -245,9 +245,6 @@ extern void dump_ggc_loc_statistics (void); #define GGC_NEWVAR(T, S) ((T *) ggc_alloc ((S))) #define GGC_CNEWVAR(T, S) ((T *) ggc_alloc_cleared ((S))) -#define ggc_alloc_rtx(CODE) \ - ((rtx) ggc_alloc_typed (gt_ggc_e_7rtx_def, RTX_SIZE (CODE))) - #define ggc_alloc_rtvec(NELT) \ ((rtvec) ggc_alloc_typed (gt_ggc_e_9rtvec_def, sizeof (struct rtvec_def) \ + ((NELT) - 1) * sizeof (rtx))) |