summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-6.3/ubsan-fix-check-empty-string.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-6.3/ubsan-fix-check-empty-string.patch')
-rw-r--r--meta/recipes-devtools/gcc/gcc-6.3/ubsan-fix-check-empty-string.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-6.3/ubsan-fix-check-empty-string.patch b/meta/recipes-devtools/gcc/gcc-6.3/ubsan-fix-check-empty-string.patch
deleted file mode 100644
index c0127198e0..0000000000
--- a/meta/recipes-devtools/gcc/gcc-6.3/ubsan-fix-check-empty-string.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1From 8db2cf6353c13f2a84cbe49b689654897906c499 Mon Sep 17 00:00:00 2001
2From: kyukhin <kyukhin@138bc75d-0d04-0410-961f-82ee72b054a4>
3Date: Sat, 3 Sep 2016 10:57:05 +0000
4Subject: [PATCH] gcc/ * ubsan.c (ubsan_use_new_style_p): Fix check for empty
5 string.
6
7git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@239971 138bc75d-0d04-0410-961f-82ee72b054a4
8
9Upstream-Status: Backport
10Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
11
12---
13 gcc/ubsan.c | 2 +-
14 2 files changed, 5 insertions(+), 1 deletion(-)
15
16Index: gcc-6.3.0/gcc/ubsan.c
17===================================================================
18--- gcc-6.3.0.orig/gcc/ubsan.c
19+++ gcc-6.3.0/gcc/ubsan.c
20@@ -1471,7 +1471,7 @@ ubsan_use_new_style_p (location_t loc)
21
22 expanded_location xloc = expand_location (loc);
23 if (xloc.file == NULL || strncmp (xloc.file, "\1", 2) == 0
24- || xloc.file == '\0' || xloc.file[0] == '\xff'
25+ || xloc.file[0] == '\0' || xloc.file[0] == '\xff'
26 || xloc.file[1] == '\xff')
27 return false;
28