OSDN Git Service

softmmu: Delete checks for old host definitions
authorAkihiko Odaki <akihiko.odaki@daynix.com>
Sat, 9 Sep 2023 21:40:25 +0000 (14:40 -0700)
committerRichard Henderson <richard.henderson@linaro.org>
Fri, 15 Sep 2023 12:26:50 +0000 (05:26 -0700)
PA-RISC host support is already removed with commit
b1cef6d02f ("Drop remaining bits of ia64 host support").

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Message-Id: <20230810225922.21600-1-akihiko.odaki@daynix.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
softmmu/async-teardown.c

index 62cdeb0..396963c 100644 (file)
@@ -121,10 +121,7 @@ static void *new_stack_for_clone(void)
 
     /* Allocate a new stack and get a pointer to its top. */
     stack_ptr = qemu_alloc_stack(&stack_size);
-#if !defined(HOST_HPPA)
-    /* The top is at the end of the area, except on HPPA. */
     stack_ptr += stack_size;
-#endif
 
     return stack_ptr;
 }