aboutsummaryrefslogtreecommitdiff
path: root/gcc/stor-layout.c
diff options
context:
space:
mode:
authorMike Stump <mrs@gcc.gnu.org>1997-05-06 23:05:54 +0000
committerMike Stump <mrs@gcc.gnu.org>1997-05-06 23:05:54 +0000
commitdb3cf6fb33804557ebeae4d9d142ce365826c1ea (patch)
tree5ce87329cf1055017d0bd705ecac06be33f23764 /gcc/stor-layout.c
parente3da301da35470986dd215f50086952bdb965c13 (diff)
downloadgcc-db3cf6fb33804557ebeae4d9d142ce365826c1ea.zip
gcc-db3cf6fb33804557ebeae4d9d142ce365826c1ea.tar.gz
gcc-db3cf6fb33804557ebeae4d9d142ce365826c1ea.tar.bz2
reformat a little to match GNU coding standards.
From-SVN: r14024
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r--gcc/stor-layout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c
index e55961a9..8c2357a 100644
--- a/gcc/stor-layout.c
+++ b/gcc/stor-layout.c
@@ -949,9 +949,9 @@ layout_type (type)
#define SET_WORD_SIZE BITS_PER_WORD
#endif
int alignment = set_alignment ? set_alignment : SET_WORD_SIZE;
- int size_in_bits =
- TREE_INT_CST_LOW (TYPE_MAX_VALUE (TYPE_DOMAIN (type)))
- - TREE_INT_CST_LOW (TYPE_MIN_VALUE (TYPE_DOMAIN (type))) + 1;
+ int size_in_bits
+ = (TREE_INT_CST_LOW (TYPE_MAX_VALUE (TYPE_DOMAIN (type)))
+ - TREE_INT_CST_LOW (TYPE_MIN_VALUE (TYPE_DOMAIN (type))) + 1);
int rounded_size
= ((size_in_bits + alignment - 1) / alignment) * alignment;
if (rounded_size > alignment)