mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-25 02:38:36 +00:00
Drop remaining bits of ia64 host support
We dropped support for ia64 host CPUs in the 2.11 release (removing the TCG backend for it, and advertising the support as being completely removed in the changelog). However there are a few bits and pieces of code still floating about. Remove those, too. We can drop the check in configure for "ia64 or hppa host?" entirely, because we don't support hppa hosts either any more. Backports commit b1cef6d02f84bd842fb94a6109ad4e2ad873e8e5 from qemu
This commit is contained in:
parent
234f2ca184
commit
6d0e83d218
2 changed files with 0 additions and 11 deletions
2
qemu/configure
vendored
2
qemu/configure
vendored
|
@ -334,8 +334,6 @@ elif check_define _ARCH_PPC ; then
|
|||
fi
|
||||
elif check_define __mips__ ; then
|
||||
cpu="mips"
|
||||
elif check_define __ia64__ ; then
|
||||
cpu="ia64"
|
||||
elif check_define __s390__ ; then
|
||||
if check_define __s390x__ ; then
|
||||
cpu="s390x"
|
||||
|
|
|
@ -260,15 +260,6 @@ static inline int64_t cpu_get_real_ticks(void)
|
|||
return val;
|
||||
}
|
||||
|
||||
#elif defined(__ia64)
|
||||
|
||||
static inline int64_t cpu_get_real_ticks(void)
|
||||
{
|
||||
int64_t val;
|
||||
asm volatile ("mov %0 = ar.itc" : "=r"(val) :: "memory");
|
||||
return val;
|
||||
}
|
||||
|
||||
#elif defined(__s390__)
|
||||
|
||||
static inline int64_t cpu_get_real_ticks(void)
|
||||
|
|
Loading…
Reference in a new issue