(make_node): Fix typo in July 6 change:

assignment of DECL_IN_SYSTEM_HEADER was inserted in bad place.

From-SVN: r2011
This commit is contained in:
Richard Stallman 1992-09-01 06:19:13 +00:00
parent 11222b61f1
commit c7ee7249fc
1 changed files with 1 additions and 1 deletions

View 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++;