aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
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;