aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimple-fold.c
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2014-09-24 19:50:24 +0000
committerAldy Hernandez <aldyh@gcc.gnu.org>2014-09-24 19:50:24 +0000
commit00de328a7ac2c812c0ea4f12c44fbd8d71028b91 (patch)
tree3229e32dcbb119c7b007bb52db4079090ff3386b /gcc/gimple-fold.c
parent7606cbaeff94acc0b40d50241c6f090d5d3f8cc9 (diff)
downloadgcc-00de328a7ac2c812c0ea4f12c44fbd8d71028b91.zip
gcc-00de328a7ac2c812c0ea4f12c44fbd8d71028b91.tar.gz
gcc-00de328a7ac2c812c0ea4f12c44fbd8d71028b91.tar.bz2
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
Diffstat (limited to 'gcc/gimple-fold.c')
-rw-r--r--gcc/gimple-fold.c2
1 files changed, 1 insertions, 1 deletions
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. */