PPC testsuite fixes
authorCarl Love <cel@us.ibm.com>
Fri, 23 Oct 2020 17:52:31 +0000 (12:52 -0500)
committerCarl Love <cel@us.ibm.com>
Tue, 27 Oct 2020 18:40:56 +0000 (13:40 -0500)
2020-10-27  Carl Love  <cel@us.ibm.com>

gcc/testsuite
* gcc.target/powerpc/vec-blend-runnable.c: Change #ifdef
DEBUG to #if DEBUG.
Fix printf line so it is less then 80 characters long.
* gcc.target/powerpc/vec-insert-word-runnable.c: Change
#ifdef DEBUG to #if DEBUG.
* gcc.target/powerpc/vec-permute-ext-runnable.c: Change
#ifdef DEBUG to #if DEBUG.
* gcc.target/powerpc/vec-replace-word-runnable.c: Change
#ifdef DEBUG to #if DEBUG.
Fix printf lines so they are less then 80 characters long.
* gcc.target/powerpc/vec-shift-double-runnable.c: Change
#ifdef DEBUG to #if DEBUG.

gcc/testsuite/gcc.target/powerpc/vec-blend-runnable.c
gcc/testsuite/gcc.target/powerpc/vec-insert-word-runnable.c
gcc/testsuite/gcc.target/powerpc/vec-permute-ext-runnable.c
gcc/testsuite/gcc.target/powerpc/vec-replace-word-runnable.c
gcc/testsuite/gcc.target/powerpc/vec-shift-double-runnable.c

index 774960bbcd3d9310142175f44b8a0d9ed4d68e0b..f614ade49b2c6def623927d393790ea3a45c4ca8 100644 (file)
@@ -6,7 +6,7 @@
 
 #define DEBUG 0
 
-#ifdef DEBUG
+#if DEBUG
 #include <stdio.h>
 #endif
 
@@ -145,7 +145,8 @@ main (int argc, char *argv [])
 
   if (!vec_all_eq (vresult_ushort,  expected_vresult_ushort)) {
 #if DEBUG
-    printf("ERROR, vec_blendv (vsrc_a_ushort, vsrc_b_ushort, vsrc_c_ushort)\n");
+    printf("ERROR, vec_blendv (vsrc_a_ushort, vsrc_b_ushort, "
+          "vsrc_c_ushort)\n");
     for(i = 0; i < 8; i++)
       printf(" vresult_ushort[%d] = %d, expected_vresult_ushort[%d] = %d\n",
             i, vresult_ushort[i], i, expected_vresult_ushort[i]);
index 55ca1c4b35db28ba260d31b40b7b5540d0f4303b..c458e001d74f917c916cb004155471b6ecb11144 100644 (file)
@@ -6,7 +6,7 @@
 
 #define DEBUG 0
 
-#ifdef DEBUG
+#if DEBUG
 #include <stdio.h>
 #endif
 
index 2626d876d3d24c707d7924d4ab64b0fff0275776..069581fb60870b6441cb07aa2531f527843e3eb1 100644 (file)
@@ -6,7 +6,7 @@
 
 #define DEBUG 0
 
-#ifdef DEBUG
+#if DEBUG
 #include <stdio.h>
 #endif
 
index 413b9048ecad4128315e0ee4b4ac493cc936a37a..81c475f2908595534892b3d8f8bd435d83f88ad1 100644 (file)
@@ -7,7 +7,7 @@
 
 #define DEBUG 0
 
-#ifdef DEBUG
+#if DEBUG
 #include <stdio.h>
 #endif
 
@@ -213,7 +213,8 @@ main (int argc, char *argv [])
 
   if (!vec_all_eq (vresult_float,  expected_vresult_float)) {
 #if DEBUG
-    printf("ERROR, vec_replace_unaligned (src_vb_float, src_va_float, index)\n");
+    printf("ERROR, vec_replace_unaligned (src_vb_float, src_va_float, "
+          "index)\n");
     for(i = 0; i < 4; i++)
       printf(" vresult_float[%d] = %f, expected_vresult_float[%d] = %f\n",
             i, vresult_float[i], i, expected_vresult_float[i]);
@@ -234,7 +235,8 @@ main (int argc, char *argv [])
 
   if (!vec_all_eq (vresult_ullint,  expected_vresult_ullint)) {
 #if DEBUG
-    printf("ERROR, vec_replace_unaligned (src_vb_ullint, src_va_ullint, index)\n");
+    printf("ERROR, vec_replace_unaligned (src_vb_ullint, src_va_ullint, "
+          "index)\n");
     for(i = 0; i < 2; i++)
       printf(" vresult_ullint[%d] = %d, expected_vresult_ullint[%d] = %d\n",
             i, vresult_ullint[i], i, expected_vresult_ullint[i]);
@@ -253,7 +255,8 @@ main (int argc, char *argv [])
 
   if (!vec_all_eq (vresult_llint,  expected_vresult_llint)) {
 #if DEBUG
-    printf("ERROR, vec_replace_unaligned (src_vb_llint, src_va_llint, index)\n");
+    printf("ERROR, vec_replace_unaligned (src_vb_llint, src_va_llint, "
+          "index)\n");
     for(i = 0; i < 2; i++)
       printf(" vresult_llint[%d] = %d, expected_vresult_llint[%d] = %d\n",
             i, vresult_llint[i], i, expected_vresult_llint[i]);
@@ -271,8 +274,8 @@ main (int argc, char *argv [])
 
   if (!vec_all_eq (vresult_double,  expected_vresult_double)) {
 #if DEBUG
-    printf("ERROR, vec_replace_unaligned (src_vb_double, src_va_double, index)\
-n");
+    printf("ERROR, vec_replace_unaligned (src_vb_double, src_va_double, "
+          "index)\n");
     for(i = 0; i < 2; i++)
       printf(" vresult_double[%d] = %f, expected_vresult_double[%d] = %f\n",
             i, vresult_double[i], i, expected_vresult_double[i]);
index b8478f5c32d7ba6d5cb1ffac142b895b009ea3ed..4c1e0c4e7935fc9b9bbd929cf4e8086c50595731 100644 (file)
@@ -6,7 +6,7 @@
 
 #define DEBUG 0
 
-#ifdef DEBUG
+#if DEBUG
 #include <stdio.h>
 #endif