Use variable names which do not conflict with FLINT

This commit is contained in:
Jeroen Demeyer 2015-12-28 19:42:56 +01:00
parent 7e64c5237f
commit a4c5930721

12
arf.h
View file

@ -870,12 +870,12 @@ void arf_randtest_special(arf_t x, flint_rand_t state, slong bits, slong mag_bit
} \
else if ((_xn) == 2) \
{ \
mp_limb_t __x1, __x0, __y1, __y0; \
__x0 = (_x)[0]; \
__x1 = (_x)[1]; \
__y0 = (_y)[0]; \
__y1 = (_y)[1]; \
nn_mul_2x2((_z)[3], (_z)[2], (_z)[1], (_z)[0], __x1, __x0, __y1, __y0); \
mp_limb_t __arb_x1, __arb_x0, __arb_y1, __arb_y0; \
__arb_x0 = (_x)[0]; \
__arb_x1 = (_x)[1]; \
__arb_y0 = (_y)[0]; \
__arb_y1 = (_y)[1]; \
nn_mul_2x2((_z)[3], (_z)[2], (_z)[1], (_z)[0], __arb_x1, __arb_x0, __arb_y1, __arb_y0); \
} \
else if ((_x) == (_y)) \
{ \