summaryrefslogtreecommitdiff
path: root/mpfr-impl.h
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2008-02-06 13:48:33 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2008-02-06 13:48:33 +0000
commit3f84935f3e2f4f178cfeeb76659f90c62fb83b04 (patch)
tree15c486667a1b452beaf05250727dcd0e2c7ccbc7 /mpfr-impl.h
parente8f775919fbb7e1b9ea4d610bd27c9c377df67d9 (diff)
downloadmpfr-3f84935f3e2f4f178cfeeb76659f90c62fb83b04.tar.gz
mpfr-impl.h: removed MPFR_CHECK* macros as they are not used.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@5262 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr-impl.h')
-rw-r--r--mpfr-impl.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/mpfr-impl.h b/mpfr-impl.h
index 2701a1325..f036c89b4 100644
--- a/mpfr-impl.h
+++ b/mpfr-impl.h
@@ -310,16 +310,6 @@ __MPFR_DECLSPEC extern const mpfr_t __gmpfr_four;
# define MPFR_ASSERTD(expr) ((void) 0)
#endif
-/* Check if the args are correct */
-/* Can't be used since TMP variables are not correct */
-#define MPFR_CHECK1(x,r) \
- MPFR_ASSERTD(mpfr_check(x) && GMP_RNDN <= r && r <= GMP_RNDD)
-#define MPFR_CHECK2(x,y,r) \
- MPFR_ASSERTD(mpfr_check(x) && mpfr_check(y) && GMP_RNDN <= r && r <= GMP_RNDD)
-#define MPFR_CHECK3(x,y,z,r) \
- MPFR_ASSERTD(mpfr_check(x) && mpfr_check(y) && mpfr_check(z) && \
- GMP_RNDN <= r && r <= GMP_RNDD)
-
/* Code to deal with impossible
WARNING: It doesn't use do { } while (0) for Insure++*/
#define MPFR_RET_NEVER_GO_HERE() {MPFR_ASSERTN(0); return 0;}