aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99377.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-05-15 14:45:57 -0700
committerKhem Raj <raj.khem@gmail.com>2012-05-15 14:48:59 -0700
commit6291c6fd1243d722e144466921064d47fb50428b (patch)
treea60d1cb9952db6786fcb60ce1accc596f5fba2ef /toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99377.patch
parent93898b626e2e169dea112c724ff9e7ed1b0e14eb (diff)
downloadmeta-openembedded-contrib-6291c6fd1243d722e144466921064d47fb50428b.tar.gz
gcc-4.5: Remove
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99377.patch')
-rw-r--r--toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99377.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99377.patch b/toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99377.patch
deleted file mode 100644
index d51f0874e3..0000000000
--- a/toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99377.patch
+++ /dev/null
@@ -1,28 +0,0 @@
- Issue #1510
- 2007-04-27 Paul Brook <paul@codesourcery.com>
- gcc/
- * cse.c (cse_process_notes): Make sure PLUS are canonical.
-
-2010-08-26 Paul Brook <paul@codesourcery.com>
-
- Merge from Sourcery G++ 4.3/4.4:
- 2007-03-30 Paul Brook <paul@codesourcery.com>
- gcc/
- * calls.c (store_one_arg): Check alignment of mode used for save.
-
-=== modified file 'gcc/cse.c'
---- old/gcc/cse.c 2010-01-12 20:25:10 +0000
-+++ new/gcc/cse.c 2010-08-26 15:53:20 +0000
-@@ -6061,6 +6061,11 @@
- validate_change (object, &XEXP (x, i),
- cse_process_notes (XEXP (x, i), object, changed), 0);
-
-+ /* Rebuild a PLUS expression in canonical form if the first operand
-+ ends up as a constant. */
-+ if (code == PLUS && GET_CODE (XEXP (x, 0)) == CONST_INT)
-+ return plus_constant (XEXP(x, 1), INTVAL (XEXP (x, 0)));
-+
- return x;
- }
-
-