diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-08-29 15:00:27 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-08-29 15:00:27 +0100 |
commit | 508280f5666a706a3681462b2a1d7de8107fd6fb (patch) | |
tree | 8ac95cc1b77048afcaad49c350e734bc145e31dd /disas/libvixl/platform.h | |
parent | d9aa68855724752a5684c6acfb17d8db15cec2f8 (diff) | |
download | hqemu-508280f5666a706a3681462b2a1d7de8107fd6fb.zip hqemu-508280f5666a706a3681462b2a1d7de8107fd6fb.tar.gz |
disas/libvixl: Update to upstream VIXL 1.5
Update our copy of libvixl to upstream's 1.5 release.
This includes the upstream versions of the fixes we
were carrying locally (commit ffebe899).
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1407162987-4659-1-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'disas/libvixl/platform.h')
-rw-r--r-- | disas/libvixl/platform.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/disas/libvixl/platform.h b/disas/libvixl/platform.h index b5c2085..de2b110 100644 --- a/disas/libvixl/platform.h +++ b/disas/libvixl/platform.h @@ -28,14 +28,10 @@ #define PLATFORM_H // Define platform specific functionalities. +#include <signal.h> namespace vixl { -#ifdef USE_SIMULATOR -// Currently we assume running the simulator implies running on x86 hardware. -inline void HostBreakpoint() { asm("int3"); } -#else -inline void HostBreakpoint() { asm("brk"); } -#endif +inline void HostBreakpoint() { raise(SIGINT); } } // namespace vixl #endif |