From f2981454cbe25cf9411b710f46c5f5552003a123 Mon Sep 17 00:00:00 2001 From: Anthony Green Date: Thu, 5 Apr 2012 15:45:19 -0400 Subject: [PATCH] Revert debug code changes --- testsuite/libffi.call/promotion.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/testsuite/libffi.call/promotion.c b/testsuite/libffi.call/promotion.c index 633519ce..44561615 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);