summaryrefslogtreecommitdiffstats
path: root/linux-user/ppc/syscall.h
diff options
context:
space:
mode:
authorj_mayer2007-10-18 22:51:49 +0200
committerj_mayer2007-10-18 22:51:49 +0200
commitf85e9a6870c7e96c2748ec0c40e04c00600189ae (patch)
treef8780a9cb5415105ad4442ff9d6692ac5fda85f7 /linux-user/ppc/syscall.h
parentUse the new TARGET_ABI32 feature to implement a ppc64abi32-linux-user target (diff)
downloadqemu-f85e9a6870c7e96c2748ec0c40e04c00600189ae.tar.gz
qemu-f85e9a6870c7e96c2748ec0c40e04c00600189ae.tar.xz
qemu-f85e9a6870c7e96c2748ec0c40e04c00600189ae.zip
Use TARGET_ABI_DIR feature to unify PowerPC and PowerPC 64 definitions.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3410 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/ppc/syscall.h')
-rw-r--r--linux-user/ppc/syscall.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/linux-user/ppc/syscall.h b/linux-user/ppc/syscall.h
index 30427f69e0..f98d2bca5a 100644
--- a/linux-user/ppc/syscall.h
+++ b/linux-user/ppc/syscall.h
@@ -51,4 +51,8 @@ struct target_revectored_struct {
* flags masks
*/
+#if defined(TARGET_PPC64) && !defined(TARGET_ABI32)
+#define UNAME_MACHINE "ppc64"
+#else
#define UNAME_MACHINE "ppc"
+#endif