diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-12-04 12:28:03 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-05-19 16:42:29 +0200 |
commit | 27a7ea8a1f351578ce869b41ba1ba662c063fd62 (patch) | |
tree | 3756ab01c48f92f947816ea76e5fa883f55d1d6b /target-arm/internals.h | |
parent | 33c11879fd422b759483ed25fef133ea900ea8d7 (diff) | |
download | qemu-27a7ea8a1f351578ce869b41ba1ba662c063fd62.zip qemu-27a7ea8a1f351578ce869b41ba1ba662c063fd62.tar.gz qemu-27a7ea8a1f351578ce869b41ba1ba662c063fd62.tar.bz2 |
arm: move arm_log_exception into .c file
Avoid need for qemu/log.h inclusion, and make the function static too.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-arm/internals.h')
-rw-r--r-- | target-arm/internals.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/target-arm/internals.h b/target-arm/internals.h index 54a0fb1..a125873 100644 --- a/target-arm/internals.h +++ b/target-arm/internals.h @@ -72,21 +72,6 @@ static const char * const excnames[] = { [EXCP_SEMIHOST] = "Semihosting call", }; -static inline void arm_log_exception(int idx) -{ - if (qemu_loglevel_mask(CPU_LOG_INT)) { - const char *exc = NULL; - - if (idx >= 0 && idx < ARRAY_SIZE(excnames)) { - exc = excnames[idx]; - } - if (!exc) { - exc = "unknown"; - } - qemu_log_mask(CPU_LOG_INT, "Taking exception %d [%s]\n", idx, exc); - } -} - /* Scale factor for generic timers, ie number of ns per tick. * This gives a 62.5MHz timer. */ |