summaryrefslogtreecommitdiff
path: root/tests/tsi_op.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2005-08-18 17:03:17 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2005-08-18 17:03:17 +0000
commitd8782b82c961338b15ef888f0bc152566644a964 (patch)
tree6972f3706c8251eb2b814fb636519519b73bb1f5 /tests/tsi_op.c
parentbab5aab404897a12fe1c87734ebf2aa270b9b73b (diff)
downloadmpfr-d8782b82c961338b15ef888f0bc152566644a964.tar.gz
Removed trailing spaces (better for future patches, as such spaces
are sometimes stripped). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3726 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tsi_op.c')
-rw-r--r--tests/tsi_op.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tsi_op.c b/tests/tsi_op.c
index fdf15d895..0d28f721e 100644
--- a/tests/tsi_op.c
+++ b/tests/tsi_op.c
@@ -1,4 +1,4 @@
-/* Test file for mpfr_add_si, mpfr_sub_si, mpfr_si_sub, mpfr_mul_si,
+/* Test file for mpfr_add_si, mpfr_sub_si, mpfr_si_sub, mpfr_mul_si,
mpfr_div_si, mpfr_si_div
Copyright 2004 Free Software Foundation.
@@ -41,7 +41,7 @@ const struct {
const char * res_sub;
const char * res_mul;
const char * res_div;
-} tab[] = {
+} tab[] = {
{"10", 0x1, "11", "0F", "10", "10"},
{"1", -1, "0", "2", "-1", "-1"},
{"17.42", -0x17, "0.42", "2E.42", "-216.ee", "-1.02de9bd37a6f4"},
@@ -53,7 +53,7 @@ check_invert ()
{
mpfr_t x;
mpfr_init2 (x, MPFR_PREC_MIN);
-
+
mpfr_set_ui (x, 0xC, GMP_RNDN);
mpfr_si_sub (x, -1, x, GMP_RNDD); /* -0001 - 1100 = - 1101 --> -1 0000 */
if (mpfr_cmp_si (x, -0x10) )