* toplev.c (rest_of_decl_compilation): Do not invoke make_decl_rtl
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 3 Mar 2002 09:11:38 +0000 (09:11 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 3 Mar 2002 09:11:38 +0000 (09:11 +0000)
        for types or labels.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50253 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/toplev.c

index 2ea07f3..f425362 100644 (file)
@@ -1,5 +1,10 @@
 2002-03-03  Richard Henderson  <rth@redhat.com>
 
+       * toplev.c (rest_of_decl_compilation): Do not invoke make_decl_rtl
+       for types or labels.
+
+2002-03-03  Richard Henderson  <rth@redhat.com>
+
        * c-decl.c (start_decl): Initialized variables are not common.
 
 2002-03-02  Per Bothner  <per@bothner.com>
index 1767fb4..2d72c3f 100644 (file)
@@ -2277,7 +2277,8 @@ rest_of_decl_compilation (decl, asmspec, top_level, at_end)
       /* If asmspec non-zero, we may be creating a global register variable.
         If asmspec zero, we may be making sure that ENCODE_SECTION_INFO is
         up-to-date.  */
-      make_decl_rtl (decl, asmspec);
+      if (TREE_CODE (decl) != TYPE_DECL && TREE_CODE (decl) != LABEL_DECL)
+        make_decl_rtl (decl, asmspec);
 
       /* Don't output anything when a tentative file-scope definition
         is seen.  But at end of compilation, do output code for them.  */