summaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-12 16:37:52 +0000
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-12 16:37:52 +0000
commit4c0dd8e7d3e5eefea04e601ea96489d5a01a4cfc (patch)
tree517e3e9fda4562c722cfb2ed96466fb15762390e /gcc/toplev.c
parent4d6fcc7a94ae52c37470ae24090b6cf838ebad53 (diff)
downloadgcc-4c0dd8e7d3e5eefea04e601ea96489d5a01a4cfc.tar.gz
PR c++/18416
* passes.c (rest_of_decl_compilation): Do not look at DECL_RTL when deciding whether to pass a variable to cgraph_varpool_finalize_decl or assemble_variable. * toplev.c (check_global_declarations): Do not clear DECL_RTL. PR c++/18416 * g++.dg/init/global1.C: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90532 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 4ce593a462c..29ae0651426 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -819,13 +819,6 @@ check_global_declarations (tree *vec, int len)
{
decl = vec[i];
- if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
- && ! TREE_ASM_WRITTEN (decl))
- /* Cancel the RTL for this decl so that, if debugging info
- output for global variables is still to come,
- this one will be omitted. */
- SET_DECL_RTL (decl, NULL_RTX);
-
/* Warn about any function
declared static but not defined.
We don't warn about variables,