diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-22 10:09:17 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-22 10:09:17 +0000 |
commit | 64adab3fcbab7cd3a1d7fff327640f8128de6e86 (patch) | |
tree | 776eaefe12bc2fdfcd193a62c7de34697481521b /target-ppc/exec.h | |
parent | target-alpha: use CPU_Float/CPU_Double instead of ugly casts (diff) | |
download | qemu-kvm-64adab3fcbab7cd3a1d7fff327640f8128de6e86.tar.gz qemu-kvm-64adab3fcbab7cd3a1d7fff327640f8128de6e86.tar.bz2 qemu-kvm-64adab3fcbab7cd3a1d7fff327640f8128de6e86.zip |
target-ppc: convert exceptions generation to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5772 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/exec.h')
-rw-r--r-- | target-ppc/exec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-ppc/exec.h b/target-ppc/exec.h index d3df2f2da..88499b170 100644 --- a/target-ppc/exec.h +++ b/target-ppc/exec.h @@ -94,8 +94,8 @@ static always_inline target_ulong rotl64 (target_ulong i, int n) #include "softmmu_exec.h" #endif /* !defined(CONFIG_USER_ONLY) */ -void do_raise_exception_err (uint32_t exception, int error_code); -void do_raise_exception (uint32_t exception); +void raise_exception_err (CPUState *env, int exception, int error_code); +void raise_exception (CPUState *env, int exception); int get_physical_address (CPUState *env, mmu_ctx_t *ctx, target_ulong vaddr, int rw, int access_type); |