Commit f2981454cbe25cf9411b710f46c5f5552003a123

Anthony Green 2012-04-05T15:45:19

Revert debug code changes

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/testsuite/libffi.call/promotion.c b/testsuite/libffi.call/promotion.c
index 633519c..4456161 100644
--- a/testsuite/libffi.call/promotion.c
+++ b/testsuite/libffi.call/promotion.c
@@ -9,7 +9,6 @@
 static int promotion(signed char sc, signed short ss,
 		     unsigned char uc, unsigned short us)
 {
-  printf ("%d + %d + %d + %d\n", (int) sc, (int) ss, (int) uc, (int) us);
   int r = (int) sc + (int) ss + (int) uc + (int) us;
 
   return r;
@@ -51,7 +50,6 @@ int main (void)
 	for (us = 0; us <= 60000; us += 10000)
 	  {
 	    ul++;
-  printf ("%d + %d + %d + %d\n", (int) sc, (int) ss, (int) uc, (int) us);
 	    ffi_call(&cif, FFI_FN(promotion), &rint, values);
 	    CHECK((int)rint == (signed char) sc + (signed short) ss +
 		  (unsigned char) uc + (unsigned short) us);