Some print code for debugging is committed by mistake, remove them
from the test header file.
It is test only patch and obvious up to a point, will commit it
directly if no comments in next 48H.
gcc/testsuite/ChangeLog:
* gcc.target/riscv/scalar_sat_binary_run_xxx.h: Remove printf
code for debugging.
Signed-off-by: Pan Li <pan2.li@intel.com>
#ifndef HAVE_DEFINED_SCALAR_SAT_BINARY_RUN_XXX
#define HAVE_DEFINED_SCALAR_SAT_BINARY_RUN_XXX
-#include <stdio.h>
-
int
main ()
{
d = DATA[i];
if (RUN_BINARY (d.a, d.b) != d.expect)
- {
- printf ("%d + %d = %d, but %d\n", d.a, d.b, d.expect, RUN_BINARY (d.a, d.b));
__builtin_abort ();
- }
}
return 0;