]> git.pld-linux.org Git - packages/gcc.git/blob - gcc32-fold-const2.patch
06b1320a380cc9d5159b2d5ab39b8d9e
[packages/gcc.git] / gcc32-fold-const2.patch
1 2002-05-15  Jakub Jelinek  <jakub@redhat.com>
2
3         * fold-const.c (fold): Fix a typo.
4
5 --- gcc/fold-const.c.jj Wed May 15 14:02:54 2002
6 +++ gcc/fold-const.c    Wed May 15 14:06:09 2002
7 @@ -6530,7 +6530,7 @@ fold (expr)
8  
9             else if (TREE_INT_CST_HIGH (arg1) == -1
10                      && (TREE_INT_CST_LOW (arg1)
11 -                        == ((unsigned HOST_WIDE_INT) 1 << (width - 1)))
12 +                        == ((unsigned HOST_WIDE_INT) -1 << (width - 1)))
13                      && ! TREE_UNSIGNED (TREE_TYPE (arg1)))
14               switch (TREE_CODE (t))
15                 {
This page took 0.095041 seconds and 3 git commands to generate.