diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-16 21:41:10 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-16 21:41:10 +0000 |
commit | b9a7cc698921e2a5cee2afd48b6556af5f7fbf1f (patch) | |
tree | 5aa9e7cef82d21751e0893c56bdaeadef5722525 /gcc/stringpool.c | |
parent | 5ffca67a18abd443db0424475a141aa1ec601450 (diff) | |
download | gcc-b9a7cc698921e2a5cee2afd48b6556af5f7fbf1f.tar.gz |
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/stringpool.c')
-rw-r--r-- | gcc/stringpool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/stringpool.c b/gcc/stringpool.c index afb9bdb0972..7a5d51ac03f 100644 --- a/gcc/stringpool.c +++ b/gcc/stringpool.c @@ -50,7 +50,7 @@ struct ht *ident_hash; static struct obstack string_stack; static hashnode alloc_node PARAMS ((hash_table *)); -static int mark_ident PARAMS ((struct cpp_reader *, hashnode, const PTR)); +static int mark_ident PARAMS ((struct cpp_reader *, hashnode, const void *)); static int ht_copy_and_clear PARAMS ((struct cpp_reader *, hashnode, const void *)); /* Initialize the string pool. */ @@ -158,7 +158,7 @@ static int mark_ident (pfile, h, v) struct cpp_reader *pfile ATTRIBUTE_UNUSED; hashnode h; - const PTR v ATTRIBUTE_UNUSED; + const void *v ATTRIBUTE_UNUSED; { gt_ggc_m_9tree_node (HT_IDENT_TO_GCC_IDENT (h)); return 1; |