From c7ee7249fc2b766bd807229b10330969da04a45a Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Tue, 1 Sep 1992 06:19:13 +0000 Subject: [PATCH] (make_node): Fix typo in July 6 change: assignment of DECL_IN_SYSTEM_HEADER was inserted in bad place. From-SVN: r2011 --- gcc/tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++; -- 2.30.2