]> git.pld-linux.org Git - packages/gcc.git/blame - gcc32-fold-const2.patch
- fix for mmx/3dnow/sse related ICE
[packages/gcc.git] / gcc32-fold-const2.patch
CommitLineData
2199a3f9 12002-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.025455 seconds and 4 git commands to generate.