diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1996-07-03 22:07:53 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1996-07-03 22:07:53 +0000 |
commit | 0f41302f4736dbb0fbf4690d6430ce581c5a9d80 (patch) | |
tree | e82dd48a4282d7b9e8b1c71b065b52af17254c52 /gcc/explow.c | |
parent | 9753f1136864a98cca12ab71f0ffe1af4dd84486 (diff) | |
download | gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.zip gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.tar.gz gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.tar.bz2 |
formatting tweaks
From-SVN: r12390
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index ce5128b..08fe69c 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -815,7 +815,8 @@ round_push (size) else { /* CEIL_DIV_EXPR needs to worry about the addition overflowing, - but we know it can't. So add ourselves and then do TRUNC_DIV_EXPR. */ + but we know it can't. So add ourselves and then do + TRUNC_DIV_EXPR. */ size = expand_binop (Pmode, add_optab, size, GEN_INT (align - 1), NULL_RTX, 1, OPTAB_LIB_WIDEN); size = expand_divmod (0, TRUNC_DIV_EXPR, Pmode, size, GEN_INT (align), @@ -1117,7 +1118,8 @@ allocate_dynamic_stack_space (size, target, known_align) if (MUST_ALIGN) { /* CEIL_DIV_EXPR needs to worry about the addition overflowing, - but we know it can't. So add ourselves and then do TRUNC_DIV_EXPR. */ + but we know it can't. So add ourselves and then do + TRUNC_DIV_EXPR. */ target = expand_binop (Pmode, add_optab, target, GEN_INT (BIGGEST_ALIGNMENT / BITS_PER_UNIT - 1), NULL_RTX, 1, OPTAB_LIB_WIDEN); |