|
From: <sv...@va...> - 2016-10-07 07:13:30
|
Author: cborntra
Date: Fri Oct 7 08:13:24 2016
New Revision: 16028
Log:
s390/highword fix compile warning with some compilers
Modified:
trunk/none/tests/s390x/high-word.c
Modified: trunk/none/tests/s390x/high-word.c
==============================================================================
--- trunk/none/tests/s390x/high-word.c (original)
+++ trunk/none/tests/s390x/high-word.c Fri Oct 7 08:13:24 2016
@@ -5,8 +5,8 @@
#define BRASLCLOBBER "0","1","2","3","4","5","14", \
"f0","f1","f2","f3","f4","f5","f6","f7","memory","cc"
-static void inner_iter() { putchar('.'); }
-static void outer_iter() { putchar('+'); }
+void inner_iter() { putchar('.'); }
+void outer_iter() { putchar('+'); }
static void
check_brcth(int m, int n)
|