summaryrefslogtreecommitdiffstats
path: root/include/qemu/processor.h
diff options
context:
space:
mode:
authorPeter Maydell2018-01-25 17:19:49 +0100
committerPaolo Bonzini2018-02-05 18:09:45 +0100
commitb1cef6d02f84bd842fb94a6109ad4e2ad873e8e5 (patch)
treee760ce326e392001d5e5ab8bfdced2fe7db78337 /include/qemu/processor.h
parenthvf: ept_emulation_fault() needs NetApp BSD attribution (diff)
downloadqemu-b1cef6d02f84bd842fb94a6109ad4e2ad873e8e5.tar.gz
qemu-b1cef6d02f84bd842fb94a6109ad4e2ad873e8e5.tar.xz
qemu-b1cef6d02f84bd842fb94a6109ad4e2ad873e8e5.zip
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. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <1516897189-11035-1-git-send-email-peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/qemu/processor.h')
-rw-r--r--include/qemu/processor.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/qemu/processor.h b/include/qemu/processor.h
index 8b2570283a..8e16c9277d 100644
--- a/include/qemu/processor.h
+++ b/include/qemu/processor.h
@@ -12,9 +12,6 @@
#if defined(__i386__) || defined(__x86_64__)
# define cpu_relax() asm volatile("rep; nop" ::: "memory")
-#elif defined(__ia64__)
-# define cpu_relax() asm volatile("hint @pause" ::: "memory")
-
#elif defined(__aarch64__)
# define cpu_relax() asm volatile("yield" ::: "memory")