Skip to content

Commit

Permalink
thunk: Delete checks for old host definitions
Browse files Browse the repository at this point in the history
Alpha, IA-64, and PA-RISC hosts are no longer supported.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20230808152314.102036-1-akihiko.odaki@daynix.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
akihikodaki authored and rth7680 committed Sep 15, 2023
1 parent 8f7f7e9 commit cbf5c83
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions include/exec/user/thunk.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 *);
Expand Down

0 comments on commit cbf5c83

Please sign in to comment.