aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-03-29 03:47:34 +0000
committerRichard Stallman <rms@gnu.org>1992-03-29 03:47:34 +0000
commitc0920bf9777de321d52e277b812c39cb16386244 (patch)
treed16ddf3775e88bc533db7a41a364316a8fdfcf36 /gcc/tree.c
parentb1166faeb09066cb5f8106b02cb100a129679bd1 (diff)
downloadgcc-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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index 9485332..c6a74a1 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -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;