diff options
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-4.7/avoid-oob-array-access.patch')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.7/avoid-oob-array-access.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.7/avoid-oob-array-access.patch b/meta/recipes-devtools/gcc/gcc-4.7/avoid-oob-array-access.patch deleted file mode 100644 index 4ba707d0b2..0000000000 --- a/meta/recipes-devtools/gcc/gcc-4.7/avoid-oob-array-access.patch +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
1 | Upstream-Status: Backport | ||
2 | |||
3 | See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56308 | ||
4 | |||
5 | From 1e37e371d2cca3549b71a247bf79778aa1a9e1c4 Mon Sep 17 00:00:00 2001 | ||
6 | From: rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | ||
7 | Date: Fri, 21 Sep 2012 10:08:35 +0000 | ||
8 | Subject: [PATCH] 2012-09-21 Richard Guenther <rguenther@suse.de> | ||
9 | |||
10 | PR middle-end/54638 | ||
11 | Backport from mainline | ||
12 | 2012-04-19 Richard Guenther <rguenther@suse.de> | ||
13 | |||
14 | * ira-int.h (ira_allocno_object_iter_cond): Avoid out-of-bound | ||
15 | array access. | ||
16 | |||
17 | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@191605 138bc75d-0d04-0410-961f-82ee72b054a4 | ||
18 | --- | ||
19 | gcc/ChangeLog | 9 +++++++++ | ||
20 | gcc/ira-int.h | 9 +++++++-- | ||
21 | 2 files changed, 16 insertions(+), 2 deletions(-) | ||
22 | |||
23 | diff --git a/gcc/ira-int.h b/gcc/ira-int.h | ||
24 | index 9faabb5..771a368 100644 | ||
25 | --- a/gcc/ira-int.h | ||
26 | +++ b/gcc/ira-int.h | ||
27 | @@ -1138,8 +1138,13 @@ static inline bool | ||
28 | ira_allocno_object_iter_cond (ira_allocno_object_iterator *i, ira_allocno_t a, | ||
29 | ira_object_t *o) | ||
30 | { | ||
31 | - *o = ALLOCNO_OBJECT (a, i->n); | ||
32 | - return i->n++ < ALLOCNO_NUM_OBJECTS (a); | ||
33 | + int n = i->n++; | ||
34 | + if (n < ALLOCNO_NUM_OBJECTS (a)) | ||
35 | + { | ||
36 | + *o = ALLOCNO_OBJECT (a, n); | ||
37 | + return true; | ||
38 | + } | ||
39 | + return false; | ||
40 | } | ||
41 | |||
42 | /* Loop over all objects associated with allocno A. In each | ||
43 | -- | ||
44 | 1.8.2.2 | ||
45 | |||