Commit-ID: 0e9f02450da07fc7b1346c8c32c771555173e397
Gitweb: https://git.kernel.org/tip/0e9f02450da07fc7b1346c8c32c771555173e397
Author: Mel Gorman <mgorman(a)techsingularity.net>
AuthorDate: Tue, 19 Mar 2019 12:36:10 +0000
Committer: Ingo Molnar <mingo(a)kernel.org>
CommitDate: Wed, 3 Apr 2019 09:50:22 +0200
sched/fair: Do not re-read ->h_load_next during hierarchical load calculation
A NULL pointer dereference bug was reported on a distribution kernel but
the same issue should be present on mainline kernel. It occured on s390
but should not be arch-specific. A partial oops looks like:
Unable to handle kernel pointer dereference in virtual kernel address space
...
Call Trace:
...
try_to_wake_up+0xfc/0x450
vhost_poll_wakeup+0x3a/0x50 [vhost]
__wake_up_common+0xbc/0x178
__wake_up_common_lock+0x9e/0x160
__wake_up_sync_key+0x4e/0x60
sock_def_readable+0x5e/0x98
The bug hits any time between 1 hour to 3 days. The dereference occurs
in update_cfs_rq_h_load when accumulating h_load. The problem is that
cfq_rq->h_load_next is not protected by any locking and can be updated
by parallel calls to task_h_load. Depending on the compiler, code may be
generated that re-reads cfq_rq->h_load_next after the check for NULL and
then oops when reading se->avg.load_avg. The dissassembly showed that it
was possible to reread h_load_next after the check for NULL.
While this does not appear to be an issue for later compilers, it's still
an accident if the correct code is generated. Full locking in this path
would have high overhead so this patch uses READ_ONCE to read h_load_next
only once and check for NULL before dereferencing. It was confirmed that
there were no further oops after 10 days of testing.
As Peter pointed out, it is also necessary to use WRITE_ONCE() to avoid any
potential problems with store tearing.
Signed-off-by: Mel Gorman <mgorman(a)techsingularity.net>
Signed-off-by: Peter Zijlstra (Intel) <peterz(a)infradead.org>
Reviewed-by: Valentin Schneider <valentin.schneider(a)arm.com>
Cc: Linus Torvalds <torvalds(a)linux-foundation.org>
Cc: Mike Galbraith <efault(a)gmx.de>
Cc: Peter Zijlstra <peterz(a)infradead.org>
Cc: Thomas Gleixner <tglx(a)linutronix.de>
Cc: <stable(a)vger.kernel.org>
Fixes: 685207963be9 ("sched: Move h_load calculation to task_h_load()")
Link: https://lkml.kernel.org/r/20190319123610.nsivgf3mjbjjesxb@techsingularity.n…
Signed-off-by: Ingo Molnar <mingo(a)kernel.org>
---
kernel/sched/fair.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index fdab7eb6f351..40bd1e27b1b7 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -7784,10 +7784,10 @@ static void update_cfs_rq_h_load(struct cfs_rq *cfs_rq)
if (cfs_rq->last_h_load_update == now)
return;
- cfs_rq->h_load_next = NULL;
+ WRITE_ONCE(cfs_rq->h_load_next, NULL);
for_each_sched_entity(se) {
cfs_rq = cfs_rq_of(se);
- cfs_rq->h_load_next = se;
+ WRITE_ONCE(cfs_rq->h_load_next, se);
if (cfs_rq->last_h_load_update == now)
break;
}
@@ -7797,7 +7797,7 @@ static void update_cfs_rq_h_load(struct cfs_rq *cfs_rq)
cfs_rq->last_h_load_update = now;
}
- while ((se = cfs_rq->h_load_next) != NULL) {
+ while ((se = READ_ONCE(cfs_rq->h_load_next)) != NULL) {
load = cfs_rq->h_load;
load = div64_ul(load * se->avg.load_avg,
cfs_rq_load_avg(cfs_rq) + 1);
stable/linux-4.4.y build: 190 builds: 11 failed, 179 passed, 42 errors, 4434 warnings (v4.4.178)
Full Build Summary: https://kernelci.org/build/stable/branch/linux-4.4.y/kernel/v4.4.178/
Tree: stable
Branch: linux-4.4.y
Git Describe: v4.4.178
Git Commit: 12ae58ca7ec42fe23df5d0b0d01bce2ccb728fd5
Git URL: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.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 (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
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
--------------------------------------------------------------------------------
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, 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]
--------------------------------------------------------------------------------
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]
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]
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]
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]
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]
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]
--------------------------------------------------------------------------------
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]
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]
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]
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]
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]
--------------------------------------------------------------------------------
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]
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]
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]
arch/arc/include/asm/elf.h:58:29: warning: integer overflow in expression [-Woverflow]
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]
include/linux/sunrpc/svc_xprt.h:174:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
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]
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]
--------------------------------------------------------------------------------
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
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
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-mno-mpy' is deprecated
cc1: warning: '-mno-mpy' is deprecated
arc-linux-gcc: warning: '-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 (x86_64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (i386, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arm64, 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, 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]
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]
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]
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]
--------------------------------------------------------------------------------
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]
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]
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]
--------------------------------------------------------------------------------
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>
stable/linux-4.9.y build: 197 builds: 5 failed, 192 passed, 10 errors, 3294 warnings (v4.9.167)
Full Build Summary: https://kernelci.org/build/stable/branch/linux-4.9.y/kernel/v4.9.167/
Tree: stable
Branch: linux-4.9.y
Git Describe: v4.9.167
Git Commit: 21834d3e531d52c2b1f2182d472a7c37c0594f1b
Git URL: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.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:
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]
net/core/ethtool.c:300: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/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]
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:
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]
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]
--------------------------------------------------------------------------------
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]
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]
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]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
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]
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_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]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
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]
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]
lib/cpumask.c:211: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 (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 (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 (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]
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]
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]
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]
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]
--------------------------------------------------------------------------------
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]
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]
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]
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]
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]
lib/cpumask.c:211: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]
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]
--------------------------------------------------------------------------------
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>
Any request queue data structure may change while a queue is frozen.
Hence make sure that blk_mq_run_hw_queues() does not access any hw
queue while a request queue is frozen.
After blk_cleanup_queue() has marked a queue as dead it is no longer
safe to access the hardware queue data structures. This patch avoids
that blk_mq_run_hw_queues() crashes when called during or after
blk_cleanup_queue() has freed the hardware queues. This patch is a
variant of a patch posted by Hannes Reinecke ("[PATCH] block: don't
call blk_mq_run_hw_queues() for dead or dying queues "). This patch
is similar in nature to commit c246e80d8673 ("block: Avoid that
request_fn is invoked on a dead queue"; v3.8). An example of a crash
that is fixed by this patch:
BUG: unable to handle kernel NULL pointer dereference at (null)
IP: [<ffffffff8135a10b>] sbitmap_any_bit_set+0xb/0x30
Call Trace:
[<ffffffff81303a88>] blk_mq_run_hw_queues+0x48/0x90
[<ffffffff813053cc>] blk_mq_requeue_work+0x10c/0x120
[<ffffffff81098cb4>] process_one_work+0x154/0x410
[<ffffffff81099896>] worker_thread+0x116/0x4a0
[<ffffffff8109edb9>] kthread+0xc9/0xe0
[<ffffffff81619b05>] ret_from_fork+0x55/0x80
Cc: Christoph Hellwig <hch(a)infradead.org>
Cc: Hannes Reinecke <hare(a)suse.com>
Cc: James Smart <james.smart(a)broadcom.com>
Cc: Ming Lei <ming.lei(a)redhat.com>
Cc: Jianchao Wang <jianchao.w.wang(a)oracle.com>
Cc: Dongli Zhang <dongli.zhang(a)oracle.com>
Cc: <stable(a)vger.kernel.org>
Fixes: a063057d7c73 ("block: Fix a race between request queue removal and the block cgroup controller") # v4.17.
Reported-by: James Smart <james.smart(a)broadcom.com>
Signed-off-by: Bart Van Assche <bvanassche(a)acm.org>
---
block/blk-mq.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/block/blk-mq.c b/block/blk-mq.c
index 3ff3d7b49969..652d0c6d5945 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -1499,12 +1499,20 @@ void blk_mq_run_hw_queues(struct request_queue *q, bool async)
struct blk_mq_hw_ctx *hctx;
int i;
+ /*
+ * Do not run any hardware queues if the queue is frozen or if a
+ * concurrent blk_cleanup_queue() call is removing any data
+ * structures used by this function.
+ */
+ if (!percpu_ref_tryget(&q->q_usage_counter))
+ return;
queue_for_each_hw_ctx(q, hctx, i) {
if (blk_mq_hctx_stopped(hctx))
continue;
blk_mq_run_hw_queue(hctx, async);
}
+ percpu_ref_put(&q->q_usage_counter);
}
EXPORT_SYMBOL(blk_mq_run_hw_queues);
--
2.21.0.196.g041f5ea1cf98
When the physmap_of_core.c code was merged into physmap-core.c the
ability to use MTD_PHYSMAP_OF with only MTD_RAM selected was lost.
Restore this by adding MTD_RAM to the dependencies of MTD_PHYSMAP.
Fixes: commit 642b1e8dbed7 ("mtd: maps: Merge physmap_of.c into physmap-core.c")
Cc: <stable(a)vger.kernel.org>
Signed-off-by: Chris Packham <chris.packham(a)alliedtelesis.co.nz>
Reviewed-by: Hamish Martin <hamish.martin(a)alliedtelesis.co.nz>
---
drivers/mtd/maps/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/maps/Kconfig b/drivers/mtd/maps/Kconfig
index e0cf869c8544..544ed1931843 100644
--- a/drivers/mtd/maps/Kconfig
+++ b/drivers/mtd/maps/Kconfig
@@ -10,7 +10,7 @@ config MTD_COMPLEX_MAPPINGS
config MTD_PHYSMAP
tristate "Flash device in physical memory map"
- depends on MTD_CFI || MTD_JEDECPROBE || MTD_ROM || MTD_LPDDR
+ depends on MTD_CFI || MTD_JEDECPROBE || MTD_ROM || MTD_RAM || MTD_LPDDR
help
This provides a 'mapping' driver which allows the NOR Flash and
ROM driver code to communicate with chips which are mapped
--
2.21.0
This is the start of the stable review cycle for the 3.18.138 release.
There are 50 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Wed Apr 3 16:59:36 UTC 2019.
Anything received after that time might be too late.
The whole patch series can be found in one patch at:
https://www.kernel.org/pub/linux/kernel/v3.x/stable-review/patch-3.18.138-r…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-3.18.y
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Linux 3.18.138-rc1
Eric Biggers <ebiggers(a)google.com>
arm64: support keyctl() system call in 32-bit mode
Kohji Okuno <okuno.kohji(a)jp.panasonic.com>
ARM: imx6q: cpuidle: fix bug that CPU might not wake up at expected time
Mathias Nyman <mathias.nyman(a)linux.intel.com>
xhci: Fix port resume done detection for SS ports with LPM enabled
Sean Christopherson <sean.j.christopherson(a)intel.com>
KVM: Reject device ioctls from processes other than the VM's creator
Axel Lin <axel.lin(a)ingics.com>
gpio: adnp: Fix testing wrong value in adnp_gpio_direction_input
YueHaibing <yuehaibing(a)huawei.com>
fs/proc/proc_sysctl.c: fix NULL pointer dereference in put_links
Wentao Wang <witallwang(a)gmail.com>
Disable kgdboc failed by echo space to /sys/module/kgdboc/parameters/kgdboc
Lin Yi <teroincn(a)163.com>
USB: serial: mos7720: fix mos_parport refcount imbalance on error path
George McCollister <george.mccollister(a)gmail.com>
USB: serial: ftdi_sio: add additional NovaTech products
Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
USB: serial: cp210x: add new device id
Aditya Pakki <pakki001(a)umn.edu>
serial: max310x: Fix to avoid potential NULL pointer dereference
Steffen Maier <maier(a)linux.ibm.com>
scsi: zfcp: fix scsi_eh host reset with port_forced ERP for non-NPIV FCP devices
Takashi Iwai <tiwai(a)suse.de>
ALSA: pcm: Don't suspend stream in unrecoverable PCM state
Takashi Iwai <tiwai(a)suse.de>
ALSA: pcm: Fix possible OOB access in PCM oss plugins
Finn Thain <fthain(a)telegraphics.com.au>
mac8390: Fix mmio access size probe
Xin Long <lucien.xin(a)gmail.com>
sctp: get sctphdr by offset in sctp_compute_cksum
Eric Dumazet <edumazet(a)google.com>
tcp: do not use ipv6 header for ipv4 flow
Maxime Chevallier <maxime.chevallier(a)bootlin.com>
packets: Always register packet sk in the same order
David S. Miller <davem(a)davemloft.net>
Add hlist_add_tail_rcu() (Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net)
Eric Dumazet <edumazet(a)google.com>
net: rose: fix a possible stack overflow
Christoph Paasch <cpaasch(a)apple.com>
net/packet: Set __GFP_NOWARN upon allocation in alloc_pg_vec
Bjorn Helgaas <bhelgaas(a)google.com>
mISDN: hfcpci: Test both vendor & device ID for Digium HFC4S
Eric Dumazet <edumazet(a)google.com>
dccp: do not use ipv6 header for ipv4 flow
Johannes Berg <johannes.berg(a)intel.com>
cfg80211: size various nl80211 messages correctly
Chaotian Jing <chaotian.jing(a)mediatek.com>
mmc: mmc: fix switch timeout issue caused by jiffies precision
Ezequiel Garcia <ezequiel(a)vanguardiasur.com.ar>
arm64: kconfig: drop CONFIG_RTC_LIB dependency
Christoffer Dall <christoffer.dall(a)linaro.org>
video: fbdev: Set pixclock = 0 in goldfishfb
Winter Wang <wente.wang(a)nxp.com>
usb: gadget: configfs: add mutex lock before unregister gadget
Hannes Frederic Sowa <hannes(a)stressinduktion.org>
ipv6: fix endianness error in icmpv6_err
James Morse <james.morse(a)arm.com>
arm64: kernel: Include _AC definition in page.h
Ard Biesheuvel <ard.biesheuvel(a)linaro.org>
arm64/kernel: fix incorrect EL0 check in inv_entry macro
Lorenzo Pieralisi <lorenzo.pieralisi(a)arm.com>
ARM: 8510/1: rework ARM_CPU_SUSPEND dependencies
Greg Hackmann <ghackmann(a)google.com>
staging: goldfish: audio: fix compiliation on arm
Rajmal Menariya <rajmal.menariya(a)spreadtrum.com>
staging: ion: Set minimum carveout heap allocation order to PAGE_SHIFT
Rom Lemarchand <romlem(a)android.com>
staging: ashmem: Add missing include
Laura Abbott <lauraa(a)codeaurora.org>
staging: ashmem: Avoid deadlock with mmap/shrink
Mark Rutland <mark.rutland(a)arm.com>
asm-generic: Fix local variable shadow in __set_fixmap_offset
Dmitry Torokhov <dtor(a)chromium.org>
android: unconditionally remove callbacks in sync_fence_free()
Arnd Bergmann <arnd(a)arndb.de>
ARM: 8458/1: bL_switcher: add GIC dependency
Yury Norov <ynorov(a)caviumnetworks.com>
arm64: fix COMPAT_SHMLBA definition for large pages
Colin Cross <ccross(a)android.com>
mmc: block: Allow more than 8 partitions per card
Marcel Holtmann <marcel(a)holtmann.org>
Bluetooth: Verify that l2cap_get_conf_opt provides large enough buffer
Marcel Holtmann <marcel(a)holtmann.org>
Bluetooth: Check L2CAP option sizes returned from l2cap_get_conf_opt
Hans Verkuil <hverkuil(a)xs4all.nl>
media: v4l2-ctrls.c/uvc: zero v4l2_event
Sergei Shtylyov <sergei.shtylyov(a)cogentembedded.com>
mmc: tmio_mmc_core: don't claim spurious interrupts
zhangyi (F) <yi.zhang(a)huawei.com>
ext4: brelse all indirect buffer in ext4_ind_remove_space()
Lukas Czerner <lczerner(a)redhat.com>
ext4: fix data corruption caused by unaligned direct AIO
Jiufei Xue <jiufei.xue(a)linux.alibaba.com>
ext4: fix NULL pointer dereference while journal is aborted
Chen Jie <chenjie6(a)huawei.com>
futex: Ensure that futex address is aligned in handle_futex_death()
Jan Kara <jack(a)suse.cz>
udf: Fix crash on IO error during truncate
-------------
Diffstat:
Documentation/virtual/kvm/api.txt | 16 +++--
Makefile | 4 +-
arch/arm/Kconfig | 6 +-
arch/arm/mach-imx/cpuidle-imx6q.c | 27 +++-----
arch/arm64/Kconfig | 5 +-
arch/arm64/include/asm/page.h | 2 +
arch/arm64/include/asm/shmparam.h | 2 +-
arch/arm64/kernel/entry.S | 2 +-
drivers/gpio/gpio-adnp.c | 6 +-
drivers/isdn/hardware/mISDN/hfcmulti.c | 3 +-
drivers/media/usb/uvc/uvc_ctrl.c | 2 +-
drivers/media/v4l2-core/v4l2-ctrls.c | 2 +-
drivers/mmc/card/block.c | 7 +--
drivers/mmc/core/mmc_ops.c | 2 +-
drivers/mmc/host/tmio_mmc_pio.c | 8 +--
drivers/net/ethernet/8390/mac8390.c | 19 +++---
drivers/s390/scsi/zfcp_erp.c | 14 +++++
drivers/s390/scsi/zfcp_ext.h | 2 +
drivers/s390/scsi/zfcp_scsi.c | 4 ++
drivers/staging/android/ashmem.c | 4 +-
drivers/staging/android/ion/ion_carveout_heap.c | 2 +-
drivers/staging/android/sync.c | 6 +-
drivers/staging/android/uapi/ashmem.h | 1 +
drivers/staging/goldfish/goldfish_audio.c | 1 +
drivers/tty/serial/kgdboc.c | 4 +-
drivers/tty/serial/max310x.c | 2 +
drivers/usb/gadget/configfs.c | 2 +
drivers/usb/host/xhci-ring.c | 9 ++-
drivers/usb/host/xhci.h | 1 +
drivers/usb/serial/cp210x.c | 1 +
drivers/usb/serial/ftdi_sio.c | 2 +
drivers/usb/serial/ftdi_sio_ids.h | 4 +-
drivers/usb/serial/mos7720.c | 4 +-
drivers/video/fbdev/goldfishfb.c | 2 +-
fs/ext4/ext4_jbd2.h | 2 +-
fs/ext4/file.c | 2 +-
fs/ext4/indirect.c | 12 ++--
fs/proc/proc_sysctl.c | 3 +-
fs/udf/truncate.c | 3 +
include/asm-generic/fixmap.h | 12 ++--
include/linux/rculist.h | 36 +++++++++++
include/net/sctp/checksum.h | 2 +-
include/net/sock.h | 6 ++
kernel/futex.c | 4 ++
net/bluetooth/l2cap_core.c | 83 ++++++++++++++++---------
net/dccp/ipv6.c | 4 +-
net/ipv6/icmp.c | 2 +-
net/ipv6/tcp_ipv6.c | 8 +--
net/packet/af_packet.c | 4 +-
net/rose/rose_subr.c | 21 ++++---
net/wireless/nl80211.c | 16 ++---
sound/core/oss/pcm_oss.c | 43 ++++++-------
sound/core/pcm_native.c | 9 ++-
virt/kvm/kvm_main.c | 3 +
54 files changed, 293 insertions(+), 160 deletions(-)