summaryrefslogtreecommitdiff
path: root/util/crossgcc/patches/gcc-6.3.0_pointer_integer.patch
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@chromium.org>2018-05-02 17:13:34 +0200
committerNico Huber <nico.h@gmx.de>2018-06-28 13:38:13 +0000
commitb1d26f0e9261ec4070e8561406853fe5bddeb27c (patch)
tree7c175eeae95536bb8e46963a2fcecc326edf1379 /util/crossgcc/patches/gcc-6.3.0_pointer_integer.patch
parent1ce225b5a39d81e49f04497ce23ebb672b57eb6a (diff)
downloadcoreboot-b1d26f0e9261ec4070e8561406853fe5bddeb27c.tar.xz
util/crossgcc: update to gcc 8.1.0 and binutils 2.30
Also update patches as necessary. Change-Id: I1e8074954d5d7a4eff590abb7439e9be7d3762aa Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: https://review.coreboot.org/25997 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/crossgcc/patches/gcc-6.3.0_pointer_integer.patch')
-rw-r--r--util/crossgcc/patches/gcc-6.3.0_pointer_integer.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/util/crossgcc/patches/gcc-6.3.0_pointer_integer.patch b/util/crossgcc/patches/gcc-6.3.0_pointer_integer.patch
deleted file mode 100644
index f34d6cc36e..0000000000
--- a/util/crossgcc/patches/gcc-6.3.0_pointer_integer.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 8db2cf6353c13f2a84cbe49b689654897906c499 Mon Sep 17 00:00:00 2001
-From: kyukhin <kyukhin@138bc75d-0d04-0410-961f-82ee72b054a4>
-Date: Sat, 3 Sep 2016 10:57:05 +0000
-Subject: [PATCH] gcc/ * ubsan.c (ubsan_use_new_style_p): Fix check for empty
- string.
-
-git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@239971 138bc75d-0d04-0410-961f-82ee72b054a4
----
- gcc/ubsan.c | 2 +-
- 2 files changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/gcc/ubsan.c b/gcc/ubsan.c
-index 5cbc98dbabb..d3bd8e3393d 100644
---- a/gcc/ubsan.c
-+++ b/gcc/ubsan.c
-@@ -1469,7 +1469,7 @@ ubsan_use_new_style_p (location_t loc)
-
- expanded_location xloc = expand_location (loc);
- if (xloc.file == NULL || strncmp (xloc.file, "\1", 2) == 0
-- || xloc.file == '\0' || xloc.file[0] == '\xff'
-+ || xloc.file[0] == '\0' || xloc.file[0] == '\xff'
- || xloc.file[1] == '\xff')
- return false;
-
---
-2.13.0
-