OSDN Git Service

(make_node): Fix typo in July 6 change:
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 1 Sep 1992 06:19:13 +0000 (06:19 +0000)
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 1 Sep 1992 06:19:13 +0000 (06:19 +0000)
assignment of DECL_IN_SYSTEM_HEADER was inserted in bad place.

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

gcc/tree.c

index 8f03250..cc36562 100644 (file)
@@ -896,9 +896,9 @@ make_node (code)
 
     case 'd':
       if (code != FUNCTION_DECL)
+       DECL_ALIGN (t) = 1;
       DECL_IN_SYSTEM_HEADER (t)
        = in_system_header && (obstack == &permanent_obstack);
-      DECL_ALIGN (t) = 1;
       DECL_SOURCE_LINE (t) = lineno;
       DECL_SOURCE_FILE (t) = (input_filename) ? input_filename : "<built-in>";
       DECL_UID (t) = next_decl_uid++;