diff options
Diffstat (limited to 'toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106750.patch')
-rw-r--r-- | toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106750.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106750.patch b/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106750.patch deleted file mode 100644 index 9c62102db5..0000000000 --- a/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106750.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | 2011-05-13 Revital Eres <revital.eres@linaro.org> | ||
2 | |||
3 | gcc/ | ||
4 | * ddg.c (free_ddg_all_sccs): Free sccs field in struct ddg_all_sccs. | ||
5 | * modulo-sched.c (sms_schedule): Avoid unfreed memory when SMS fails. | ||
6 | |||
7 | === modified file 'gcc/ddg.c' | ||
8 | --- old/gcc/ddg.c 2011-05-11 07:15:47 +0000 | ||
9 | +++ new/gcc/ddg.c 2011-05-13 16:03:40 +0000 | ||
10 | @@ -1016,6 +1016,7 @@ | ||
11 | for (i = 0; i < all_sccs->num_sccs; i++) | ||
12 | free_scc (all_sccs->sccs[i]); | ||
13 | |||
14 | + free (all_sccs->sccs); | ||
15 | free (all_sccs); | ||
16 | } | ||
17 | |||
18 | |||
19 | === modified file 'gcc/modulo-sched.c' | ||
20 | --- old/gcc/modulo-sched.c 2011-05-11 07:15:47 +0000 | ||
21 | +++ new/gcc/modulo-sched.c 2011-05-13 16:03:40 +0000 | ||
22 | @@ -1216,7 +1216,6 @@ | ||
23 | fprintf (dump_file, HOST_WIDEST_INT_PRINT_DEC, trip_count); | ||
24 | fprintf (dump_file, ")\n"); | ||
25 | } | ||
26 | - continue; | ||
27 | } | ||
28 | else | ||
29 | { | ||
30 | |||