summaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r--gcc/c-common.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c
index 0990f23d424..f398599138d 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -970,7 +970,8 @@ decl_attributes (node, attributes, prefix_attributes)
TREE_UNSIGNED (type) ? "uintmax_t" : "intmax_t");
TREE_TYPE (decl) = type = typefm;
DECL_SIZE (decl) = DECL_SIZE_UNIT (decl) = 0;
- layout_decl (decl, 0);
+ if (TREE_CODE (decl) != FIELD_DECL)
+ layout_decl (decl, 0);
}
}
break;