Commit 95af5ce5e21d789d3f3a8291585d5e67fc5e6bb5

Authored by ths
1 parent 42388c4b

Fix build failure for MIPS64 targets on 64-bit hosts.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4536 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 2 additions and 1 deletions
target-mips/op_helper.c
@@ -159,6 +159,8 @@ void do_drotrv (void) @@ -159,6 +159,8 @@ void do_drotrv (void)
159 T0 = T1; 159 T0 = T1;
160 } 160 }
161 161
  162 +#endif /* TARGET_LONG_BITS > HOST_LONG_BITS */
  163 +
162 void do_dclo (void) 164 void do_dclo (void)
163 { 165 {
164 T0 = clo64(T0); 166 T0 = clo64(T0);
@@ -169,7 +171,6 @@ void do_dclz (void) @@ -169,7 +171,6 @@ void do_dclz (void)
169 T0 = clz64(T0); 171 T0 = clz64(T0);
170 } 172 }
171 173
172 -#endif /* TARGET_LONG_BITS > HOST_LONG_BITS */  
173 #endif /* TARGET_MIPS64 */ 174 #endif /* TARGET_MIPS64 */
174 175
175 /* 64 bits arithmetic for 32 bits hosts */ 176 /* 64 bits arithmetic for 32 bits hosts */