diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-10-15 23:33:37 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-10-15 23:33:37 +0000 |
commit | 9ebb0332fc8a6c9cf07f9b1b7ea0220759b5cdab (patch) | |
tree | dad12f4adc06eb260b8039c58615d2b82c895029 /soft-fp/op-2.h | |
parent | 4b1a6d8bc9cf568f053a66375945bcadb19eef8b (diff) | |
download | glibc-9ebb0332fc8a6c9cf07f9b1b7ea0220759b5cdab.tar.gz glibc-9ebb0332fc8a6c9cf07f9b1b7ea0220759b5cdab.tar.xz glibc-9ebb0332fc8a6c9cf07f9b1b7ea0220759b5cdab.zip |
soft-fp: remove unused macros.
Diffstat (limited to 'soft-fp/op-2.h')
-rw-r--r-- | soft-fp/op-2.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/soft-fp/op-2.h b/soft-fp/op-2.h index 1cbc1fe23f..0704035845 100644 --- a/soft-fp/op-2.h +++ b/soft-fp/op-2.h @@ -574,36 +574,6 @@ while (0) -#define _FP_DIV_MEAT_2_gmp(fs, R, X, Y) \ - do \ - { \ - _FP_W_TYPE _x[4], _y[2], _z[4]; \ - _y[0] = Y##_f0; \ - _y[1] = Y##_f1; \ - _x[0] = _x[3] = 0; \ - if (_FP_FRAC_GE_2(X, Y)) \ - { \ - _x[1] = (X##_f0 << (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE) \ - | X##_f1 >> (_FP_W_TYPE_SIZE - \ - (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE))); \ - _x[2] = X##_f1 << (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE); \ - } \ - else \ - { \ - R##_e--; \ - _x[1] = (X##_f0 << (_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE) \ - | X##_f1 >> (_FP_W_TYPE_SIZE - \ - (_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE))); \ - _x[2] = X##_f1 << (_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE); \ - } \ - \ - (void) mpn_divrem (_z, 0, _x, 4, _y, 2); \ - R##_f1 = _z[1]; \ - R##_f0 = _z[0] | ((_x[0] | _x[1]) != 0); \ - } \ - while (0) - - /* * Square root algorithms: * We have just one right now, maybe Newton approximation |