diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-29 21:57:05 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-29 21:57:05 +0000 |
commit | 3a2bf8d37de84d647864bcaf139b54258c985279 (patch) | |
tree | 4633005da8f64b1767538dcd1ee8920a7bf39820 /gcc/c-objc-common.c | |
parent | 72fe0291ed0b258c4c0b00eea051498e272e55f1 (diff) | |
download | gcc-3a2bf8d37de84d647864bcaf139b54258c985279.tar.gz |
* c-tree.h (C_DECL_FILE_SCOPE): Move ...
* tree.h (DECL_FILE_SCOPE_P): ... here, and rename.
* c-decl.c, c-objc-common.c, c-typeck.c: Update to match.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70925 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-objc-common.c')
-rw-r--r-- | gcc/c-objc-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-objc-common.c b/gcc/c-objc-common.c index 887175be6f8..b5f263fe35c 100644 --- a/gcc/c-objc-common.c +++ b/gcc/c-objc-common.c @@ -127,7 +127,7 @@ inline_forbidden_p (tree *nodep, int *walk_subtrees ATTRIBUTE_UNUSED, /* We cannot inline a nested function that jumps to a nonlocal label. */ if (TREE_CODE (t) == LABEL_DECL - && !C_DECL_FILE_SCOPE (t) && DECL_CONTEXT (t) != fn) + && !DECL_FILE_SCOPE_P (t) && DECL_CONTEXT (t) != fn) return node; break; @@ -184,7 +184,7 @@ c_cannot_inline_tree_fn (tree *fnp) goto cannot_inline; } - if (! C_DECL_FILE_SCOPE (fn)) + if (! DECL_FILE_SCOPE_P (fn)) { /* If a nested function has pending sizes, we may have already saved them. */ |