summaryrefslogtreecommitdiffstats
path: root/gcc/integrate.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-16 21:41:10 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-16 21:41:10 +0000
commitb9a7cc698921e2a5cee2afd48b6556af5f7fbf1f (patch)
tree5aa9e7cef82d21751e0893c56bdaeadef5722525 /gcc/integrate.c
parent5ffca67a18abd443db0424475a141aa1ec601450 (diff)
downloadppe42-gcc-b9a7cc698921e2a5cee2afd48b6556af5f7fbf1f.tar.gz
ppe42-gcc-b9a7cc698921e2a5cee2afd48b6556af5f7fbf1f.zip
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/integrate.c')
-rw-r--r--gcc/integrate.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c
index fc7b474fea5..0ac08f9e7b4 100644
--- a/gcc/integrate.c
+++ b/gcc/integrate.c
@@ -94,8 +94,8 @@ static void copy_insn_list PARAMS ((rtx, struct inline_remap *,
rtx));
static void copy_insn_notes PARAMS ((rtx, struct inline_remap *,
int));
-static int compare_blocks PARAMS ((const PTR, const PTR));
-static int find_block PARAMS ((const PTR, const PTR));
+static int compare_blocks PARAMS ((const void *, const void *));
+static int find_block PARAMS ((const void *, const void *));
/* Used by copy_rtx_and_substitute; this indicates whether the function is
called for the purpose of inlining or some other purpose (i.e. loop
@@ -613,8 +613,8 @@ process_reg_param (map, loc, copy)
static int
compare_blocks (v1, v2)
- const PTR v1;
- const PTR v2;
+ const void *v1;
+ const void *v2;
{
tree b1 = *((const tree *) v1);
tree b2 = *((const tree *) v2);
@@ -631,8 +631,8 @@ compare_blocks (v1, v2)
static int
find_block (v1, v2)
- const PTR v1;
- const PTR v2;
+ const void *v1;
+ const void *v2;
{
const union tree_node *b1 = (const union tree_node *) v1;
tree b2 = *((const tree *) v2);
OpenPOWER on IntegriCloud