Skip to content
Snippets Groups Projects
Commit cbf5c838 authored by Akihiko Odaki's avatar Akihiko Odaki Committed by Richard Henderson
Browse files

thunk: Delete checks for old host definitions


Alpha, IA-64, and PA-RISC hosts are no longer supported.

Signed-off-by: default avatarAkihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Message-Id: <20230808152314.102036-1-akihiko.odaki@daynix.com>
Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
parent 8f7f7e9d
No related branches found
No related tags found
No related merge requests found
......@@ -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 *);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment