From: Richard Stallman Date: Tue, 1 Sep 1992 06:19:13 +0000 (+0000) Subject: (make_node): Fix typo in July 6 change: X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c7ee7249fc2b766bd807229b10330969da04a45a;p=gcc.git (make_node): Fix typo in July 6 change: assignment of DECL_IN_SYSTEM_HEADER was inserted in bad place. From-SVN: r2011 --- diff --git a/gcc/tree.c b/gcc/tree.c index 8f03250b6a7..cc36562b0b5 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -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 : ""; DECL_UID (t) = next_decl_uid++;