diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-16 21:41:10 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-16 21:41:10 +0000 |
commit | b9a7cc698921e2a5cee2afd48b6556af5f7fbf1f (patch) | |
tree | 5aa9e7cef82d21751e0893c56bdaeadef5722525 /gcc/expr.c | |
parent | 5ffca67a18abd443db0424475a141aa1ec601450 (diff) | |
download | gcc-b9a7cc698921e2a5cee2afd48b6556af5f7fbf1f.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68043 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/expr.c b/gcc/expr.c index 83240c682da..db52ee36500 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -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; { |