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/local-alloc.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/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 2e91ae1..8e06b8d 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -283,9 +283,9 @@ static void update_equiv_regs PARAMS ((void)); static void no_equiv PARAMS ((rtx, rtx, void *)); static void block_alloc PARAMS ((int)); static int qty_sugg_compare PARAMS ((int, int)); -static int qty_sugg_compare_1 PARAMS ((const PTR, const PTR)); +static int qty_sugg_compare_1 PARAMS ((const void *, const void *)); static int qty_compare PARAMS ((int, int)); -static int qty_compare_1 PARAMS ((const PTR, const PTR)); +static int qty_compare_1 PARAMS ((const void *, const void *)); static int combine_regs PARAMS ((rtx, rtx, int, int, rtx, int)); static int reg_meets_class_p PARAMS ((int, enum reg_class)); static void update_qty_class PARAMS ((int, int)); @@ -1701,8 +1701,8 @@ qty_compare (q1, q2) static int qty_compare_1 (q1p, q2p) - const PTR q1p; - const PTR q2p; + const void *q1p; + const void *q2p; { int q1 = *(const int *) q1p, q2 = *(const int *) q2p; int tem = QTY_CMP_PRI (q2) - QTY_CMP_PRI (q1); @@ -1741,8 +1741,8 @@ qty_sugg_compare (q1, q2) static int qty_sugg_compare_1 (q1p, q2p) - const PTR q1p; - const PTR q2p; + const void *q1p; + const void *q2p; { int q1 = *(const int *) q1p, q2 = *(const int *) q2p; int tem = QTY_CMP_SUGG (q1) - QTY_CMP_SUGG (q2); |