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:
Peter Maydell 2018-03-09 11:54:48 -05:00 committed by Lioncash
parent 234f2ca184
commit 6d0e83d218
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7
2 changed files with 0 additions and 11 deletions

2
qemu/configure vendored
View File

@ -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"

View File

@ -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)