From fad205ffba97267072c69704481aac372dd62f16 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Mon, 16 Jun 2003 21:41:10 +0000 Subject: 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 --- gcc/ssa-dce.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/ssa-dce.c') diff --git a/gcc/ssa-dce.c b/gcc/ssa-dce.c index 6ccc222..1c480dc 100644 --- a/gcc/ssa-dce.c +++ b/gcc/ssa-dce.c @@ -211,7 +211,7 @@ control_dependent_block_to_edge_map_free (c) int i; for (i = 0; i < c->length; ++i) BITMAP_XFREE (c->data[i]); - free ((PTR) c); + free (c); } /* Record all blocks' control dependences on all edges in the edge @@ -566,7 +566,7 @@ ssa_eliminate_dead_code () /* Propagate through the operands. */ for_each_rtx (¤t_instruction, &propagate_necessity_through_operand, - (PTR) &unprocessed_instructions); + &unprocessed_instructions); /* PHI nodes are somewhat special in that each PHI alternative has data and control dependencies. The data dependencies @@ -738,6 +738,6 @@ ssa_eliminate_dead_code () if (VARRAY_ACTIVE_SIZE (unprocessed_instructions) != 0) abort (); control_dependent_block_to_edge_map_free (cdbte); - free ((PTR) pdom); + free (pdom); free_edge_list (el); } -- cgit v1.1