summaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorJuergen Daubert <jue@jue.li>2016-03-02 10:00:09 +0100
committerJuergen Daubert <jue@jue.li>2016-03-02 10:00:09 +0100
commit66eedb1910dc1a6efe3981938d9e6e72d619208f (patch)
tree19f6ee129552f531d3827b6d5ae88cac494218ae /binutils
parenta45da036fd4fea1e956c1247d5ff6f6fc910e80c (diff)
downloadcore-66eedb1910dc1a6efe3981938d9e6e72d619208f.tar.gz
core-66eedb1910dc1a6efe3981938d9e6e72d619208f.tar.xz
binutils: remove old patch
Diffstat (limited to 'binutils')
-rw-r--r--binutils/binutils.patch50
1 files changed, 0 insertions, 50 deletions
diff --git a/binutils/binutils.patch b/binutils/binutils.patch
deleted file mode 100644
index 23e9c553..00000000
--- a/binutils/binutils.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-===================================================================
-RCS file: /cvs/src/src/binutils/ChangeLog,v
-retrieving revision 1.1974
-retrieving revision 1.1975
-diff -u -r1.1974 -r1.1975
---- src/binutils/ChangeLog 2013/01/10 09:49:15 1.1974
-+++ src/binutils/ChangeLog 2013/01/15 13:41:05 1.1975
-@@ -1,3 +1,10 @@
-+2013-01-16 Alan Modra <amodra@gmail.com>
-+
-+ PR binutils/15018
-+ * stabs.c (parse_stab_members): Always set physname here to avoid
-+ gcc warning..
-+ (parse_stab_argtypes): ..and don't duplicate the init here.
-+
- 2013-01-10 Will Newton <will.newton@imgtec.com>
-
- * binutils/readelf.c: (guess_is_rela): Add EM_METAG.
-
-===================================================================
-RCS file: /cvs/src/src/binutils/stabs.c,v
-retrieving revision 1.34
-retrieving revision 1.35
-diff -u -r1.34 -r1.35
---- src/binutils/stabs.c 2012/03/30 12:51:07 1.34
-+++ src/binutils/stabs.c 2013/01/15 13:41:05 1.35
-@@ -2758,9 +2758,8 @@
- argtypes string is the mangled form of the argument
- types, and the full type and the physical name must be
- extracted from them. */
-- if (! stub)
-- physname = argtypes;
-- else
-+ physname = argtypes;
-+ if (stub)
- {
- debug_type class_type, return_type;
-
-@@ -2879,9 +2878,7 @@
- || CONST_STRNEQ (argtypes, "__dt"));
- is_v3 = argtypes[0] == '_' && argtypes[1] == 'Z';
-
-- if (is_destructor || is_full_physname_constructor || is_v3)
-- *pphysname = argtypes;
-- else
-+ if (!(is_destructor || is_full_physname_constructor || is_v3))
- {
- unsigned int len;
- const char *const_prefix;
-

Generated by cgit