aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-lang.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-10-08 09:37:06 -0700
committerRichard Henderson <rth@gcc.gnu.org>2001-10-08 09:37:06 -0700
commit31ed8fea3d618377c79be11b05f41539df915cc4 (patch)
tree29cbaa01253970fbc753eff9f70ce21ac5d8b696 /gcc/c-lang.c
parentbbd300a97b35c0a754ee7bed771a5f1e74eb43cf (diff)
downloadgcc-31ed8fea3d618377c79be11b05f41539df915cc4.zip
gcc-31ed8fea3d618377c79be11b05f41539df915cc4.tar.gz
gcc-31ed8fea3d618377c79be11b05f41539df915cc4.tar.bz2
c-common.h (struct c_lang_decl): Add declared_inline.
* c-common.h (struct c_lang_decl): Add declared_inline. * c-tree.h (DECL_DECLARED_INLINE_P): New. * c-lang.c (c_disregard_inline_limits): Use it. * c-decl.c (duplicate_decls): Likewise. (pushdecl, redeclaration_error_message): Likewise. (pushdecl): Allocate DECL_LANG_SPECIFIC if needed. (grokdeclarator): Likewise. Set DECL_DECLARED_INLINE_P. Set DECL_INLINE if -finline-functions. (store_parm_decls): Don't allocate DECL_LANG_SPECIFIC here. * cp-tree.h (struct lang_decl_flags): Remove declared_inline. (DECL_DECLARED_INLINE_P): Use the bit in struct c_lang_decl. From-SVN: r46079
Diffstat (limited to 'gcc/c-lang.c')
-rw-r--r--gcc/c-lang.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lang.c b/gcc/c-lang.c
index 7e7ebb7..6ff8b9c 100644
--- a/gcc/c-lang.c
+++ b/gcc/c-lang.c
@@ -340,7 +340,7 @@ static int
c_disregard_inline_limits (fn)
tree fn;
{
- return DECL_INLINE (fn) && DECL_EXTERNAL (fn);
+ return DECL_DECLARED_INLINE_P (fn) && DECL_EXTERNAL (fn);
}
static tree inline_forbidden_p PARAMS ((tree *, int *, void *));