Commit e9b34b3741c541aba1bb80b20755f03bdf167cd0

Authored by j_mayer
1 parent 4e777442

Cleanup: remove useless TARGET_GPR_BITS definition.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3799 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 0 additions and 3 deletions
target-ppc/cpu.h
@@ -28,7 +28,6 @@ @@ -28,7 +28,6 @@
28 #if defined (TARGET_PPC64) 28 #if defined (TARGET_PPC64)
29 /* PowerPC 64 definitions */ 29 /* PowerPC 64 definitions */
30 typedef uint64_t ppc_gpr_t; 30 typedef uint64_t ppc_gpr_t;
31 -#define TARGET_GPR_BITS 64  
32 #define TARGET_LONG_BITS 64 31 #define TARGET_LONG_BITS 64
33 #define TARGET_PAGE_BITS 12 32 #define TARGET_PAGE_BITS 12
34 33
@@ -41,10 +40,8 @@ typedef uint64_t ppc_gpr_t; @@ -41,10 +40,8 @@ typedef uint64_t ppc_gpr_t;
41 * the compiler to do unuseful masking in the micro-ops. 40 * the compiler to do unuseful masking in the micro-ops.
42 */ 41 */
43 typedef uint64_t ppc_gpr_t; 42 typedef uint64_t ppc_gpr_t;
44 -#define TARGET_GPR_BITS 64  
45 #else /* (HOST_LONG_BITS >= 64) */ 43 #else /* (HOST_LONG_BITS >= 64) */
46 typedef uint32_t ppc_gpr_t; 44 typedef uint32_t ppc_gpr_t;
47 -#define TARGET_GPR_BITS 32  
48 #endif /* (HOST_LONG_BITS >= 64) */ 45 #endif /* (HOST_LONG_BITS >= 64) */
49 46
50 #define TARGET_LONG_BITS 32 47 #define TARGET_LONG_BITS 32