From db3cf6fb33804557ebeae4d9d142ce365826c1ea Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Tue, 6 May 1997 23:05:54 +0000 Subject: reformat a little to match GNU coding standards. From-SVN: r14024 --- gcc/stor-layout.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/stor-layout.c') diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index e55961a9f51..8c2357aeeb7 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) -- cgit v1.2.1