diff options
author | Richard Stallman <rms@gnu.org> | 1992-09-01 06:19:13 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-09-01 06:19:13 +0000 |
commit | c7ee7249fc2b766bd807229b10330969da04a45a (patch) | |
tree | a970f94bf6b561d0de95db39a0fa9f0a76c6fd18 /gcc/tree.c | |
parent | 11222b61f1ba16a1fd82acb2741eb989118d4ebd (diff) | |
download | gcc-c7ee7249fc2b766bd807229b10330969da04a45a.zip gcc-c7ee7249fc2b766bd807229b10330969da04a45a.tar.gz gcc-c7ee7249fc2b766bd807229b10330969da04a45a.tar.bz2 |
(make_node): Fix typo in July 6 change:
assignment of DECL_IN_SYSTEM_HEADER was inserted in bad place.
From-SVN: r2011
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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++; |