summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorj_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162>2007-12-10 08:13:09 +0000
committerj_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162>2007-12-10 08:13:09 +0000
commite9b34b3741c541aba1bb80b20755f03bdf167cd0 (patch)
treec4971404baf0cead8e67e1a880de1e832d113076
parent4e7774427dcc596225dbb6dc720a4bf637aba8d8 (diff)
downloadfocaccia-qemu-e9b34b3741c541aba1bb80b20755f03bdf167cd0.tar.gz
focaccia-qemu-e9b34b3741c541aba1bb80b20755f03bdf167cd0.zip
Cleanup: remove useless TARGET_GPR_BITS definition.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3799 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--target-ppc/cpu.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h
index 6e6057aae1..88129758e0 100644
--- a/target-ppc/cpu.h
+++ b/target-ppc/cpu.h
@@ -28,7 +28,6 @@
 #if defined (TARGET_PPC64)
 /* PowerPC 64 definitions */
 typedef uint64_t ppc_gpr_t;
-#define TARGET_GPR_BITS  64
 #define TARGET_LONG_BITS 64
 #define TARGET_PAGE_BITS 12
 
@@ -41,10 +40,8 @@ typedef uint64_t ppc_gpr_t;
  * the compiler to do unuseful masking in the micro-ops.
  */
 typedef uint64_t ppc_gpr_t;
-#define TARGET_GPR_BITS  64
 #else /* (HOST_LONG_BITS >= 64) */
 typedef uint32_t ppc_gpr_t;
-#define TARGET_GPR_BITS  32
 #endif /* (HOST_LONG_BITS >= 64) */
 
 #define TARGET_LONG_BITS 32