8ae002
From d2cd5e641efe08a4f5f467ec16297a704a391e81 Mon Sep 17 00:00:00 2001
8ae002
From: Stefan Liebler <stli@linux.vnet.ibm.com>
8ae002
Date: Mon, 7 Nov 2016 16:06:01 +0100
8ae002
Subject: [PATCH 07/17] S390: Fix remaining ONE_DIRECTION warning messages
8ae002
8ae002
upstream commit f349489e7e5b5341a9c1a590e9a41c2e07d3bdbb
8ae002
8ae002
This patch fixes the remaining ONE_DIRECTION warnings for s390 specific conversions.
8ae002
It defines ONE_DIRECTION to 0 like the patch from Steve Ellcey:
8ae002
https://www.sourceware.org/ml/libc-alpha/2014-05/msg00039.html
8ae002
8ae002
    Changelog:
8ae002
    * sysdeps/s390/s390-64/utf16-utf32-z9.c
8ae002
    (ONE_DIRECTION): Define.
8ae002
    * sysdeps/s390/s390-64/utf8-utf16-z9.c
8ae002
    (ONE_DIRECTION): Define.
8ae002
    * sysdeps/s390/s390-64/utf8-utf32-z9.c
8ae002
    (ONE_DIRECTION): Define.
8ae002
---
8ae002
 sysdeps/s390/s390-64/utf16-utf32-z9.c | 1 +
8ae002
 sysdeps/s390/s390-64/utf8-utf16-z9.c  | 1 +
8ae002
 sysdeps/s390/s390-64/utf8-utf32-z9.c  | 1 +
8ae002
 3 files changed, 3 insertions(+)
8ae002
8ae002
diff --git a/sysdeps/s390/s390-64/utf16-utf32-z9.c b/sysdeps/s390/s390-64/utf16-utf32-z9.c
8ae002
index 94a1a33..ddc42fe 100644
8ae002
--- a/sysdeps/s390/s390-64/utf16-utf32-z9.c
8ae002
+++ b/sysdeps/s390/s390-64/utf16-utf32-z9.c
8ae002
@@ -44,6 +44,7 @@
8ae002
 #define FROM_LOOP		from_utf16_loop
8ae002
 #define TO_LOOP			to_utf16_loop
8ae002
 #define FROM_DIRECTION		(dir == from_utf16)
8ae002
+#define ONE_DIRECTION           0
8ae002
 #define PREPARE_LOOP							\
8ae002
   enum direction dir = ((struct utf16_data *) step->__data)->dir;	\
8ae002
   int emit_bom = ((struct utf16_data *) step->__data)->emit_bom;	\
8ae002
diff --git a/sysdeps/s390/s390-64/utf8-utf16-z9.c b/sysdeps/s390/s390-64/utf8-utf16-z9.c
8ae002
index 8e0515c..2c2d92c 100644
8ae002
--- a/sysdeps/s390/s390-64/utf8-utf16-z9.c
8ae002
+++ b/sysdeps/s390/s390-64/utf8-utf16-z9.c
8ae002
@@ -42,6 +42,7 @@
8ae002
 #define FROM_LOOP		from_utf8_loop
8ae002
 #define TO_LOOP			to_utf8_loop
8ae002
 #define FROM_DIRECTION		(dir == from_utf8)
8ae002
+#define ONE_DIRECTION           0
8ae002
 #define PREPARE_LOOP							\
8ae002
   enum direction dir = ((struct utf8_data *) step->__data)->dir;	\
8ae002
   int emit_bom = ((struct utf8_data *) step->__data)->emit_bom;		\
8ae002
diff --git a/sysdeps/s390/s390-64/utf8-utf32-z9.c b/sysdeps/s390/s390-64/utf8-utf32-z9.c
8ae002
index c657a38..c582155 100644
8ae002
--- a/sysdeps/s390/s390-64/utf8-utf32-z9.c
8ae002
+++ b/sysdeps/s390/s390-64/utf8-utf32-z9.c
8ae002
@@ -44,6 +44,7 @@
8ae002
 #define FROM_LOOP		from_utf8_loop
8ae002
 #define TO_LOOP			to_utf8_loop
8ae002
 #define FROM_DIRECTION		(dir == from_utf8)
8ae002
+#define ONE_DIRECTION           0
8ae002
 #define PREPARE_LOOP							\
8ae002
   enum direction dir = ((struct utf8_data *) step->__data)->dir;	\
8ae002
   int emit_bom = ((struct utf8_data *) step->__data)->emit_bom;		\
8ae002
-- 
8ae002
1.8.3.1
8ae002