From: Roman Penyaev <rpenyaev(a)suse.de>
Subject: mm/vmalloc: fix size check for remap_vmalloc_range_partial()
When VM_NO_GUARD is not set area->size includes adjacent guard page,
thus for correct size checking get_vm_area_size() should be used, but
not area->size.
This fixes possible kernel oops when userspace tries to mmap an area on
1 page bigger than was allocated by vmalloc_user() call: the size check
inside remap_vmalloc_range_partial() accounts non-existing guard page
also, so check successfully passes but vmalloc_to_page() returns NULL
(guard page does not physically exist).
The following code pattern example should trigger an oops:
static int oops_mmap(struct file *file, struct vm_area_struct *vma)
{
void *mem;
mem = vmalloc_user(4096);
BUG_ON(!mem);
/* Do not care about mem leak */
return remap_vmalloc_range(vma, mem, 0);
}
And userspace simply mmaps size + PAGE_SIZE:
mmap(NULL, 8192, PROT_WRITE|PROT_READ, MAP_PRIVATE, fd, 0);
Possible candidates for oops which do not have any explicit size
checks:
*** drivers/media/usb/stkwebcam/stk-webcam.c:
v4l_stk_mmap[789] ret = remap_vmalloc_range(vma, sbuf->buffer, 0);
Or the following one:
*** drivers/video/fbdev/core/fbmem.c
static int
fb_mmap(struct file *file, struct vm_area_struct * vma)
...
res = fb->fb_mmap(info, vma);
Where fb_mmap callback calls remap_vmalloc_range() directly without any
explicit checks:
*** drivers/video/fbdev/vfb.c
static int vfb_mmap(struct fb_info *info,
struct vm_area_struct *vma)
{
return remap_vmalloc_range(vma, (void *)info->fix.smem_start, vma->vm_pgoff);
}
Link: http://lkml.kernel.org/r/20190103145954.16942-2-rpenyaev@suse.de
Signed-off-by: Roman Penyaev <rpenyaev(a)suse.de>
Acked-by: Michal Hocko <mhocko(a)suse.com>
Cc: Andrey Ryabinin <aryabinin(a)virtuozzo.com>
Cc: Joe Perches <joe(a)perches.com>
Cc: "Luis R. Rodriguez" <mcgrof(a)kernel.org>
Cc: <stable(a)vger.kernel.org>
Signed-off-by: Andrew Morton <akpm(a)linux-foundation.org>
---
mm/vmalloc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/mm/vmalloc.c~mm-vmalloc-fix-size-check-for-remap_vmalloc_range_partial
+++ a/mm/vmalloc.c
@@ -2249,7 +2249,7 @@ int remap_vmalloc_range_partial(struct v
if (!(area->flags & VM_USERMAP))
return -EINVAL;
- if (kaddr + size > area->addr + area->size)
+ if (kaddr + size > area->addr + get_vm_area_size(area))
return -EINVAL;
do {
_
The patch titled
Subject: scripts/gdb: replace flags (MS_xyz -> SB_xyz)
has been added to the -mm tree. Its filename is
scripts-gdb-replace-flags-ms_xyz-sb_xyz.patch
This patch should soon appear at
http://ozlabs.org/~akpm/mmots/broken-out/scripts-gdb-replace-flags-ms_xyz-s…
and later at
http://ozlabs.org/~akpm/mmotm/broken-out/scripts-gdb-replace-flags-ms_xyz-s…
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/process/submit-checklist.rst when testing your code ***
The -mm tree is included into linux-next and is updated
there every 3-4 working days
------------------------------------------------------
From: Jackie Liu <liuyun01(a)kylinos.cn>
Subject: scripts/gdb: replace flags (MS_xyz -> SB_xyz)
Since 1751e8a6cb93 ("Rename superblock flags (MS_xyz -> SB_xyz)"),
scripts/gdb should be updated to replace MS_xyz with SB_xyz.
This change didn't directly affect the running operation of scripts/gdb
until e262e32d6bde "vfs: Suppress MS_* flag defs within the kernel unless
explicitly enabled" removed the definitions used by constants.py.
Update constants.py.in to utilise the new internal flags, matching the
implementation at fs/proc_namespace.c::show_sb_opts.
[kieran.bingham(a)ideasonboard.com: add fixes tag, reword commit message]
Link: http://lkml.kernel.org/r/20190305103014.25847-1-kieran.bingham@ideasonboard…
Fixes: e262e32d6bde "vfs: Suppress MS_* flag defs within the kernel unless explicitly enabled"
Signed-off-by: Jackie Liu <liuyun01(a)kylinos.cn>
Signed-off-by: Kieran Bingham <kieran.bingham(a)ideasonboard.com>
Tested-by: Nick Desaulniers <ndesaulniers(a)google.com>
Tested-by: Kieran Bingham <kieran.bingham(a)ideasonboard.com>
Cc: Felipe Balbi <felipe.balbi(a)linux.intel.com>
Cc: Dan Robertson <danlrobertson89(a)gmail.com>
Cc: Jan Kiszka <jan.kiszka(a)siemens.com>
Cc: David Howells <dhowells(a)redhat.com>
Cc: <stable(a)vger.kernel.org>
Signed-off-by: Andrew Morton <akpm(a)linux-foundation.org>
---
scripts/gdb/linux/constants.py.in | 12 ++++++------
scripts/gdb/linux/proc.py | 12 ++++++------
2 files changed, 12 insertions(+), 12 deletions(-)
--- a/scripts/gdb/linux/constants.py.in~scripts-gdb-replace-flags-ms_xyz-sb_xyz
+++ a/scripts/gdb/linux/constants.py.in
@@ -37,12 +37,12 @@
import gdb
/* linux/fs.h */
-LX_VALUE(MS_RDONLY)
-LX_VALUE(MS_SYNCHRONOUS)
-LX_VALUE(MS_MANDLOCK)
-LX_VALUE(MS_DIRSYNC)
-LX_VALUE(MS_NOATIME)
-LX_VALUE(MS_NODIRATIME)
+LX_VALUE(SB_RDONLY)
+LX_VALUE(SB_SYNCHRONOUS)
+LX_VALUE(SB_MANDLOCK)
+LX_VALUE(SB_DIRSYNC)
+LX_VALUE(SB_NOATIME)
+LX_VALUE(SB_NODIRATIME)
/* linux/mount.h */
LX_VALUE(MNT_NOSUID)
--- a/scripts/gdb/linux/proc.py~scripts-gdb-replace-flags-ms_xyz-sb_xyz
+++ a/scripts/gdb/linux/proc.py
@@ -114,11 +114,11 @@ def info_opts(lst, opt):
return opts
-FS_INFO = {constants.LX_MS_SYNCHRONOUS: ",sync",
- constants.LX_MS_MANDLOCK: ",mand",
- constants.LX_MS_DIRSYNC: ",dirsync",
- constants.LX_MS_NOATIME: ",noatime",
- constants.LX_MS_NODIRATIME: ",nodiratime"}
+FS_INFO = {constants.LX_SB_SYNCHRONOUS: ",sync",
+ constants.LX_SB_MANDLOCK: ",mand",
+ constants.LX_SB_DIRSYNC: ",dirsync",
+ constants.LX_SB_NOATIME: ",noatime",
+ constants.LX_SB_NODIRATIME: ",nodiratime"}
MNT_INFO = {constants.LX_MNT_NOSUID: ",nosuid",
constants.LX_MNT_NODEV: ",nodev",
@@ -184,7 +184,7 @@ values of that process namespace"""
fstype = superblock['s_type']['name'].string()
s_flags = int(superblock['s_flags'])
m_flags = int(vfs['mnt']['mnt_flags'])
- rd = "ro" if (s_flags & constants.LX_MS_RDONLY) else "rw"
+ rd = "ro" if (s_flags & constants.LX_SB_RDONLY) else "rw"
gdb.write(
"{} {} {} {}{}{} 0 0\n"
_
Patches currently in -mm which might be from liuyun01(a)kylinos.cn are
scripts-gdb-replace-flags-ms_xyz-sb_xyz.patch
stable/linux-4.9.y build: 193 builds: 4 failed, 189 passed, 10 errors, 3290 warnings (v4.9.162)
Full Build Summary: https://kernelci.org/build/stable/branch/linux-4.9.y/kernel/v4.9.162/
Tree: stable
Branch: linux-4.9.y
Git Describe: v4.9.162
Git Commit: f422a02f865a93f9d3db0d8f2de08aab455fd1dc
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.4.0-1) 7.4.0
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_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.4.0-1) 7.4.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+0x1c0e0): undefined reference to `iommu_is_span_boundary'
1 (.text+0x1bd20): 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 arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
11 kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
9 net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
9 net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
9 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:
--------------------------------------------------------------------------------
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 (x86_64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (i386, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arm64, 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]
--------------------------------------------------------------------------------
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]
--------------------------------------------------------------------------------
am200epdkit_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ar7_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
aspeed_g4_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
aspeed_g5_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
assabet_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
at91_dt_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ath25_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
ath79_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
axm55xx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
axs103_defconfig (arc, gcc-7) — PASS, 0 errors, 17 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
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]
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]
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]
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]
--------------------------------------------------------------------------------
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]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
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+0x1c0e0): 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
--------------------------------------------------------------------------------
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_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]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
nsimosci_hs_smp_defconfig (arc, gcc-7) — PASS, 0 errors, 8 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
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]
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]
--------------------------------------------------------------------------------
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+0x1bd20): 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 (i386, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (x86_64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arm64, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arc, gcc-7) — PASS, 0 errors, 5 warnings, 0 section mismatches
Warnings:
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
tinyconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
trizeps4_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
u300_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
u8500_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vdk_hs38_defconfig (arc, gcc-7) — PASS, 0 errors, 18 warnings, 0 section mismatches
Warnings:
arch/arc/kernel/unwind.c:188:14: warning: 'unw_hdr_alloc' defined but not used [-Wunused-function]
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
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]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
vdk_hs38_smp_defconfig (arc, gcc-7) — PASS, 0 errors, 19 warnings, 0 section mismatches
Warnings:
arch/arc/kernel/unwind.c:188:14: warning: 'unw_hdr_alloc' defined but not used [-Wunused-function]
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
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]
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]
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]
--------------------------------------------------------------------------------
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]
--------------------------------------------------------------------------------
xcep_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
xilfpga_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
xway_defconfig (mips, gcc-7) — PASS, 0 errors, 52 warnings, 0 section mismatches
Warnings:
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:831:36: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
arch/mips/math-emu/cp1emu.c:836:14: warning: '~' on a boolean expression [-Wbool-operation]
--------------------------------------------------------------------------------
zebu_hs_defconfig (arc, gcc-7) — PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
zebu_hs_smp_defconfig (arc, gcc-7) — PASS, 0 errors, 5 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
zeus_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
zx_defconfig (arm, gcc-7) — PASS, 0 errors, 0 warnings, 0 section mismatches
---
For more info write to <info(a)kernelci.org>