Our robot reported the following compile-time warning while compiling Qemu with -fno-inline cflags:
In function 'load_memop', inlined from 'load_helper' at /qemu/accel/tcg/cputlb.c:1578:20, inlined from 'full_ldub_mmu' at /qemu/accel/tcg/cputlb.c:1624:12: /qemu/accel/tcg/cputlb.c:1502:9: error: call to 'qemu_build_not_reached' declared with attribute error: code path is reachable qemu_build_not_reached(); ^~~~~~~~~~~~~~~~~~~~~~~~ [...] It looks like a false-positive because only (MO_UB ^ MO_BSWAP) will hit the default case in load_memop() while need_swap (size > 1) has already ensured that MO_UB is not involved. Apply QEMU_ALWAYS_INLINE on memop_size() to make sure it will always be inlined while we're using the compile-time assert, so that the compilers won't get confused. Reported-by: Euler Robot <euler.ro...@huawei.com> Signed-off-by: Zenghui Yu <yuzeng...@huawei.com> --- Not sure if it's the right fix, but seems works fine to me :) include/exec/memop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/exec/memop.h b/include/exec/memop.h index 529d07b02d..5403f960e0 100644 --- a/include/exec/memop.h +++ b/include/exec/memop.h @@ -110,7 +110,7 @@ typedef enum MemOp { } MemOp; /* MemOp to size in bytes. */ -static inline unsigned memop_size(MemOp op) +static inline unsigned QEMU_ALWAYS_INLINE memop_size(MemOp op) { return 1 << (op & MO_SIZE); } -- 2.19.1