This is a note to let you know that I've just added the patch titled
Revert "tty: pty: Fix race condition between release_one_tty and
to my tty git tree which can be found at
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
in the tty-testing branch.
The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)
The patch will be merged to the tty-next branch sometime soon,
after it passes testing, and the merge window is open.
If you have any questions about this process, please let me know.
>From 0eae4686a128d87503863a261e84887750c8bc68 Mon Sep 17 00:00:00 2001
From: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Date: Fri, 29 Mar 2019 15:47:40 +0100
Subject: Revert "tty: pty: Fix race condition between release_one_tty and
pty_write"
This reverts commit b9ca5f8560af244489b4a1bc1ae88b341f24bc95 as 0-day
shows it has a circular locking dependency.
Fixes: b9ca5f8560af ("tty: pty: Fix race condition between release_one_tty and pty_write")
Reported-by: kernel test robot <lkp(a)intel.com>
Cc: Sahara <keun-o.park(a)darkmatter.ae>
Cc: stable <stable(a)vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
---
drivers/tty/pty.c | 7 -------
drivers/tty/tty_io.c | 3 ---
2 files changed, 10 deletions(-)
diff --git a/drivers/tty/pty.c b/drivers/tty/pty.c
index ef72031ab5b9..00099a8439d2 100644
--- a/drivers/tty/pty.c
+++ b/drivers/tty/pty.c
@@ -116,12 +116,6 @@ static int pty_write(struct tty_struct *tty, const unsigned char *buf, int c)
if (tty->stopped)
return 0;
- mutex_lock(&tty_mutex);
- if (to->magic != TTY_MAGIC) {
- mutex_unlock(&tty_mutex);
- return -EIO;
- }
-
if (c > 0) {
spin_lock_irqsave(&to->port->lock, flags);
/* Stuff the data into the input queue of the other end */
@@ -131,7 +125,6 @@ static int pty_write(struct tty_struct *tty, const unsigned char *buf, int c)
tty_flip_buffer_push(to->port);
spin_unlock_irqrestore(&to->port->lock, flags);
}
- mutex_unlock(&tty_mutex);
return c;
}
diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c
index c27777f3b8c4..5fa250157025 100644
--- a/drivers/tty/tty_io.c
+++ b/drivers/tty/tty_io.c
@@ -1448,13 +1448,10 @@ static void release_one_tty(struct work_struct *work)
struct tty_driver *driver = tty->driver;
struct module *owner = driver->owner;
- mutex_lock(&tty_mutex);
if (tty->ops->cleanup)
tty->ops->cleanup(tty);
tty->magic = 0;
- mutex_unlock(&tty_mutex);
-
tty_driver_kref_put(driver);
module_put(owner);
--
2.21.0
This is a note to let you know that I've just added the patch titled
USB: serial: mos7720: fix mos_parport refcount imbalance on error
to my usb git tree which can be found at
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
in the usb-linus branch.
The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)
The patch will hopefully also be merged in Linus's tree for the
next -rc kernel release.
If you have any questions about this process, please let me know.
>From 2908b076f5198d231de62713cb2b633a3a4b95ac Mon Sep 17 00:00:00 2001
From: Lin Yi <teroincn(a)163.com>
Date: Wed, 20 Mar 2019 19:04:56 +0800
Subject: USB: serial: mos7720: fix mos_parport refcount imbalance on error
path
The write_parport_reg_nonblock() helper takes a reference to the struct
mos_parport, but failed to release it in a couple of error paths after
allocation failures, leading to a memory leak.
Johan said that move the kref_get() and mos_parport assignment to the
end of urbtrack initialisation is a better way, so move it. and
mos_parport do not used until urbtrack initialisation.
Signed-off-by: Lin Yi <teroincn(a)163.com>
Fixes: b69578df7e98 ("USB: usbserial: mos7720: add support for parallel port on moschip 7715")
Cc: stable <stable(a)vger.kernel.org> # 2.6.35
Signed-off-by: Johan Hovold <johan(a)kernel.org>
---
drivers/usb/serial/mos7720.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/usb/serial/mos7720.c b/drivers/usb/serial/mos7720.c
index fc52ac75fbf6..18110225d506 100644
--- a/drivers/usb/serial/mos7720.c
+++ b/drivers/usb/serial/mos7720.c
@@ -366,8 +366,6 @@ static int write_parport_reg_nonblock(struct mos7715_parport *mos_parport,
if (!urbtrack)
return -ENOMEM;
- kref_get(&mos_parport->ref_count);
- urbtrack->mos_parport = mos_parport;
urbtrack->urb = usb_alloc_urb(0, GFP_ATOMIC);
if (!urbtrack->urb) {
kfree(urbtrack);
@@ -388,6 +386,8 @@ static int write_parport_reg_nonblock(struct mos7715_parport *mos_parport,
usb_sndctrlpipe(usbdev, 0),
(unsigned char *)urbtrack->setup,
NULL, 0, async_complete, urbtrack);
+ kref_get(&mos_parport->ref_count);
+ urbtrack->mos_parport = mos_parport;
kref_init(&urbtrack->ref_count);
INIT_LIST_HEAD(&urbtrack->urblist_entry);
--
2.21.0
This is a note to let you know that I've just added the patch titled
USB: serial: cp210x: add new device id
to my usb git tree which can be found at
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
in the usb-linus branch.
The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)
The patch will hopefully also be merged in Linus's tree for the
next -rc kernel release.
If you have any questions about this process, please let me know.
>From a595ecdd5f60b2d93863cebb07eec7f935839b54 Mon Sep 17 00:00:00 2001
From: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Date: Wed, 27 Mar 2019 10:11:14 +0900
Subject: USB: serial: cp210x: add new device id
Lorenz Messtechnik has a device that is controlled by the cp210x driver,
so add the device id to the driver. The device id was provided by
Silicon-Labs for the devices from this vendor.
Reported-by: Uli <t9cpu(a)web.de>
Signed-off-by: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Cc: stable <stable(a)vger.kernel.org>
Signed-off-by: Johan Hovold <johan(a)kernel.org>
---
drivers/usb/serial/cp210x.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c
index fffe23ab0189..979bef9bfb6b 100644
--- a/drivers/usb/serial/cp210x.c
+++ b/drivers/usb/serial/cp210x.c
@@ -80,6 +80,7 @@ static const struct usb_device_id id_table[] = {
{ USB_DEVICE(0x10C4, 0x804E) }, /* Software Bisque Paramount ME build-in converter */
{ USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */
{ USB_DEVICE(0x10C4, 0x8054) }, /* Enfora GSM2228 */
+ { USB_DEVICE(0x10C4, 0x8056) }, /* Lorenz Messtechnik devices */
{ USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */
{ USB_DEVICE(0x10C4, 0x806F) }, /* IMS USB to RS422 Converter Cable */
{ USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */
--
2.21.0
This is a note to let you know that I've just added the patch titled
USB: serial: option: set driver_info for SIM5218 and compatibles
to my usb git tree which can be found at
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
in the usb-linus branch.
The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)
The patch will hopefully also be merged in Linus's tree for the
next -rc kernel release.
If you have any questions about this process, please let me know.
>From f8df5c2c3e2df5ffaf9fb5503da93d477a8c7db4 Mon Sep 17 00:00:00 2001
From: Mans Rullgard <mans(a)mansr.com>
Date: Tue, 26 Feb 2019 17:07:10 +0000
Subject: USB: serial: option: set driver_info for SIM5218 and compatibles
The SIMCom SIM5218 and compatible devices have 5 USB interfaces, only 4
of which are serial ports. The fifth is a network interface supported
by the qmi-wwan driver. Furthermore, the serial ports do not support
modem control signals. Add driver_info flags to reflect this.
Signed-off-by: Mans Rullgard <mans(a)mansr.com>
Fixes: ec0cd94d881c ("usb: option: add SIMCom SIM5218")
Cc: stable <stable(a)vger.kernel.org> # 3.2
Signed-off-by: Johan Hovold <johan(a)kernel.org>
---
drivers/usb/serial/option.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c
index 561d0b641120..db5ece767d59 100644
--- a/drivers/usb/serial/option.c
+++ b/drivers/usb/serial/option.c
@@ -1067,7 +1067,8 @@ static const struct usb_device_id option_ids[] = {
.driver_info = RSVD(3) },
{ USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6613)}, /* Onda H600/ZTE MF330 */
{ USB_DEVICE(QUALCOMM_VENDOR_ID, 0x0023)}, /* ONYX 3G device */
- { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x9000)}, /* SIMCom SIM5218 */
+ { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x9000), /* SIMCom SIM5218 */
+ .driver_info = NCTRL(0) | NCTRL(1) | NCTRL(2) | NCTRL(3) | RSVD(4) },
/* Quectel products using Qualcomm vendor ID */
{ USB_DEVICE(QUALCOMM_VENDOR_ID, QUECTEL_PRODUCT_UC15)},
{ USB_DEVICE(QUALCOMM_VENDOR_ID, QUECTEL_PRODUCT_UC20),
--
2.21.0
This is a note to let you know that I've just added the patch titled
USB: serial: ftdi_sio: add additional NovaTech products
to my usb git tree which can be found at
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
in the usb-linus branch.
The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)
The patch will hopefully also be merged in Linus's tree for the
next -rc kernel release.
If you have any questions about this process, please let me know.
>From 422c2537ba9d42320f8ab6573940269f87095320 Mon Sep 17 00:00:00 2001
From: George McCollister <george.mccollister(a)gmail.com>
Date: Tue, 5 Mar 2019 16:05:03 -0600
Subject: USB: serial: ftdi_sio: add additional NovaTech products
Add PIDs for the NovaTech OrionLX+ and Orion I/O so they can be
automatically detected.
Signed-off-by: George McCollister <george.mccollister(a)gmail.com>
Cc: stable <stable(a)vger.kernel.org>
Signed-off-by: Johan Hovold <johan(a)kernel.org>
---
drivers/usb/serial/ftdi_sio.c | 2 ++
drivers/usb/serial/ftdi_sio_ids.h | 4 +++-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c
index 8f5b17471759..1d8461ae2c34 100644
--- a/drivers/usb/serial/ftdi_sio.c
+++ b/drivers/usb/serial/ftdi_sio.c
@@ -609,6 +609,8 @@ static const struct usb_device_id id_table_combined[] = {
.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
{ USB_DEVICE(FTDI_VID, FTDI_NT_ORIONLXM_PID),
.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
+ { USB_DEVICE(FTDI_VID, FTDI_NT_ORIONLX_PLUS_PID) },
+ { USB_DEVICE(FTDI_VID, FTDI_NT_ORION_IO_PID) },
{ USB_DEVICE(FTDI_VID, FTDI_SYNAPSE_SS200_PID) },
{ USB_DEVICE(FTDI_VID, FTDI_CUSTOMWARE_MINIPLEX_PID) },
{ USB_DEVICE(FTDI_VID, FTDI_CUSTOMWARE_MINIPLEX2_PID) },
diff --git a/drivers/usb/serial/ftdi_sio_ids.h b/drivers/usb/serial/ftdi_sio_ids.h
index b863bedb55a1..5755f0df0025 100644
--- a/drivers/usb/serial/ftdi_sio_ids.h
+++ b/drivers/usb/serial/ftdi_sio_ids.h
@@ -567,7 +567,9 @@
/*
* NovaTech product ids (FTDI_VID)
*/
-#define FTDI_NT_ORIONLXM_PID 0x7c90 /* OrionLXm Substation Automation Platform */
+#define FTDI_NT_ORIONLXM_PID 0x7c90 /* OrionLXm Substation Automation Platform */
+#define FTDI_NT_ORIONLX_PLUS_PID 0x7c91 /* OrionLX+ Substation Automation Platform */
+#define FTDI_NT_ORION_IO_PID 0x7c92 /* Orion I/O */
/*
* Synapse Wireless product ids (FTDI_VID)
--
2.21.0
This is a note to let you know that I've just added the patch titled
USB: serial: option: add support for Quectel EM12
to my usb git tree which can be found at
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
in the usb-linus branch.
The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)
The patch will hopefully also be merged in Linus's tree for the
next -rc kernel release.
If you have any questions about this process, please let me know.
>From d1252f0237238b912c3e7a51bf237acf34c97983 Mon Sep 17 00:00:00 2001
From: Kristian Evensen <kristian.evensen(a)gmail.com>
Date: Sat, 2 Mar 2019 13:35:53 +0100
Subject: USB: serial: option: add support for Quectel EM12
The Quectel EM12 is a Cat. 12 LTE modem. It behaves in the exactly the
same way as the EP06 (including the dynamic configuration behavior), so
the same checks on reserved interfaces, etc. are needed.
Signed-off-by: Kristian Evensen <kristian.evensen(a)gmail.com>
Cc: stable <stable(a)vger.kernel.org>
Signed-off-by: Johan Hovold <johan(a)kernel.org>
---
drivers/usb/serial/option.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c
index 11b21d9410f3..561d0b641120 100644
--- a/drivers/usb/serial/option.c
+++ b/drivers/usb/serial/option.c
@@ -246,6 +246,7 @@ static void option_instat_callback(struct urb *urb);
#define QUECTEL_PRODUCT_EC25 0x0125
#define QUECTEL_PRODUCT_BG96 0x0296
#define QUECTEL_PRODUCT_EP06 0x0306
+#define QUECTEL_PRODUCT_EM12 0x0512
#define CMOTECH_VENDOR_ID 0x16d8
#define CMOTECH_PRODUCT_6001 0x6001
@@ -1087,6 +1088,9 @@ static const struct usb_device_id option_ids[] = {
{ USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EP06, 0xff, 0xff, 0xff),
.driver_info = RSVD(1) | RSVD(2) | RSVD(3) | RSVD(4) | NUMEP2 },
{ USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EP06, 0xff, 0, 0) },
+ { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EM12, 0xff, 0xff, 0xff),
+ .driver_info = RSVD(1) | RSVD(2) | RSVD(3) | RSVD(4) | NUMEP2 },
+ { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EM12, 0xff, 0, 0) },
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_6001) },
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CMU_300) },
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_6003),
--
2.21.0
From: Kan Liang <kan.liang(a)linux.intel.com>
Perf fails to parse uncore event alias, for example:
# perf stat -e unc_m_clockticks -a --no-merge sleep 1
event syntax error: 'unc_m_clockticks'
\___ parser error
Current code assumes that the event alias is from one specific PMU.
To find the PMU, perf strcmps the PMU name of event alias with the real
PMU name on the system.
However, the uncore event alias may be from multiple PMUs with common
prefix. The PMU name of uncore event alias is the common prefix.
For example, UNC_M_CLOCKTICKS is clock event for iMC, which include 6
PMUs with the same prefix "uncore_imc" on a skylake server.
The real PMU names on the system for iMC are uncore_imc_0 ...
uncore_imc_5.
The strncmp is used to only check the common prefix for uncore event
alias.
With the patch:
# perf stat -e unc_m_clockticks -a --no-merge sleep 1
Performance counter stats for 'system wide':
723,594,722 unc_m_clockticks [uncore_imc_5]
724,001,954 unc_m_clockticks [uncore_imc_3]
724,042,655 unc_m_clockticks [uncore_imc_1]
724,161,001 unc_m_clockticks [uncore_imc_4]
724,293,713 unc_m_clockticks [uncore_imc_2]
724,340,901 unc_m_clockticks [uncore_imc_0]
1.002090060 seconds time elapsed
Signed-off-by: Kan Liang <kan.liang(a)linux.intel.com>
Acked-by: Jiri Olsa <jolsa(a)kernel.org>
Cc: Andi Kleen <ak(a)linux.intel.com>
Cc: Thomas Richter <tmricht(a)linux.ibm.com>
Cc: stable(a)vger.kernel.org
Fixes: ea1fa48c055f ("perf stat: Handle different PMU names with common prefix")
Link: http://lkml.kernel.org/r/1552672814-156173-1-git-send-email-kan.liang@linux…
Signed-off-by: Arnaldo Carvalho de Melo <acme(a)redhat.com>
---
tools/perf/util/pmu.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/tools/perf/util/pmu.c b/tools/perf/util/pmu.c
index 6199a3174ab9..e0429f4ef335 100644
--- a/tools/perf/util/pmu.c
+++ b/tools/perf/util/pmu.c
@@ -732,10 +732,20 @@ static void pmu_add_cpu_aliases(struct list_head *head, struct perf_pmu *pmu)
if (!is_arm_pmu_core(name)) {
pname = pe->pmu ? pe->pmu : "cpu";
+
+ /*
+ * uncore alias may be from different PMU
+ * with common prefix
+ */
+ if (pmu_is_uncore(name) &&
+ !strncmp(pname, name, strlen(pname)))
+ goto new_alias;
+
if (strcmp(pname, name))
continue;
}
+new_alias:
/* need type casts to override 'const' */
__perf_pmu__new_alias(head, NULL, (char *)pe->name,
(char *)pe->desc, (char *)pe->event,
--
2.20.1
From: Adrian Hunter <adrian.hunter(a)intel.com>
A TSC packet can slip past MTC packets so that the timestamp appears to
go backwards. One estimate is that can be up to about 40 CPU cycles,
which is certainly less than 0x1000 TSC ticks, but accept slippage an
order of magnitude more to be on the safe side.
Signed-off-by: Adrian Hunter <adrian.hunter(a)intel.com>
Cc: Jiri Olsa <jolsa(a)redhat.com>
Cc: stable(a)vger.kernel.org
Fixes: 79b58424b821c ("perf tools: Add Intel PT support for decoding MTC packets")
Link: http://lkml.kernel.org/r/20190325135135.18348-1-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme(a)redhat.com>
---
.../util/intel-pt-decoder/intel-pt-decoder.c | 20 ++++++++-----------
1 file changed, 8 insertions(+), 12 deletions(-)
diff --git a/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c b/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c
index 6e03db142091..872fab163585 100644
--- a/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c
+++ b/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c
@@ -251,19 +251,15 @@ struct intel_pt_decoder *intel_pt_decoder_new(struct intel_pt_params *params)
if (!(decoder->tsc_ctc_ratio_n % decoder->tsc_ctc_ratio_d))
decoder->tsc_ctc_mult = decoder->tsc_ctc_ratio_n /
decoder->tsc_ctc_ratio_d;
-
- /*
- * Allow for timestamps appearing to backwards because a TSC
- * packet has slipped past a MTC packet, so allow 2 MTC ticks
- * or ...
- */
- decoder->tsc_slip = multdiv(2 << decoder->mtc_shift,
- decoder->tsc_ctc_ratio_n,
- decoder->tsc_ctc_ratio_d);
}
- /* ... or 0x100 paranoia */
- if (decoder->tsc_slip < 0x100)
- decoder->tsc_slip = 0x100;
+
+ /*
+ * A TSC packet can slip past MTC packets so that the timestamp appears
+ * to go backwards. One estimate is that can be up to about 40 CPU
+ * cycles, which is certainly less than 0x1000 TSC ticks, but accept
+ * slippage an order of magnitude more to be on the safe side.
+ */
+ decoder->tsc_slip = 0x10000;
intel_pt_log("timestamp: mtc_shift %u\n", decoder->mtc_shift);
intel_pt_log("timestamp: tsc_ctc_ratio_n %u\n", decoder->tsc_ctc_ratio_n);
--
2.20.1
stable-rc/linux-4.9.y build: 197 builds: 5 failed, 192 passed, 10 errors, 3294 warnings (v4.9.166-17-g27d45aba608f)
Full Build Summary: https://kernelci.org/build/stable-rc/branch/linux-4.9.y/kernel/v4.9.166-17-…
Tree: stable-rc
Branch: linux-4.9.y
Git Describe: v4.9.166-17-g27d45aba608f
Git Commit: 27d45aba608f4baadc097133538ac24af82bf1e0
Git URL: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Built: 6 unique architectures
Build Failures Detected:
mips: mips-linux-gnu-gcc (Debian 7.3.0-28) 7.3.0
32r2el_defconfig: FAIL
bigsur_defconfig: FAIL
decstation_defconfig: FAIL
jmr3927_defconfig: FAIL
sb1250_swarm_defconfig: FAIL
Errors and Warnings Detected:
arc: arc-linux-gcc (ARCv2 ISA Linux uClibc toolchain 2017.09) 7.1.1 20170710
allnoconfig: 4 warnings
axs103_defconfig: 17 warnings
axs103_smp_defconfig: 18 warnings
nsim_hs_defconfig: 4 warnings
nsim_hs_smp_defconfig: 5 warnings
nsimosci_hs_defconfig: 7 warnings
nsimosci_hs_smp_defconfig: 8 warnings
tinyconfig: 5 warnings
vdk_hs38_defconfig: 18 warnings
vdk_hs38_smp_defconfig: 19 warnings
zebu_hs_defconfig: 4 warnings
zebu_hs_smp_defconfig: 5 warnings
mips: mips-linux-gnu-gcc (Debian 7.3.0-28) 7.3.0
allnoconfig: 52 warnings
ar7_defconfig: 52 warnings
ath25_defconfig: 52 warnings
ath79_defconfig: 52 warnings
bcm47xx_defconfig: 52 warnings
bcm63xx_defconfig: 52 warnings
bigsur_defconfig: 1 error, 56 warnings
bmips_be_defconfig: 52 warnings
bmips_stb_defconfig: 52 warnings
capcella_defconfig: 52 warnings
cavium_octeon_defconfig: 52 warnings
ci20_defconfig: 52 warnings
cobalt_defconfig: 52 warnings
db1xxx_defconfig: 52 warnings
decstation_defconfig: 4 errors, 52 warnings
e55_defconfig: 52 warnings
fuloong2e_defconfig: 52 warnings
gpr_defconfig: 52 warnings
ip22_defconfig: 52 warnings
ip27_defconfig: 52 warnings
ip28_defconfig: 52 warnings
ip32_defconfig: 52 warnings
jazz_defconfig: 52 warnings
jmr3927_defconfig: 4 errors, 52 warnings
lasat_defconfig: 52 warnings
lemote2f_defconfig: 52 warnings
loongson1b_defconfig: 52 warnings
loongson1c_defconfig: 52 warnings
loongson3_defconfig: 52 warnings
malta_defconfig: 52 warnings
malta_kvm_defconfig: 52 warnings
malta_kvm_guest_defconfig: 52 warnings
malta_qemu_32r6_defconfig: 52 warnings
maltaaprp_defconfig: 52 warnings
maltasmvp_defconfig: 52 warnings
maltasmvp_eva_defconfig: 52 warnings
maltaup_defconfig: 52 warnings
maltaup_xpa_defconfig: 52 warnings
markeins_defconfig: 52 warnings
mips_paravirt_defconfig: 52 warnings
mpc30x_defconfig: 52 warnings
msp71xx_defconfig: 52 warnings
mtx1_defconfig: 52 warnings
nlm_xlp_defconfig: 52 warnings
nlm_xlr_defconfig: 52 warnings
pic32mzda_defconfig: 52 warnings
pistachio_defconfig: 52 warnings
pnx8335_stb225_defconfig: 52 warnings
qi_lb60_defconfig: 52 warnings
rb532_defconfig: 52 warnings
rbtx49xx_defconfig: 52 warnings
rm200_defconfig: 52 warnings
rt305x_defconfig: 52 warnings
sb1250_swarm_defconfig: 1 error, 56 warnings
tb0219_defconfig: 52 warnings
tb0226_defconfig: 52 warnings
tb0287_defconfig: 52 warnings
tinyconfig: 52 warnings
workpad_defconfig: 52 warnings
xilfpga_defconfig: 52 warnings
xway_defconfig: 52 warnings
Errors summary:
4 cc1: error: '-march=r3900' requires '-mfp32'
4 cc1: error: '-march=r3000' requires '-mfp32'
1 (.text+0x1c0f0): undefined reference to `iommu_is_span_boundary'
1 (.text+0x1bd30): undefined reference to `iommu_is_span_boundary'
Warnings summary:
2806 arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
366 arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
36 fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
12 kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
12 arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
10 net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
10 net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
10 include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
8 warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
7 warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
6 fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
5 lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
4 block/cfq-iosched.c:3840:1: warning: control reaches end of non-void function [-Wreturn-type]
2 arch/arc/kernel/unwind.c:188:14: warning: 'unw_hdr_alloc' defined but not used [-Wunused-function]
================================================================================
Detailed per-defconfig build reports:
--------------------------------------------------------------------------------
32r2el_defconfig (mips, gcc-7) — FAIL, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
acs5k_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
acs5k_tiny_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arc, gcc-7) — PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
allnoconfig (i386, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arm64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (x86_64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
am200epdkit_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ar7_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
aspeed_g4_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
aspeed_g5_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
assabet_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
at91_dt_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ath25_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
ath79_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
axm55xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
axs103_defconfig (arc, gcc-7) — PASS, 0 errors, 17 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
block/cfq-iosched.c:3840:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
axs103_smp_defconfig (arc, gcc-7) — PASS, 0 errors, 18 warnings, 0 section mismatches
Warnings:
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
block/cfq-iosched.c:3840:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
badge4_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bcm2835_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bcm47xx_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
bcm63xx_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
bigsur_defconfig (mips, gcc-7) — FAIL, 1 error, 56 warnings, 0 section mismatches
Errors:
(.text+0x1c0f0): undefined reference to `iommu_is_span_boundary'
Warnings:
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
bmips_be_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
bmips_stb_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
capcella_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
cavium_octeon_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
cerfcube_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ci20_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
clps711x_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cm_x2xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cm_x300_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cns3420vb_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cobalt_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
colibri_pxa270_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
colibri_pxa300_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
collie_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
corgi_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
davinci_all_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
db1xxx_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
decstation_defconfig (mips, gcc-7) — FAIL, 4 errors, 52 warnings, 0 section mismatches
Errors:
cc1: error: '-march=r3000' requires '-mfp32'
cc1: error: '-march=r3000' requires '-mfp32'
cc1: error: '-march=r3000' requires '-mfp32'
cc1: error: '-march=r3000' requires '-mfp32'
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
defconfig (arm64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
dove_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
e55_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
ebsa110_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
efm32_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
em_x270_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ep93xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
eseries_pxa_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
exynos_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ezx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
footbridge_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
fuloong2e_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
gpr_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
h3600_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
h5000_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
hackkit_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
hisi_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
i386_defconfig (i386, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
imote2_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
imx_v4_v5_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
imx_v6_v7_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
integrator_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop13xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop32x_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop33x_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ip22_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
ip27_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
ip28_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
ip32_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
ixp4xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
jazz_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
jmr3927_defconfig (mips, gcc-7) — FAIL, 4 errors, 52 warnings, 0 section mismatches
Errors:
cc1: error: '-march=r3900' requires '-mfp32'
cc1: error: '-march=r3900' requires '-mfp32'
cc1: error: '-march=r3900' requires '-mfp32'
cc1: error: '-march=r3900' requires '-mfp32'
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
jornada720_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
keystone_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ks8695_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lart_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lasat_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
lemote2f_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
loongson1b_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
loongson1c_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
loongson3_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
lpc18xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lpc32xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lpd270_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lubbock_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
magician_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mainstone_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
malta_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
malta_kvm_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
malta_kvm_guest_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
malta_qemu_32r6_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
maltaaprp_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
maltasmvp_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
maltasmvp_eva_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
maltaup_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
maltaup_xpa_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
markeins_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
mini2440_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mips_paravirt_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
mmp2_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
moxart_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mpc30x_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
mps2_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
msp71xx_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
mtx1_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
multi_v4t_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
multi_v5_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
multi_v7_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mv78xx0_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mvebu_v5_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mvebu_v7_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mxs_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
neponset_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
netwinder_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
netx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nhk8815_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nlm_xlp_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
nlm_xlr_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
nsim_hs_defconfig (arc, gcc-7) — PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
nsim_hs_smp_defconfig (arc, gcc-7) — PASS, 0 errors, 5 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
nsimosci_hs_defconfig (arc, gcc-7) — PASS, 0 errors, 7 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
nsimosci_hs_smp_defconfig (arc, gcc-7) — PASS, 0 errors, 8 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
nuc910_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc950_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc960_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
omap1_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
omap2plus_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
orion5x_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
palmz72_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pcm027_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pic32mzda_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
pistachio_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
pleb_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pnx8335_stb225_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
prima2_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa168_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa255-idp_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa3xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa910_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
qcom_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
qi_lb60_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
raumfeld_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rb532_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
rbtx49xx_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
realview_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rm200_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
rpc_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rt305x_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
s3c2410_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
s3c6400_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
s5pv210_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sama5_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sb1250_swarm_defconfig (mips, gcc-7) — FAIL, 1 error, 56 warnings, 0 section mismatches
Errors:
(.text+0x1bd30): undefined reference to `iommu_is_span_boundary'
Warnings:
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
shannon_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
shmobile_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
simpad_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
socfpga_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear13xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear3xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear6xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spitz_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
stm32_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sunxi_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tb0219_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
tb0226_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
tb0287_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
tct_hammer_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tegra_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arc, gcc-7) — PASS, 0 errors, 5 warnings, 0 section mismatches
Warnings:
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
tinyconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
tinyconfig (x86_64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arm64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (i386, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
trizeps4_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
u300_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
u8500_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vdk_hs38_defconfig (arc, gcc-7) — PASS, 0 errors, 18 warnings, 0 section mismatches
Warnings:
arch/arc/kernel/unwind.c:188:14: warning: 'unw_hdr_alloc' defined but not used [-Wunused-function]
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
block/cfq-iosched.c:3840:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
vdk_hs38_smp_defconfig (arc, gcc-7) — PASS, 0 errors, 19 warnings, 0 section mismatches
Warnings:
arch/arc/kernel/unwind.c:188:14: warning: 'unw_hdr_alloc' defined but not used [-Wunused-function]
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
block/cfq-iosched.c:3840:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
versatile_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vexpress_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vf610m4_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
viper_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vt8500_v6_v7_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
workpad_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
x86_64_defconfig (x86_64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
xcep_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
xilfpga_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
xway_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
zebu_hs_defconfig (arc, gcc-7) — PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
zebu_hs_smp_defconfig (arc, gcc-7) — PASS, 0 errors, 5 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
zeus_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
zx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
---
For more info write to <info(a)kernelci.org>
stable-rc/linux-4.4.y build: 190 builds: 11 failed, 179 passed, 42 errors, 4434 warnings (v4.4.177-100-gefd3dd14ac50)
Full Build Summary: https://kernelci.org/build/stable-rc/branch/linux-4.4.y/kernel/v4.4.177-100…
Tree: stable-rc
Branch: linux-4.4.y
Git Describe: v4.4.177-100-gefd3dd14ac50
Git Commit: efd3dd14ac50317f7c50bb170ac3c20502a50b2f
Git URL: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Built: 6 unique architectures
Build Failures Detected:
arc: arc-linux-gcc (ARCv2 ISA Linux uClibc toolchain 2017.09) 7.1.1 20170710
axs103_defconfig: FAIL
axs103_smp_defconfig: FAIL
nsim_hs_defconfig: FAIL
nsim_hs_smp_defconfig: FAIL
nsimosci_hs_defconfig: FAIL
nsimosci_hs_smp_defconfig: FAIL
mips: mips-linux-gnu-gcc (Debian 7.3.0-28) 7.3.0
bigsur_defconfig: FAIL
decstation_defconfig: FAIL
jmr3927_defconfig: FAIL
sb1250_swarm_defconfig: FAIL
sead3micro_defconfig: FAIL
Errors and Warnings Detected:
arc: arc-linux-gcc (ARCv2 ISA Linux uClibc toolchain 2017.09) 7.1.1 20170710
allnoconfig: 678 warnings
axs103_defconfig: 20 warnings
axs103_smp_defconfig: 21 warnings
nsim_hs_defconfig: 8 warnings
nsim_hs_smp_defconfig: 9 warnings
nsimosci_hs_defconfig: 9 warnings
nsimosci_hs_smp_defconfig: 10 warnings
tinyconfig: 682 warnings
vdk_hs38_defconfig: 21 warnings
vdk_hs38_smp_defconfig: 22 warnings
arm: arm-linux-gnueabihf-gcc (Debian 7.4.0-1) 7.4.0
clps711x_defconfig: 1 warning
davinci_all_defconfig: 1 warning
lpc32xx_defconfig: 1 warning
mxs_defconfig: 1 warning
mips: mips-linux-gnu-gcc (Debian 7.3.0-28) 7.3.0
allnoconfig: 49 warnings
ar7_defconfig: 49 warnings
ath79_defconfig: 49 warnings
bcm47xx_defconfig: 49 warnings
bcm63xx_defconfig: 49 warnings
bigsur_defconfig: 16 errors, 54 warnings
bmips_be_defconfig: 49 warnings
bmips_stb_defconfig: 49 warnings
capcella_defconfig: 49 warnings
cavium_octeon_defconfig: 49 warnings
ci20_defconfig: 49 warnings
cobalt_defconfig: 49 warnings
db1xxx_defconfig: 49 warnings
decstation_defconfig: 4 errors, 49 warnings
e55_defconfig: 49 warnings
fuloong2e_defconfig: 49 warnings
gpr_defconfig: 49 warnings
ip22_defconfig: 49 warnings
ip27_defconfig: 49 warnings
ip28_defconfig: 49 warnings
ip32_defconfig: 49 warnings
jazz_defconfig: 49 warnings
jmr3927_defconfig: 4 errors, 49 warnings
lasat_defconfig: 49 warnings
lemote2f_defconfig: 49 warnings
loongson3_defconfig: 49 warnings
ls1b_defconfig: 49 warnings
malta_defconfig: 49 warnings
malta_kvm_defconfig: 49 warnings
malta_kvm_guest_defconfig: 49 warnings
malta_qemu_32r6_defconfig: 49 warnings
maltaaprp_defconfig: 49 warnings
maltasmvp_defconfig: 49 warnings
maltasmvp_eva_defconfig: 49 warnings
maltaup_defconfig: 49 warnings
maltaup_xpa_defconfig: 49 warnings
markeins_defconfig: 49 warnings
mips_paravirt_defconfig: 49 warnings
mpc30x_defconfig: 49 warnings
msp71xx_defconfig: 49 warnings
mtx1_defconfig: 49 warnings
nlm_xlp_defconfig: 49 warnings
nlm_xlr_defconfig: 49 warnings
pistachio_defconfig: 49 warnings
pnx8335_stb225_defconfig: 49 warnings
qi_lb60_defconfig: 49 warnings
rb532_defconfig: 49 warnings
rbtx49xx_defconfig: 49 warnings
rm200_defconfig: 49 warnings
rt305x_defconfig: 49 warnings
sb1250_swarm_defconfig: 16 errors, 54 warnings
sead3_defconfig: 49 warnings
sead3micro_defconfig: 2 errors, 49 warnings
tb0219_defconfig: 49 warnings
tb0226_defconfig: 49 warnings
tb0287_defconfig: 49 warnings
tinyconfig: 49 warnings
workpad_defconfig: 49 warnings
xilfpga_defconfig: 49 warnings
xway_defconfig: 49 warnings
Errors summary:
4 cc1: error: '-march=r3900' requires '-mfp32'
4 cc1: error: '-march=r3000' requires '-mfp32'
2 include/linux/swiotlb.h:96:21: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:92:26: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:87:27: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:83:13: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:79:9: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:75:14: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:70:29: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:67:13: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:65:63: error: 'struct page' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:53:27: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:49:28: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:45:13: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:113:20: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'swiotlb_free'
2 include/linux/swiotlb.h:104:24: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 include/linux/swiotlb.h:100:29: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
2 arch/mips/sibyte/common/dma.c:11:13: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'plat_swiotlb_setup'
1 arch/mips/kernel/genex.S:271: Error: branch to a symbol in another ISA mode
1 arch/mips/kernel/genex.S:152: Error: branch to a symbol in another ISA mode
Warnings summary:
2580 arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
705 arc-linux-gcc: warning: '-mno-mpy' is deprecated
670 cc1: warning: '-mno-mpy' is deprecated
360 arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
36 fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
10 kernel/sched/core.c:3089:1: warning: control reaches end of non-void function [-Wreturn-type]
8 warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
8 net/ipv4/tcp_input.c:4251:49: warning: array subscript is above array bounds [-Warray-bounds]
8 net/core/ethtool.c:260:1: warning: control reaches end of non-void function [-Wreturn-type]
8 include/linux/sunrpc/svc_xprt.h:174:1: warning: control reaches end of non-void function [-Wreturn-type]
8 arch/arc/include/asm/elf.h:58:29: warning: integer overflow in expression [-Woverflow]
7 warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
6 fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
4 lib/cpumask.c:178:1: warning: control reaches end of non-void function [-Wreturn-type]
4 drivers/base/regmap/regmap-mmio.c:86:1: warning: control reaches end of non-void function [-Wreturn-type]
4 block/cfq-iosched.c:3783:1: warning: control reaches end of non-void function [-Wreturn-type]
2 cc1: all warnings being treated as errors
2 arch/arc/kernel/unwind.c:186:14: warning: 'unw_hdr_alloc' defined but not used [-Wunused-function]
1 arch/arm/mach-mxs/mach-mxs.c:285:26: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier]
1 arch/arm/mach-lpc32xx/phy3250.c:215:36: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier]
1 arch/arm/mach-davinci/da8xx-dt.c:23:34: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier]
1 arch/arm/mach-clps711x/board-autcpu12.c:163:26: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier]
================================================================================
Detailed per-defconfig build reports:
--------------------------------------------------------------------------------
acs5k_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
acs5k_tiny_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
allnoconfig (arc, gcc-7) — PASS, 0 errors, 678 warnings, 0 section mismatches
Warnings:
arc-linux-gcc: warning: '-mno-mpy' is deprecated
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
kernel/sched/core.c:3089:1: warning: control reaches end of non-void function [-Wreturn-type]
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
--------------------------------------------------------------------------------
allnoconfig (i386, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arm64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (x86_64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
am200epdkit_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ar7_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
assabet_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
at91_dt_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ath79_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
axm55xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
axs103_defconfig (arc, gcc-7) — FAIL, 0 errors, 20 warnings, 0 section mismatches
Warnings:
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
kernel/sched/core.c:3089:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
block/cfq-iosched.c:3783:1: warning: control reaches end of non-void function [-Wreturn-type]
drivers/base/regmap/regmap-mmio.c:86:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/elf.h:58:29: warning: integer overflow in expression [-Woverflow]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:260:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4251:49: warning: array subscript is above array bounds [-Warray-bounds]
include/linux/sunrpc/svc_xprt.h:174:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
axs103_smp_defconfig (arc, gcc-7) — FAIL, 0 errors, 21 warnings, 0 section mismatches
Warnings:
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
kernel/sched/core.c:3089:1: warning: control reaches end of non-void function [-Wreturn-type]
drivers/base/regmap/regmap-mmio.c:86:1: warning: control reaches end of non-void function [-Wreturn-type]
block/cfq-iosched.c:3783:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
lib/cpumask.c:178:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:260:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4251:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/elf.h:58:29: warning: integer overflow in expression [-Woverflow]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:174:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
badge4_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bcm2835_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bcm47xx_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
bcm63xx_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
bcm_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bigsur_defconfig (mips, gcc-7) — FAIL, 16 errors, 54 warnings, 0 section mismatches
Errors:
include/linux/swiotlb.h:45:13: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:49:28: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:53:27: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:67:13: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:65:63: error: 'struct page' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:70:29: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:75:14: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:79:9: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:83:13: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:87:27: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:92:26: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:96:21: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:100:29: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:104:24: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:113:20: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'swiotlb_free'
arch/mips/sibyte/common/dma.c:11:13: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'plat_swiotlb_setup'
Warnings:
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
cc1: all warnings being treated as errors
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
bmips_be_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
bmips_stb_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
capcella_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
cavium_octeon_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
cerfcube_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ci20_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
clps711x_defconfig (arm, gcc-7) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
arch/arm/mach-clps711x/board-autcpu12.c:163:26: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier]
--------------------------------------------------------------------------------
cm_x2xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cm_x300_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cns3420vb_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cobalt_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
colibri_pxa270_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
colibri_pxa300_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
collie_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
corgi_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
davinci_all_defconfig (arm, gcc-7) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
arch/arm/mach-davinci/da8xx-dt.c:23:34: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier]
--------------------------------------------------------------------------------
db1xxx_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
decstation_defconfig (mips, gcc-7) — FAIL, 4 errors, 49 warnings, 0 section mismatches
Errors:
cc1: error: '-march=r3000' requires '-mfp32'
cc1: error: '-march=r3000' requires '-mfp32'
cc1: error: '-march=r3000' requires '-mfp32'
cc1: error: '-march=r3000' requires '-mfp32'
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
defconfig (arm64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
dove_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
e55_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
ebsa110_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
efm32_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
em_x270_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ep93xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
eseries_pxa_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
exynos_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ezx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
footbridge_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
fuloong2e_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
gpr_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
h3600_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
h5000_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
hackkit_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
hisi_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
i386_defconfig (i386, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
imote2_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
imx_v4_v5_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
imx_v6_v7_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
integrator_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop13xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop32x_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop33x_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ip22_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
ip27_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
ip28_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
ip32_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
ixp4xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
jazz_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
jmr3927_defconfig (mips, gcc-7) — FAIL, 4 errors, 49 warnings, 0 section mismatches
Errors:
cc1: error: '-march=r3900' requires '-mfp32'
cc1: error: '-march=r3900' requires '-mfp32'
cc1: error: '-march=r3900' requires '-mfp32'
cc1: error: '-march=r3900' requires '-mfp32'
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
jornada720_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
keystone_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ks8695_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lart_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lasat_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
lemote2f_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
loongson3_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
lpc18xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lpc32xx_defconfig (arm, gcc-7) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
arch/arm/mach-lpc32xx/phy3250.c:215:36: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier]
--------------------------------------------------------------------------------
lpd270_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ls1b_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
lubbock_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
magician_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mainstone_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
malta_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
malta_kvm_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
malta_kvm_guest_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
malta_qemu_32r6_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
maltaaprp_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
maltasmvp_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
maltasmvp_eva_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
maltaup_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
maltaup_xpa_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
markeins_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
mini2440_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mips_paravirt_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
mmp2_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
moxart_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mpc30x_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
msp71xx_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
mtx1_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
multi_v5_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
multi_v7_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mv78xx0_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mvebu_v5_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mvebu_v7_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mxs_defconfig (arm, gcc-7) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
arch/arm/mach-mxs/mach-mxs.c:285:26: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier]
--------------------------------------------------------------------------------
neponset_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
netwinder_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
netx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nhk8815_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nlm_xlp_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
nlm_xlr_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
nsim_hs_defconfig (arc, gcc-7) — FAIL, 0 errors, 8 warnings, 0 section mismatches
Warnings:
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
kernel/sched/core.c:3089:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:260:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/elf.h:58:29: warning: integer overflow in expression [-Woverflow]
net/ipv4/tcp_input.c:4251:49: warning: array subscript is above array bounds [-Warray-bounds]
include/linux/sunrpc/svc_xprt.h:174:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
nsim_hs_smp_defconfig (arc, gcc-7) — FAIL, 0 errors, 9 warnings, 0 section mismatches
Warnings:
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
kernel/sched/core.c:3089:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:260:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/elf.h:58:29: warning: integer overflow in expression [-Woverflow]
lib/cpumask.c:178:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:174:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4251:49: warning: array subscript is above array bounds [-Warray-bounds]
--------------------------------------------------------------------------------
nsimosci_hs_defconfig (arc, gcc-7) — FAIL, 0 errors, 9 warnings, 0 section mismatches
Warnings:
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
kernel/sched/core.c:3089:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:260:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/elf.h:58:29: warning: integer overflow in expression [-Woverflow]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4251:49: warning: array subscript is above array bounds [-Warray-bounds]
include/linux/sunrpc/svc_xprt.h:174:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
nsimosci_hs_smp_defconfig (arc, gcc-7) — FAIL, 0 errors, 10 warnings, 0 section mismatches
Warnings:
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
kernel/sched/core.c:3089:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/elf.h:58:29: warning: integer overflow in expression [-Woverflow]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
lib/cpumask.c:178:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:260:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4251:49: warning: array subscript is above array bounds [-Warray-bounds]
include/linux/sunrpc/svc_xprt.h:174:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
nuc910_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc950_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc960_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
omap1_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
omap2plus_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
orion5x_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
palmz72_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pcm027_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pistachio_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
pleb_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pnx8335_stb225_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
prima2_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa168_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa255-idp_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa3xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa910_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
qcom_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
qi_lb60_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
raumfeld_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rb532_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
rbtx49xx_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
realview-smp_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
realview_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rm200_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
rpc_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rt305x_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
s3c2410_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
s3c6400_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
s5pv210_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sama5_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sb1250_swarm_defconfig (mips, gcc-7) — FAIL, 16 errors, 54 warnings, 0 section mismatches
Errors:
include/linux/swiotlb.h:45:13: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:49:28: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:53:27: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:67:13: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:65:63: error: 'struct page' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:70:29: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:75:14: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:79:9: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:83:13: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:87:27: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:92:26: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:96:21: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:100:29: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:104:24: error: 'enum dma_data_direction' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
include/linux/swiotlb.h:113:20: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'swiotlb_free'
arch/mips/sibyte/common/dma.c:11:13: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'plat_swiotlb_setup'
Warnings:
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
warning: (SIBYTE_SWARM && SIBYTE_SENTOSA && SIBYTE_BIGSUR && SWIOTLB_XEN && AMD_IOMMU) selects SWIOTLB which has unmet direct dependencies (CAVIUM_OCTEON_SOC || MACH_LOONGSON64 && CPU_LOONGSON3 || NLM_XLP_BOARD || NLM_XLR_BOARD)
cc1: all warnings being treated as errors
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
sead3_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
sead3micro_defconfig (mips, gcc-7) — FAIL, 2 errors, 49 warnings, 0 section mismatches
Errors:
arch/mips/kernel/genex.S:152: Error: branch to a symbol in another ISA mode
arch/mips/kernel/genex.S:271: Error: branch to a symbol in another ISA mode
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
shannon_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
shmobile_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
simpad_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
socfpga_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear13xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear3xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear6xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spitz_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
stm32_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sunxi_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tb0219_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
tb0226_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
tb0287_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
tct_hammer_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tegra_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
tinyconfig (arc, gcc-7) — PASS, 0 errors, 682 warnings, 0 section mismatches
Warnings:
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
kernel/sched/core.c:3089:1: warning: control reaches end of non-void function [-Wreturn-type]
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
--------------------------------------------------------------------------------
tinyconfig (arm64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (i386, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (x86_64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
trizeps4_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
u300_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
u8500_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vdk_hs38_defconfig (arc, gcc-7) — PASS, 0 errors, 21 warnings, 0 section mismatches
Warnings:
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arch/arc/kernel/unwind.c:186:14: warning: 'unw_hdr_alloc' defined but not used [-Wunused-function]
kernel/sched/core.c:3089:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
block/cfq-iosched.c:3783:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
drivers/base/regmap/regmap-mmio.c:86:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:260:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4251:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/elf.h:58:29: warning: integer overflow in expression [-Woverflow]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:174:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
vdk_hs38_smp_defconfig (arc, gcc-7) — PASS, 0 errors, 22 warnings, 0 section mismatches
Warnings:
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
arch/arc/kernel/unwind.c:186:14: warning: 'unw_hdr_alloc' defined but not used [-Wunused-function]
kernel/sched/core.c:3089:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
block/cfq-iosched.c:3783:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:411:1: warning: control reaches end of non-void function [-Wreturn-type]
drivers/base/regmap/regmap-mmio.c:86:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:260:1: warning: control reaches end of non-void function [-Wreturn-type]
lib/cpumask.c:178:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4251:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/elf.h:58:29: warning: integer overflow in expression [-Woverflow]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:174:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
versatile_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vexpress_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vf610m4_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
viper_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vt8500_v6_v7_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
workpad_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
x86_64_defconfig (x86_64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
xcep_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
xilfpga_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
xway_defconfig (mips, gcc-7) — PASS, 0 errors, 49 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:832:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:837:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
zeus_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
zx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
---
For more info write to <info(a)kernelci.org>