diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-06-16 21:41:10 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-06-16 21:41:10 +0000 |
commit | fad205ffba97267072c69704481aac372dd62f16 (patch) | |
tree | 5aa9e7cef82d21751e0893c56bdaeadef5722525 /gcc/expr.c | |
parent | 4ff58371763d8dfb211e776e22e74a51fa3eb909 (diff) | |
download | gcc-fad205ffba97267072c69704481aac372dd62f16.zip gcc-fad205ffba97267072c69704481aac372dd62f16.tar.gz gcc-fad205ffba97267072c69704481aac372dd62f16.tar.bz2 |
decl.c, [...]: Don't use the PTR macro.
cp:
* cp/decl.c, cp/pt.c, cp/search.c, cp/tree.c: Don't use the PTR
macro.
gcc:
* bitmap.c, builtins.c, c-incpath.c, cgraph.c, config/frv/frv.c,
config/mips/mips.c, cppfiles.c, cpphash.c, cppinit.c, cpplib.c,
dwarf2out.c, dwarfout.c, except.c, expr.c, expr.h, fold-const.c,
function.c, gcc.c, genoutput.c, gensupport.c, global.c,
haifa-sched.c, hashtable.c, ifcvt.c, integrate.c, local-alloc.c,
loop.c, mips-tdump.c, mips-tfile.c, mkdeps.c, protoize.c,
read-rtl.c, recog.h, reload1.c, sbitmap.c, ssa-dce.c,
stringpool.c, tlink.c, tree.c, varasm.c, varray.c: Don't use
the PTR macro.
From-SVN: r68043
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -125,8 +125,8 @@ struct store_by_pieces int explicit_inc_to; unsigned HOST_WIDE_INT len; HOST_WIDE_INT offset; - rtx (*constfun) PARAMS ((PTR, HOST_WIDE_INT, enum machine_mode)); - PTR constfundata; + rtx (*constfun) PARAMS ((void *, HOST_WIDE_INT, enum machine_mode)); + void *constfundata; int reverse; }; @@ -141,7 +141,7 @@ static bool emit_block_move_via_movstr PARAMS ((rtx, rtx, rtx, unsigned)); static rtx emit_block_move_via_libcall PARAMS ((rtx, rtx, rtx)); static tree emit_block_move_libcall_fn PARAMS ((int)); static void emit_block_move_via_loop PARAMS ((rtx, rtx, rtx, unsigned)); -static rtx clear_by_pieces_1 PARAMS ((PTR, HOST_WIDE_INT, +static rtx clear_by_pieces_1 PARAMS ((void *, HOST_WIDE_INT, enum machine_mode)); static void clear_by_pieces PARAMS ((rtx, unsigned HOST_WIDE_INT, unsigned int)); @@ -2718,8 +2718,8 @@ use_group_regs (call_fusage, regs) int can_store_by_pieces (len, constfun, constfundata, align) unsigned HOST_WIDE_INT len; - rtx (*constfun) PARAMS ((PTR, HOST_WIDE_INT, enum machine_mode)); - PTR constfundata; + rtx (*constfun) PARAMS ((void *, HOST_WIDE_INT, enum machine_mode)); + void *constfundata; unsigned int align; { unsigned HOST_WIDE_INT max_size, l; @@ -2801,8 +2801,8 @@ rtx store_by_pieces (to, len, constfun, constfundata, align, endp) rtx to; unsigned HOST_WIDE_INT len; - rtx (*constfun) PARAMS ((PTR, HOST_WIDE_INT, enum machine_mode)); - PTR constfundata; + rtx (*constfun) PARAMS ((void *, HOST_WIDE_INT, enum machine_mode)); + void *constfundata; unsigned int align; int endp; { @@ -2871,7 +2871,7 @@ clear_by_pieces (to, len, align) static rtx clear_by_pieces_1 (data, offset, mode) - PTR data ATTRIBUTE_UNUSED; + void *data ATTRIBUTE_UNUSED; HOST_WIDE_INT offset ATTRIBUTE_UNUSED; enum machine_mode mode ATTRIBUTE_UNUSED; { |