many_win32.c: Remove whitespaces.
authorAndreas Tobler <a.tobler@schweiz.ch>
Sat, 4 Sep 2004 22:41:53 +0000 (00:41 +0200)
committerAndreas Tobler <andreast@gcc.gnu.org>
Sat, 4 Sep 2004 22:41:53 +0000 (00:41 +0200)
2004-09-05  Andreas Tobler  <a.tobler@schweiz.ch>

* testsuite/libffi.call/many_win32.c: Remove whitespaces.
* testsuite/libffi.call/promotion.c: Likewise.
* testsuite/libffi.call/return_ll.c: Remove unused var. Cleanup
whitespaces.
* testsuite/libffi.call/return_sc.c: Likewise.
* testsuite/libffi.call/return_uc.c: Likewise.

From-SVN: r87091

libffi/ChangeLog
libffi/testsuite/libffi.call/many_win32.c
libffi/testsuite/libffi.call/promotion.c
libffi/testsuite/libffi.call/return_ll.c
libffi/testsuite/libffi.call/return_sc.c
libffi/testsuite/libffi.call/return_uc.c

index f1be09c62005c83fff13f86252fa22f69469f5d0..82cbd8cdaf9a93cb8efa3b325b2db904e83f929c 100644 (file)
@@ -1,3 +1,12 @@
+2004-09-05  Andreas Tobler  <a.tobler@schweiz.ch>
+
+       * testsuite/libffi.call/many_win32.c: Remove whitespaces.
+       * testsuite/libffi.call/promotion.c: Likewise.
+       * testsuite/libffi.call/return_ll.c: Remove unused var. Cleanup
+       whitespaces.
+       * testsuite/libffi.call/return_sc.c: Likewise.
+       * testsuite/libffi.call/return_uc.c: Likewise.
+
 2004-09-05  Andreas Tobler  <a.tobler@schweiz.ch>
 
        * src/powerpc/darwin.S: Fix comments and identation.
index 7cb5336780220777ad99e6808f474aed405f74ae..1b2633227ad9e6dd159e4cc9f0aef01540b629aa 100644 (file)
@@ -26,7 +26,7 @@ static float __attribute__((stdcall)) stdcall_many(float f1,
   return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13);
 }
 
-int main (void) 
+int main (void)
 {
   ffi_cif cif;
   ffi_type *args[13];
@@ -34,30 +34,30 @@ int main (void)
   float fa[13];
   float f, ff;
   unsigned long ul;
-  
+
   for (ul = 0; ul < 13; ul++)
     {
       args[ul] = &ffi_type_float;
       values[ul] = &fa[ul];
        fa[ul] = (float) ul;
     }
-  
+
   /* Initialize the cif */
   CHECK(ffi_prep_cif(&cif, FFI_STDCALL, 13,
                     &ffi_type_float, args) == FFI_OK);
-  
-  ff =  stdcall_many(fa[0], fa[1],     
-                    fa[2], fa[3],      
-                    fa[4], fa[5],      
+
+  ff =  stdcall_many(fa[0], fa[1],
+                    fa[2], fa[3],
+                    fa[4], fa[5],
                     fa[6], fa[7],
-                    fa[8], fa[9],                      
+                    fa[8], fa[9],
                     fa[10], fa[11], fa[12]);
 
   ffi_call(&cif, FFI_FN(stdcall_many), &f, values);
-  
+
   if (f - ff < FLT_EPSILON)
     printf("stdcall many arg tests ok!\n");
   else
-    CHECK(0);  
-  exit(0);     
+    CHECK(0);
+  exit(0);
 }
index 75e842159397f6a796e4878e74004d533bda8e89..3fb0fe21036f3c6bd50e80d619a5709644e3a5ff 100644 (file)
@@ -6,7 +6,7 @@
 
 /* { dg-do run } */
 #include "ffitest.h"
-static int promotion(signed char sc, signed short ss, 
+static int promotion(signed char sc, signed short ss,
                     unsigned char uc, unsigned short us)
 {
   int r = (int) sc + (int) ss + (int) uc + (int) us;
@@ -34,18 +34,18 @@ int main (void)
   values[1] = &ss;
   values[2] = &uc;
   values[3] = &us;
-  
+
   /* Initialize the cif */
-  CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 4, 
+  CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 4,
                     &ffi_type_sint, args) == FFI_OK);
-  
+
   us = 0;
   ul = 0;
-  
-  for (sc = (signed char) -127; 
+
+  for (sc = (signed char) -127;
        sc <= (signed char) 120; /*@-type@*/ sc += 1 /*@=type@*/)
     for (ss = -30000; ss <= 30000; ss += 10000)
-      for (uc = (unsigned char) 0; 
+      for (uc = (unsigned char) 0;
           uc <= (unsigned char) 200; /*@-type@*/ uc += 20 /*@=type@*/)
        for (us = 0; us <= 60000; us += 10000)
          {
@@ -55,5 +55,5 @@ int main (void)
                  (unsigned char) uc + (unsigned short) us);
          }
   printf("%lu promotion tests run\n", ul);
-  exit(0); 
+  exit(0);
 }
index b95cac4ef02e1bb0a5a35db10898b50f01d557ad..ea4a1e44780c09fe9d7df9a6f84c255700d6a2a0 100644 (file)
@@ -18,26 +18,22 @@ int main (void)
   void *values[MAX_ARGS];
   long long rlonglong;
   long long ll;
-  unsigned long ul;
-  
+
   args[0] = &ffi_type_sint64;
   values[0] = &ll;
-  
+
   /* Initialize the cif */
-  CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1, 
+  CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
                     &ffi_type_sint64, args) == FFI_OK);
-  
+
   for (ll = 0LL; ll < 100LL; ll++)
     {
-      ul++;
       ffi_call(&cif, FFI_FN(return_ll), &rlonglong, values);
       CHECK(rlonglong == ll);
     }
-  
+
   for (ll = 55555555555000LL; ll < 55555555555100LL; ll++)
     {
-      ul++;
       ffi_call(&cif, FFI_FN(return_ll), &rlonglong, values);
       CHECK(rlonglong == ll);
     }
index e528a8467b038a2f712012e8c9bcc42b78dc5ff4..19608ee7c8bbbe6cfcdd5bae95510f8ccddef0ef 100644 (file)
@@ -18,7 +18,6 @@ int main (void)
   void *values[MAX_ARGS];
   ffi_arg rint;
   signed char sc;
-  unsigned long ul;
 
   args[0] = &ffi_type_schar;
   values[0] = &sc;
@@ -30,7 +29,6 @@ int main (void)
   for (sc = (signed char) -127;
        sc < (signed char) 127; sc++)
     {
-      ul++;
       ffi_call(&cif, FFI_FN(return_sc), &rint, values);
       CHECK(rint == (ffi_arg) sc);
     }
index c943d4801be048fbb33bc69b77d71c944898aea6..07c45de51101b295c68461975ad8942a8c282b59 100644 (file)
@@ -20,19 +20,17 @@ int main (void)
   ffi_arg rint;
 
   unsigned char uc;
-  unsigned long ul;
 
   args[0] = &ffi_type_uchar;
   values[0] = &uc;
-  
+
   /* Initialize the cif */
-  CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1, 
+  CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
                     &ffi_type_uchar, args) == FFI_OK);
-  
-  for (uc = (unsigned char) '\x00'; 
+
+  for (uc = (unsigned char) '\x00';
        uc < (unsigned char) '\xff'; uc++)
     {
-      ul++;
       ffi_call(&cif, FFI_FN(return_uc), &rint, values);
       CHECK(rint == (signed int) uc);
     }