diff options
author | Jan Hubicka <jh@suse.cz> | 2008-07-29 19:10:55 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2008-07-29 17:10:55 +0000 |
commit | 54dfd46bffb35c49935053bd9bc2997f77e26902 (patch) | |
tree | ec580272d62cb4f74dab5323db176f00f81fd545 /gcc/print-tree.c | |
parent | ce94d3547f81cc3dd105f4a3377e72cdbd2bbd2c (diff) | |
download | gcc-54dfd46bffb35c49935053bd9bc2997f77e26902.zip gcc-54dfd46bffb35c49935053bd9bc2997f77e26902.tar.gz gcc-54dfd46bffb35c49935053bd9bc2997f77e26902.tar.bz2 |
c-decl.c (merge_decls): Do not handle DECL_INLINE.
* c-decl.c (merge_decls): Do not handle DECL_INLINE.
(grokdeclarator): Likewise.
* langhooks.c (lhd_warn_unused_global_decl): Use
DECL_DECLARED_INLINE_P.
* print-tree.c (print_node): Remove DECL_INLINE check.
From-SVN: r138258
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index a310ec4..b76a180 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -461,8 +461,7 @@ print_node (FILE *file, const char *prefix, tree node, int indent) print_node (file, "size", DECL_SIZE (node), indent + 4); print_node (file, "unit size", DECL_SIZE_UNIT (node), indent + 4); - if (TREE_CODE (node) != FUNCTION_DECL - || DECL_INLINE (node) || DECL_BUILT_IN (node)) + if (TREE_CODE (node) != FUNCTION_DECL || DECL_BUILT_IN (node)) indent_to (file, indent + 3); if (DECL_USER_ALIGN (node)) |