blob: d2c88d2354db23cfab9f94ce231ed8915dbe8b54 [file] [log] [blame]
Andrew Geissler635e0e42020-08-21 15:58:33 -05001From 10aef8f0671d814aaf910ababc0225cf6f0a46e8 Mon Sep 17 00:00:00 2001
Andrew Geissler82c905d2020-04-13 13:39:40 -05002From: Martin Jansa <martin.jansa@gmail.com>
3Date: Mon, 17 Dec 2018 21:36:18 +0000
Andrew Geissler635e0e42020-08-21 15:58:33 -05004Subject: [PATCH 27/29] locale: prevent maybe-uninitialized errors with -Os [BZ
Andrew Geissler82c905d2020-04-13 13:39:40 -05005 #19444]
6
7Fixes following error when building for aarch64 with -Os:
8| In file included from strcoll_l.c:43:
9| strcoll_l.c: In function '__strcoll_l':
10| ../locale/weight.h:31:26: error: 'seq2.back_us' may be used uninitialized in this function [-Werror=maybe-uninitialized]
11| int_fast32_t i = table[*(*cpp)++];
12| ^~~~~~~~~
13| strcoll_l.c:304:18: note: 'seq2.back_us' was declared here
14| coll_seq seq1, seq2;
15| ^~~~
16| In file included from strcoll_l.c:43:
17| ../locale/weight.h:31:26: error: 'seq1.back_us' may be used uninitialized in this function [-Werror=maybe-uninitialized]
18| int_fast32_t i = table[*(*cpp)++];
19| ^~~~~~~~~
20| strcoll_l.c:304:12: note: 'seq1.back_us' was declared here
21| coll_seq seq1, seq2;
22| ^~~~
23
24 Partial fix for [BZ #19444]
25 * locale/weight.h: Fix build with -Os.
26
27Upstream-Status: Submitted [https://patchwork.ozlabs.org/patch/1014766]
28
29Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
30Signed-off-by: Khem Raj <raj.khem@gmail.com>
31---
32 locale/weight.h | 7 +++++++
33 1 file changed, 7 insertions(+)
34
35diff --git a/locale/weight.h b/locale/weight.h
36index e071253f85..2889c395f1 100644
37--- a/locale/weight.h
38+++ b/locale/weight.h
39@@ -28,7 +28,14 @@ findidx (const int32_t *table,
40 const unsigned char *extra,
41 const unsigned char **cpp, size_t len)
42 {
43+ /* With GCC 8 when compiling with -Os the compiler warns that
44+ seq1.back_us and seq2.back_us might be used uninitialized.
45+ This uninitialized use is impossible for the same reason
46+ as described in comments in locale/weightwc.h. */
47+ DIAG_PUSH_NEEDS_COMMENT;
48+ DIAG_IGNORE_Os_NEEDS_COMMENT (8, "-Wmaybe-uninitialized");
49 int_fast32_t i = table[*(*cpp)++];
50+ DIAG_POP_NEEDS_COMMENT;
51 const unsigned char *cp;
52 const unsigned char *usrc;
53
Andrew Geissler635e0e42020-08-21 15:58:33 -050054--
552.27.0
56