Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/dragonegg/files: dragonegg-gcc-4.8.patch
Date: Wed, 25 Jun 2014 17:42:00
Message-Id: 20140625174110.CDE8C2004F@flycatcher.gentoo.org
1 voyageur 14/06/25 17:41:10
2
3 Added: dragonegg-gcc-4.8.patch
4 Log:
5 Fix compilation with gcc 4.8, bug #514992 by patrick
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
8
9 Revision Changes Path
10 1.1 sys-devel/dragonegg/files/dragonegg-gcc-4.8.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dragonegg/files/dragonegg-gcc-4.8.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dragonegg/files/dragonegg-gcc-4.8.patch?rev=1.1&content-type=text/plain
14
15 Index: dragonegg-gcc-4.8.patch
16 ===================================================================
17 --- dragonegg/trunk/src/x86/ABIHack.inc 2014/05/13 21:07:34 208729
18 +++ dragonegg/trunk/src/x86/ABIHack.inc 2014/05/13 21:28:43 208730
19 @@ -1644,50 +1644,6 @@
20 const int align_func;
21 };
22
23 -static const struct ptt processor_target_table[PROCESSOR_max] =
24 -{
25 - {&i386_cost, 4, 3, 4, 3, 4},
26 - {&i486_cost, 16, 15, 16, 15, 16},
27 - {&pentium_cost, 16, 7, 16, 7, 16},
28 - {&pentiumpro_cost, 16, 15, 16, 10, 16},
29 - {&geode_cost, 0, 0, 0, 0, 0},
30 - {&k6_cost, 32, 7, 32, 7, 32},
31 - {&athlon_cost, 16, 7, 16, 7, 16},
32 - {&pentium4_cost, 0, 0, 0, 0, 0},
33 - {&k8_cost, 16, 7, 16, 7, 16},
34 - {&nocona_cost, 0, 0, 0, 0, 0},
35 - {&core2_cost, 16, 10, 16, 10, 16},
36 - {&generic32_cost, 16, 7, 16, 7, 16},
37 - {&generic64_cost, 16, 10, 16, 10, 16},
38 - {&amdfam10_cost, 32, 24, 32, 7, 32},
39 - {&atom_cost, 16, 7, 16, 7, 16}
40 -};
41 -
42 -static const char *const cpu_names[TARGET_CPU_DEFAULT_max] =
43 -{
44 - "generic",
45 - "i386",
46 - "i486",
47 - "pentium",
48 - "pentium-mmx",
49 - "pentiumpro",
50 - "pentium2",
51 - "pentium3",
52 - "pentium4",
53 - "pentium-m",
54 - "prescott",
55 - "nocona",
56 - "core2",
57 - "atom",
58 - "geode",
59 - "k6",
60 - "k6-2",
61 - "k6-3",
62 - "athlon",
63 - "athlon-4",
64 - "k8",
65 - "amdfam10"
66 -};
67
68
69 /* Return the "natural" mode for TYPE. In most cases, this is just TYPE_MODE.