From 00de328a7ac2c812c0ea4f12c44fbd8d71028b91 Mon Sep 17 00:00:00 2001 From: Aldy Hernandez Date: Wed, 24 Sep 2014 19:50:24 +0000 Subject: cgraph.h, [...]: Rename all instances of DECL_ABSTRACT to DECL_ABSTRACT_P. * cgraph.h, dbxout.c, dwarfout2.c, gimple-fold.c, lto-streamer-out.c, print-tree.c, symtab.c, tree-inline.c, tree-streamer-in.c, tree-streamer-out.c, tree.c, tree.h, varpool.c: Rename all instances of DECL_ABSTRACT to DECL_ABSTRACT_P. cp/ * class.c, decl.c, optimize.c: Rename all instances of DECL_ABSTRACT to DECL_ABSTRACT_P. lto/ * lto-symtab.c, lto.c: Rename all instances of DECL_ABSTRACT to DECL_ABSTRACT_P. From-SVN: r215567 --- gcc/gimple-fold.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/gimple-fold.c') diff --git a/gcc/gimple-fold.c b/gcc/gimple-fold.c index dc2c942..8ac2211 100644 --- a/gcc/gimple-fold.c +++ b/gcc/gimple-fold.c @@ -85,7 +85,7 @@ can_refer_decl_in_current_unit_p (tree decl, tree from_decl) struct cgraph_node *node; symtab_node *snode; - if (DECL_ABSTRACT (decl)) + if (DECL_ABSTRACT_P (decl)) return false; /* We are concerned only about static/external vars and functions. */ -- cgit v1.1