diff options
author | Richard Stallman <rms@gnu.org> | 1992-03-29 03:47:34 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-03-29 03:47:34 +0000 |
commit | c0920bf9777de321d52e277b812c39cb16386244 (patch) | |
tree | d16ddf3775e88bc533db7a41a364316a8fdfcf36 /gcc/tree.c | |
parent | b1166faeb09066cb5f8106b02cb100a129679bd1 (diff) | |
download | gcc-c0920bf9777de321d52e277b812c39cb16386244.zip gcc-c0920bf9777de321d52e277b812c39cb16386244.tar.gz gcc-c0920bf9777de321d52e277b812c39cb16386244.tar.bz2 |
*** empty log message ***
From-SVN: r621
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -859,7 +859,8 @@ make_node (code) break; case 'd': - DECL_ALIGN (t) = 1; + if (code != FUNCTION_DECL) + DECL_ALIGN (t) = 1; DECL_SOURCE_LINE (t) = lineno; DECL_SOURCE_FILE (t) = (input_filename) ? input_filename : "<built-in>"; break; |