From b9a7cc698921e2a5cee2afd48b6556af5f7fbf1f Mon Sep 17 00:00:00 2001 From: ghazi Date: Mon, 16 Jun 2003 21:41:10 +0000 Subject: 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 --- gcc/haifa-sched.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/haifa-sched.c') diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index ee5fb2b2212..1112f534ebc 100644 --- a/gcc/haifa-sched.c +++ b/gcc/haifa-sched.c @@ -480,7 +480,7 @@ static int actual_hazard PARAMS ((int, rtx, int, int)); static int potential_hazard PARAMS ((int, rtx, int)); static int priority PARAMS ((rtx)); -static int rank_for_schedule PARAMS ((const PTR, const PTR)); +static int rank_for_schedule PARAMS ((const void *, const void *)); static void swap_sort PARAMS ((rtx *, int)); static void queue_insn PARAMS ((rtx, int)); static int schedule_insn PARAMS ((rtx, struct ready_list *, int)); @@ -1007,8 +1007,8 @@ while (0) static int rank_for_schedule (x, y) - const PTR x; - const PTR y; + const void *x; + const void *y; { rtx tmp = *(const rtx *) y; rtx tmp2 = *(const rtx *) x; -- cgit v1.2.1