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/gensupport.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/gensupport.c') diff --git a/gcc/gensupport.c b/gcc/gensupport.c index 979c335..32bbcf2 100644 --- a/gcc/gensupport.c +++ b/gcc/gensupport.c @@ -930,8 +930,8 @@ init_md_reader (const char *filename) hash_c_test, cmp_c_test, NULL); for (i = 0; i < n_insn_conditions; i++) - *(htab_find_slot (condition_table, (PTR) &insn_conditions[i], INSERT)) - = (PTR) &insn_conditions[i]; + *(htab_find_slot (condition_table, &insn_conditions[i], INSERT)) + = (void *) &insn_conditions[i]; obstack_init (rtl_obstack); errors = 0; -- cgit v1.1