diff options
Diffstat (limited to 'toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106855.patch')
-rw-r--r-- | toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106855.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106855.patch b/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106855.patch deleted file mode 100644 index c433fc73f1..0000000000 --- a/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106855.patch +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | 2012-01-05 Michael Hope <michael.hope@linaro.org> | ||
2 | |||
3 | Backport from mainline r182271: | ||
4 | |||
5 | 2011-12-13 Revital Eres <revital.eres@linaro.org> | ||
6 | |||
7 | gcc/ | ||
8 | * modulo-sched.c (mark_loop_unsched): Free bbs. | ||
9 | |||
10 | === modified file 'gcc/modulo-sched.c' | ||
11 | --- old/gcc/modulo-sched.c 2011-10-30 05:31:00 +0000 | ||
12 | +++ new/gcc/modulo-sched.c 2012-01-05 02:45:23 +0000 | ||
13 | @@ -1204,6 +1204,8 @@ | ||
14 | |||
15 | for (i = 0; i < loop->num_nodes; i++) | ||
16 | bbs[i]->flags |= BB_DISABLE_SCHEDULE; | ||
17 | + | ||
18 | + free (bbs); | ||
19 | } | ||
20 | |||
21 | /* Return true if all the BBs of the loop are empty except the | ||
22 | |||