diff options
author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-11-04 02:59:52 +0000 |
---|---|---|
committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-11-04 02:59:52 +0000 |
commit | b8dcd8a1e4168f06399318ef24d561455003f62d (patch) | |
tree | 2fdeb9386ae83b7833d96efa88d407501461ca90 /gcc/c-decl.c | |
parent | 12717da42afc5efcba2d28e94df5789605b91da9 (diff) | |
download | gcc-b8dcd8a1e4168f06399318ef24d561455003f62d.tar.gz |
* c-decl.c (WANT_C99_INLINE_SEMANTICS): New, set to 1.
(merge_decls): Implement WANT_C99_INLINE_SEMANTICS.
(grokdeclarator): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118474 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 34709df5cfe..a49b88b199b 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -62,6 +62,12 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA #include "langhooks-def.h" #include "pointer-set.h" +/* Set this to 1 if you want the standard ISO C99 semantics of 'inline' + when you specify -std=c99 or -std=gnuc99, and to 0 if you want + behaviour compatible with the nonstandard semantics implemented by + GCC 2.95 through 4.2. */ +#define WANT_C99_INLINE_SEMANTICS 1 + /* In grokdeclarator, distinguish syntactic contexts of declarators. */ enum decl_context { NORMAL, /* Ordinary declaration */ @@ -1760,6 +1766,7 @@ merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype) } } +#if WANT_C99_INLINE_SEMANTICS /* In c99, 'extern' declaration before (or after) 'inline' means this function is not DECL_EXTERNAL. */ if (TREE_CODE (newdecl) == FUNCTION_DECL @@ -1771,6 +1778,7 @@ merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype) && DECL_EXTERNAL (newdecl) && flag_isoc99) DECL_EXTERNAL (newdecl) = 0; +#endif /* WANT_C99_INLINE_SEMANTICS */ if (DECL_EXTERNAL (newdecl)) { @@ -4772,7 +4780,11 @@ grokdeclarator (const struct c_declarator *declarator, in this file, C99 6.7.4p6. In GNU C89, a function declared 'extern inline' is an external reference. */ else if (declspecs->inline_p && storage_class != csc_static) +#if WANT_C99_INLINE_SEMANTICS DECL_EXTERNAL (decl) = (storage_class == csc_extern) == !flag_isoc99; +#else + DECL_EXTERNAL (decl) = (storage_class == csc_extern); +#endif else DECL_EXTERNAL (decl) = !initialized; |