diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-12-19 09:03:45 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-12-19 09:03:45 +0000 |
commit | b11e16d5eacc6bee8aa7ea50be5f2b3f95581b4b (patch) | |
tree | 8029b8a046840a43572ac9c006c6c8f55d2b096e /gcc/lto-streamer-out.c | |
parent | f0620a215a807d40102f6165c6002a94b4bc283e (diff) | |
download | gcc-b11e16d5eacc6bee8aa7ea50be5f2b3f95581b4b.tar.gz |
2011-12-19 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 182471 using svnmerge
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@182472 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lto-streamer-out.c')
-rw-r--r-- | gcc/lto-streamer-out.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/lto-streamer-out.c b/gcc/lto-streamer-out.c index 9593134fb02..6c1169a3ec6 100644 --- a/gcc/lto-streamer-out.c +++ b/gcc/lto-streamer-out.c @@ -129,16 +129,6 @@ tree_is_indexable (tree t) else if (TREE_CODE (t) == VAR_DECL && decl_function_context (t) && !TREE_STATIC (t)) return false; - /* If this is a decl generated for block local externs for - debug info generation, stream it unshared alongside BLOCK_VARS. */ - else if (VAR_OR_FUNCTION_DECL_P (t) - /* ??? The following tests are a literal match on what - c-decl.c:pop_scope does. */ - && TREE_PUBLIC (t) - && DECL_EXTERNAL (t) - && DECL_CONTEXT (t) - && TREE_CODE (DECL_CONTEXT (t)) == FUNCTION_DECL) - return false; /* Variably modified types need to be streamed alongside function bodies because they can refer to local entities. Together with them we have to localize their members as well. |