From: Akihiko Odaki Date: Tue, 8 Aug 2023 15:23:10 +0000 (+0900) Subject: thunk: Delete checks for old host definitions X-Git-Tag: v8.2.0-rc0~124^2~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cbf5c83862c13f114f1be49741cb8b10da5d3954;p=thirdparty%2Fqemu.git thunk: Delete checks for old host definitions Alpha, IA-64, and PA-RISC hosts are no longer supported. Signed-off-by: Akihiko Odaki Reviewed-by: Peter Maydell Message-Id: <20230808152314.102036-1-akihiko.odaki@daynix.com> Signed-off-by: Richard Henderson --- diff --git a/include/exec/user/thunk.h b/include/exec/user/thunk.h index 6eedef48d8c..2ebfecf58eb 100644 --- a/include/exec/user/thunk.h +++ b/include/exec/user/thunk.h @@ -111,8 +111,7 @@ static inline int thunk_type_size(const argtype *type_ptr, int is_host) if (is_host) { #if defined(HOST_X86_64) return 8; -#elif defined(HOST_ALPHA) || defined(HOST_IA64) || defined(HOST_MIPS) || \ - defined(HOST_PARISC) || defined(HOST_SPARC64) +#elif defined(HOST_MIPS) || defined(HOST_SPARC64) return 4; #elif defined(HOST_PPC) return sizeof(void *);