diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-14 16:27:31 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-14 16:27:31 +0000 |
commit | 992f48a036cccf7101e31bf3e5d901ce5320e886 (patch) | |
tree | 5b7931bab0c9d92c266f87c0457b864cdd8b256b /linux-user/mips64/syscall.h | |
parent | b227a8e9aa5f27d29f77ba90d5eb9d0662a1175e (diff) | |
download | qemu-992f48a036cccf7101e31bf3e5d901ce5320e886.tar.gz qemu-992f48a036cccf7101e31bf3e5d901ce5320e886.tar.bz2 qemu-992f48a036cccf7101e31bf3e5d901ce5320e886.zip |
Support for 32 bit ABI on 64 bit targets (only enabled Sparc64)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3396 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/mips64/syscall.h')
-rw-r--r-- | linux-user/mips64/syscall.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/linux-user/mips64/syscall.h b/linux-user/mips64/syscall.h index 4ec506cb02..668a2b95d4 100644 --- a/linux-user/mips64/syscall.h +++ b/linux-user/mips64/syscall.h @@ -4,15 +4,15 @@ struct target_pt_regs { /* Saved main processor registers. */ - target_ulong regs[32]; + abi_ulong regs[32]; /* Saved special registers. */ - target_ulong cp0_status; - target_ulong lo; - target_ulong hi; - target_ulong cp0_badvaddr; - target_ulong cp0_cause; - target_ulong cp0_epc; + abi_ulong cp0_status; + abi_ulong lo; + abi_ulong hi; + abi_ulong cp0_badvaddr; + abi_ulong cp0_cause; + abi_ulong cp0_epc; }; /* Target errno definitions taken from asm-mips/errno.h */ |