diff options
author | Bernardo Innocenti <bernie@develer.com> | 2004-07-26 00:17:02 +0200 |
---|---|---|
committer | Bernardo Innocenti <bernie@gcc.gnu.org> | 2004-07-26 00:17:02 +0200 |
commit | 28dab13236a7f958a8dc533363dcbe8e18eeeae5 (patch) | |
tree | d4ef1636ca1b7a8d3ec231e0f5b6e84697ddeb94 /gcc/rtl.c | |
parent | 4f3d87d661d99cb035d4f5cf72164f785fa270fc (diff) | |
download | gcc-28dab13236a7f958a8dc533363dcbe8e18eeeae5.zip gcc-28dab13236a7f958a8dc533363dcbe8e18eeeae5.tar.gz gcc-28dab13236a7f958a8dc533363dcbe8e18eeeae5.tar.bz2 |
basic-block.h (reorder_block_def): Rename to reorder_block_def_p.
* basic-block.h (reorder_block_def): Rename to reorder_block_def_p.
* c-common.c: Add missing casts from void * to other types.
* c-decl.c: Likewise.
* c-format.c: Likewise.
* c-lex.c: Likewise.
* c-pragma.c: Likewise.
* c-typeck.c: Likewise.
* defaults.h: Likewise.
* genconstants.c: Likewise.
* gengtype-lex.l: Likewise.
* genmodes.c: Likewise.
* read-rtl.c: Likewise.
* rtl.c: Likewise.
From-SVN: r85166
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -177,7 +177,8 @@ rtx_alloc_stat (RTX_CODE code MEM_STAT_DECL) { rtx rt; - rt = ggc_alloc_typed_stat (gt_ggc_e_7rtx_def, RTX_SIZE (code) PASS_MEM_STAT); + rt = (rtx) ggc_alloc_typed_stat (gt_ggc_e_7rtx_def, + RTX_SIZE (code) PASS_MEM_STAT); /* We want to clear everything up to the FLD array. Normally, this is one int, but we don't want to assume that and it isn't very @@ -311,8 +312,8 @@ shallow_copy_rtx_stat (rtx orig MEM_STAT_DECL) { rtx copy; - copy = ggc_alloc_typed_stat (gt_ggc_e_7rtx_def, RTX_SIZE (GET_CODE (orig)) - PASS_MEM_STAT); + copy = (rtx) ggc_alloc_typed_stat (gt_ggc_e_7rtx_def, + RTX_SIZE (GET_CODE (orig)) PASS_MEM_STAT); memcpy (copy, orig, RTX_SIZE (GET_CODE (orig))); return copy; } |