From 0ea31e9f28f0f88cd6f31ceb8811dc0137350310 Mon Sep 17 00:00:00 2001 From: AJR Date: Fri, 7 Feb 2020 17:15:13 -0500 Subject: [PATCH] xavix2.h: Fix clang build [-Werror,-Wreturn-type] (nw) --- src/devices/cpu/xavix2/xavix2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/xavix2/xavix2.h b/src/devices/cpu/xavix2/xavix2.h index 69e66f97433..e87a732a7c2 100644 --- a/src/devices/cpu/xavix2/xavix2.h +++ b/src/devices/cpu/xavix2/xavix2.h @@ -167,7 +167,7 @@ protected: f |= F_C; m_f = f; return r; - } else if(shift >= 32) { + } else /*if(shift >= 32)*/ { if(v1 & 0x80000000) { m_f = F_C; return 0xffffffff;