summaryrefslogtreecommitdiff
path: root/gcc/stor-layout.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-17 17:22:41 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-17 17:22:41 +0000
commit7bed6b5aa73b94c6301621cd42ec2cf9ef23e5f4 (patch)
tree6a779c890c04a8ee5accf4f873fc3697cbeca4f6 /gcc/stor-layout.c
parentbaa44fba3fa32d2186f512d6734e12fe2ea573c3 (diff)
downloadgcc-7bed6b5aa73b94c6301621cd42ec2cf9ef23e5f4.tar.gz
Whitespace change
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38334 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r--gcc/stor-layout.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c
index d909ab74d74..0f057efd4a0 100644
--- a/gcc/stor-layout.c
+++ b/gcc/stor-layout.c
@@ -693,14 +693,15 @@ place_field (rli, field)
user_align = DECL_USER_ALIGN (field);
}
-#ifdef BIGGEST_FIELD_ALIGNMENT
/* Some targets (i.e. i386, VMS) limit struct field alignment
to a lower boundary than alignment of variables unless
it was overridden by attribute aligned. */
+#ifdef BIGGEST_FIELD_ALIGNMENT
if (! user_align)
- desired_align =
- MIN (desired_align, (unsigned) BIGGEST_FIELD_ALIGNMENT);
+ desired_align
+ = MIN (desired_align, (unsigned) BIGGEST_FIELD_ALIGNMENT);
#endif
+
#ifdef ADJUST_FIELD_ALIGN
desired_align = ADJUST_FIELD_ALIGN (field, desired_align);
#endif