diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-09-29 22:12:52 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-10-04 13:48:57 +0200 |
commit | b9b5306e551f26d76e9dc5fa6f10c2c095fe6e0f (patch) | |
tree | 3908112a2010485903e16f9f7fec5d0fec2a37fa /meta-oe/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106785.patch | |
parent | 9f2e55480dc94e90ac09ca468cf2f0dacb54ae2d (diff) | |
download | meta-openembedded-b9b5306e551f26d76e9dc5fa6f10c2c095fe6e0f.tar.gz |
gcc-4.6: Bring in latest linaro patches
Adjust existing patches for latest FSF gcc-4_6-branch
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106785.patch')
-rw-r--r-- | meta-oe/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106785.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106785.patch b/meta-oe/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106785.patch new file mode 100644 index 0000000000..608dd18336 --- /dev/null +++ b/meta-oe/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106785.patch | |||
@@ -0,0 +1,39 @@ | |||
1 | 2011-08-09 Revital Eres <revital.eres@linaro.org> | ||
2 | |||
3 | gcc/ | ||
4 | Backport from trunk -r176972: | ||
5 | |||
6 | * ddg.c (create_ddg_dep_from_intra_loop_link): Remove | ||
7 | the creation of anti-dep edge from a branch. | ||
8 | (add_cross_iteration_register_deps): | ||
9 | Create anti-dep edge from a branch. | ||
10 | |||
11 | === modified file 'gcc/ddg.c' | ||
12 | --- old/gcc/ddg.c 2011-07-04 11:00:06 +0000 | ||
13 | +++ new/gcc/ddg.c 2011-07-31 11:29:10 +0000 | ||
14 | @@ -197,11 +197,6 @@ | ||
15 | } | ||
16 | } | ||
17 | |||
18 | - /* If a true dep edge enters the branch create an anti edge in the | ||
19 | - opposite direction to prevent the creation of reg-moves. */ | ||
20 | - if ((DEP_TYPE (link) == REG_DEP_TRUE) && JUMP_P (dest_node->insn)) | ||
21 | - create_ddg_dep_no_link (g, dest_node, src_node, ANTI_DEP, REG_DEP, 1); | ||
22 | - | ||
23 | latency = dep_cost (link); | ||
24 | e = create_ddg_edge (src_node, dest_node, t, dt, latency, distance); | ||
25 | add_edge_to_ddg (g, e); | ||
26 | @@ -306,8 +301,11 @@ | ||
27 | |||
28 | gcc_assert (first_def_node); | ||
29 | |||
30 | + /* Always create the edge if the use node is a branch in | ||
31 | + order to prevent the creation of reg-moves. */ | ||
32 | if (DF_REF_ID (last_def) != DF_REF_ID (first_def) | ||
33 | - || !flag_modulo_sched_allow_regmoves) | ||
34 | + || !flag_modulo_sched_allow_regmoves | ||
35 | + || JUMP_P (use_node->insn)) | ||
36 | create_ddg_dep_no_link (g, use_node, first_def_node, ANTI_DEP, | ||
37 | REG_DEP, 1); | ||
38 | |||
39 | |||