aboutsummaryrefslogtreecommitdiff
path: root/gcc/print-tree.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/print-tree.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/print-tree.c')
-rw-r--r--gcc/print-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index eee0df9..9563e4d 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -362,7 +362,7 @@ print_node (FILE *file, const char *prefix, tree node, int indent)
fputs (" unsigned", file);
if (DECL_IGNORED_P (node))
fputs (" ignored", file);
- if (DECL_ABSTRACT (node))
+ if (DECL_ABSTRACT_P (node))
fputs (" abstract", file);
if (DECL_EXTERNAL (node))
fputs (" external", file);