Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/gcc/4.3.0/gentoo: 63_all_gcc43-pr35705.patch README.history
Date: Sun, 20 Apr 2008 09:24:47
Message-Id: E1JnVmu-0001xb-6l@stork.gentoo.org
1 vapier 08/04/20 09:24:44
2
3 Modified: README.history
4 Added: 63_all_gcc43-pr35705.patch
5 Log:
6 add fix for pr35705
7
8 Revision Changes Path
9 1.3 src/patchsets/gcc/4.3.0/gentoo/README.history
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/gcc/4.3.0/gentoo/README.history?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/gcc/4.3.0/gentoo/README.history?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/gcc/4.3.0/gentoo/README.history?r1=1.2&r2=1.3
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.3.0/gentoo/README.history,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- README.history 20 Apr 2008 06:31:02 -0000 1.2
22 +++ README.history 20 Apr 2008 09:24:43 -0000 1.3
23 @@ -5,7 +5,7 @@
24 + 61_all_gcc43-pr24170.patch
25 + 62_all_gcc4-noteGNUstack.patch
26 + 62_all_gcc43-pr27880.patch
27 - + 63_all_gcc43-pr30961.patch
28 + + 63_all_gcc43-pr35705.patch
29 + 64_all_gcc43-pr34571.patch
30
31 1.0 16.03.2008
32
33
34
35 1.1 src/patchsets/gcc/4.3.0/gentoo/63_all_gcc43-pr35705.patch
36
37 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/gcc/4.3.0/gentoo/63_all_gcc43-pr35705.patch?rev=1.1&view=markup
38 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/gcc/4.3.0/gentoo/63_all_gcc43-pr35705.patch?rev=1.1&content-type=text/plain
39
40 Index: 63_all_gcc43-pr35705.patch
41 ===================================================================
42 http://gcc.gnu.org/PR35705
43
44 2008-04-01 John David Anglin <dave.anglin@×××××××××××.ca>
45
46 PR middle-end/35705
47 * fold-const.c (get_pointer_modulus_and_residue): Return modulus 1 if
48 the expression is a function address.
49
50 --- branches/gcc-4_3-branch/gcc/fold-const.c 2008/04/01 22:14:41 133804
51 +++ branches/gcc-4_3-branch/gcc/fold-const.c 2008/04/01 22:16:49 133805
52 @@ -9360,7 +9360,7 @@
53 }
54 }
55
56 - if (DECL_P (expr))
57 + if (DECL_P (expr) && TREE_CODE (expr) != FUNCTION_DECL)
58 return DECL_ALIGN_UNIT (expr);
59 }
60 else if (code == POINTER_PLUS_EXPR)
61
62
63
64 --
65 gentoo-commits@l.g.o mailing list