From a0daa6f1fe82be72f6341e0288304d7de8b84dea Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Thu, 21 Mar 2024 10:29:30 +0100 Subject: [PATCH] xfree86: x86emu: drop unused stq_u() fix warning on unused function: > ../hw/xfree86/x86emu/sys.c:87:1: warning: unused function 'stq_u' [-Wunused-function] > stq_u(u64 val, u64 * p) > ^ Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- hw/xfree86/x86emu/sys.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/hw/xfree86/x86emu/sys.c b/hw/xfree86/x86emu/sys.c index d3fffa5cf..5622c5fc0 100644 --- a/hw/xfree86/x86emu/sys.c +++ b/hw/xfree86/x86emu/sys.c @@ -83,14 +83,6 @@ ldw_u(u16 * p) /* Elemental unaligned stores */ -static __inline__ void -stq_u(u64 val, u64 * p) -{ - struct __una_u64 *ptr = (struct __una_u64 *) p; - - ptr->x = val; -} - static __inline__ void stl_u(u32 val, u32 * p) { @@ -126,14 +118,6 @@ ldw_u(u16 * p) return ret; } -static __inline__ void -stq_u(u64 val, u64 * p) -{ - u64 tmp = val; - - memmove(p, &tmp, sizeof(*p)); -} - static __inline__ void stl_u(u32 val, u32 * p) {