summaryrefslogtreecommitdiff
path: root/gcc/unroll.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2002-01-10 20:12:57 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-01-10 20:12:57 +0000
commita01da83b2291abdccd8abe66eff604c50e3c71f0 (patch)
tree6a84e83a4ac5cdeb8d3b26f3d9d3dd04135fad57 /gcc/unroll.c
parent9f85bca76fd08f9bab2d9b0d4535ce5d90acfaea (diff)
downloadgcc-a01da83b2291abdccd8abe66eff604c50e3c71f0.tar.gz
toplev.c: Fix formatting.
* toplev.c: Fix formatting. * tree.c: Likewise. * tree-dump.c: Likewise. * unroll.c: Likewise. * unwind-dw2.c: Likewise. * unwind-dw2-fde.c: Likewise. * unwind-dw2-fde-glibc.c: Likewise. * unwind-sjlj.c: Likewise. From-SVN: r48749
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r--gcc/unroll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c
index f9fd669cde7..047e98395d7 100644
--- a/gcc/unroll.c
+++ b/gcc/unroll.c
@@ -1,5 +1,5 @@
/* Try to unroll loops, and split induction variables.
- Copyright (C) 1992, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001
+ Copyright (C) 1992, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2002
Free Software Foundation, Inc.
Contributed by James E. Wilson, Cygnus Support/UC Berkeley.
@@ -4053,7 +4053,7 @@ loop_iterations (loop)
not HOST_WIDE_INT, disregard higher bits that might have come
into the picture due to sign extension of initial and final
values. */
- abs_diff &= ((unsigned HOST_WIDE_INT)1
+ abs_diff &= ((unsigned HOST_WIDE_INT) 1
<< (GET_MODE_BITSIZE (GET_MODE (iteration_var)) - 1)
<< 1) - 1;