From: Dr. David Alan Gilbert Date: Sun, 5 May 2024 17:14:40 +0000 (+0100) Subject: linux-user: sparc: Remove unused struct 'target_mc_fq' X-Git-Tag: qemu-xen-4.20.0~96^2~9 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=23e6b6ef15a1cc169d3b3476af4755c8f711fe9c;p=qemu-xen.git linux-user: sparc: Remove unused struct 'target_mc_fq' This struct is unused since Peter's Commit b8ae597f0e6d ("linux-user/sparc: Fix errors in target_ucontext structures") However, hmm, I'm a bit confused since that commit modifies the structure and then removes it, was that intentional? Signed-off-by: Dr. David Alan Gilbert Reviewed-by: Michael Tokarev Signed-off-by: Michael Tokarev --- diff --git a/linux-user/sparc/signal.c b/linux-user/sparc/signal.c index f164b74032..8181b8b92c 100644 --- a/linux-user/sparc/signal.c +++ b/linux-user/sparc/signal.c @@ -546,11 +546,6 @@ void setup_sigtramp(abi_ulong sigtramp_page) typedef abi_ulong target_mc_greg_t; typedef target_mc_greg_t target_mc_gregset_t[SPARC_MC_NGREG]; -struct target_mc_fq { - abi_ulong mcfq_addr; - uint32_t mcfq_insn; -}; - /* * Note the manual 16-alignment; the kernel gets this because it * includes a "long double qregs[16]" in the mcpu_fregs union,