diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-05-06 23:05:54 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-05-06 23:05:54 +0000 |
commit | 0bc644e0031a247a30ddbe64fb50b94fdd4e19fd (patch) | |
tree | 5ce87329cf1055017d0bd705ecac06be33f23764 /gcc/stor-layout.c | |
parent | 37808e3a06df2a78362bff6389cc0b2e2812f490 (diff) | |
download | gcc-0bc644e0031a247a30ddbe64fb50b94fdd4e19fd.tar.gz |
reformat a little to match GNU coding standards.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14024 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r-- | gcc/stor-layout.c | 6 |
1 files changed, 3 insertions, 3 deletions
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) |