Commit e63d7abddefbe36532f501d66371624a2bbc03b9

Authored by blueswir1
1 parent 6635f6fa

Prune unused TCG_AREGs

Remove definitions for TCG_AREGs corresponding to AREG definitions
removed in r6778.

Signed-off-by: Stuart Brady <stuart.brady@gmail.com>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6779 c046a42c-6fe2-441c-8c8c-71466251a162
tcg/arm/tcg-target.h
... ... @@ -64,7 +64,6 @@ enum {
64 64 TCG_AREG0 = TCG_REG_R7,
65 65 TCG_AREG1 = TCG_REG_R4,
66 66 TCG_AREG2 = TCG_REG_R5,
67   - TCG_AREG3 = TCG_REG_R6,
68 67 };
69 68  
70 69 static inline void flush_icache_range(unsigned long start, unsigned long stop)
... ...
tcg/hppa/tcg-target.h
... ... @@ -84,7 +84,6 @@ enum {
84 84 #define TCG_AREG0 TCG_REG_R17
85 85 #define TCG_AREG1 TCG_REG_R14
86 86 #define TCG_AREG2 TCG_REG_R15
87   -#define TCG_AREG3 TCG_REG_R16
88 87  
89 88 static inline void flush_icache_range(unsigned long start, unsigned long stop)
90 89 {
... ...
tcg/i386/tcg-target.h
... ... @@ -48,7 +48,6 @@ enum {
48 48 #define TCG_AREG0 TCG_REG_EBP
49 49 #define TCG_AREG1 TCG_REG_EBX
50 50 #define TCG_AREG2 TCG_REG_ESI
51   -#define TCG_AREG3 TCG_REG_EDI
52 51  
53 52 static inline void flush_icache_range(unsigned long start, unsigned long stop)
54 53 {
... ...
tcg/ppc/tcg-target.h
... ... @@ -85,4 +85,3 @@ enum {
85 85 #define TCG_AREG0 TCG_REG_R27
86 86 #define TCG_AREG1 TCG_REG_R24
87 87 #define TCG_AREG2 TCG_REG_R25
88   -#define TCG_AREG3 TCG_REG_R26
... ...
tcg/ppc64/tcg-target.h
... ... @@ -81,4 +81,3 @@ enum {
81 81 #define TCG_AREG0 TCG_REG_R27
82 82 #define TCG_AREG1 TCG_REG_R24
83 83 #define TCG_AREG2 TCG_REG_R25
84   -#define TCG_AREG3 TCG_REG_R26
... ...
tcg/sparc/tcg-target.h
... ... @@ -97,8 +97,6 @@ enum {
97 97 #define TCG_AREG0 TCG_REG_G2
98 98 #define TCG_AREG1 TCG_REG_G3
99 99 #define TCG_AREG2 TCG_REG_G4
100   -#define TCG_AREG3 TCG_REG_G5
101   -#define TCG_AREG4 TCG_REG_G6
102 100 #elif defined(__sparc_v9__)
103 101 #define TCG_AREG0 TCG_REG_G5
104 102 #define TCG_AREG1 TCG_REG_G6
... ... @@ -107,7 +105,6 @@ enum {
107 105 #define TCG_AREG0 TCG_REG_G6
108 106 #define TCG_AREG1 TCG_REG_G1
109 107 #define TCG_AREG2 TCG_REG_G2
110   -#define TCG_AREG3 TCG_REG_G3
111 108 #endif
112 109  
113 110 static inline void flush_icache_range(unsigned long start, unsigned long stop)
... ...
tcg/x86_64/tcg-target.h
... ... @@ -70,7 +70,6 @@ enum {
70 70 #define TCG_AREG0 TCG_REG_R14
71 71 #define TCG_AREG1 TCG_REG_R15
72 72 #define TCG_AREG2 TCG_REG_R12
73   -#define TCG_AREG3 TCG_REG_R13
74 73  
75 74 static inline void flush_icache_range(unsigned long start, unsigned long stop)
76 75 {
... ...