(make_node): Fix typo in July 6 change:
authorRichard Stallman <rms@gnu.org>
Tue, 1 Sep 1992 06:19:13 +0000 (06:19 +0000)
committerRichard Stallman <rms@gnu.org>
Tue, 1 Sep 1992 06:19:13 +0000 (06:19 +0000)
assignment of DECL_IN_SYSTEM_HEADER was inserted in bad place.

From-SVN: r2011

gcc/tree.c

index 8f03250b6a71148e4e2d3c8c47728ec921f9a3b7..cc36562b0b5e320b7b124e1a5630660d63c80c6c 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++;