]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Break a few overly long lines.
authorFlorian Krohm <florian@eich-krohm.de>
Tue, 22 Sep 2015 07:03:38 +0000 (07:03 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Tue, 22 Sep 2015 07:03:38 +0000 (07:03 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15670

memcheck/tests/vbit-test/irops.c
memcheck/tests/vbit-test/main.c

index 9e9f0172e1d2840e3125ce8aac200efe0415e7df..fcbafbd3a23b26914e7e98751969f02a920d2242 100644 (file)
@@ -1126,7 +1126,8 @@ get_irop(IROp op)
          case Iop_D128toF64:
          case Iop_D128toF128: {
             int rc;
-            /* These IROps require the Perform Floating Point Operation facility */
+            /* These IROps require the Perform Floating Point Operation
+               facility */
             rc = system(S390X_FEATURES " s390x-pfpo");
             // s390x_features returns 1 if feature does not exist
             rc /= 256;
index 7b9c4de99ba4b343d0c726fba0d98ced2183ed5c..2f1181e508de0381b60522152846716eefb09029 100644 (file)
@@ -75,7 +75,7 @@ main(int argc, char *argv[])
       if (strcmp(argv[i], "-v") == 0) ++verbose;
       else if (strcmp(argv[i], "--help") == 0) {
         printf("\nvbit-test [ -v | --help ]\n");
-        printf("\n\t-v       verbose mode; show number of 1, 2, 3 and 4 operand tests\n");
+        printf("\n\t-v       verbose mode; show number of tests\n");
         printf("\n\t-v -v    verbose mode; shows IROps being tested\n");
         printf("\n\t-v -v -v verbose mode, extreme edition\n\n");
         return 0;
@@ -151,8 +151,9 @@ main(int argc, char *argv[])
    }
 
    if (verbose) 
-      printf("\nvbit-test ran  %d unary, %d binary, %d ternary and %d qernary tests.\n",
-         num_unary_tests, num_binary_tests, num_ternary_tests,
-         num_qernary_tests);
+      printf("\nvbit-test ran  %d unary, %d binary, %d ternary and"
+             " %d qernary tests.\n\n",
+             num_unary_tests, num_binary_tests, num_ternary_tests,
+             num_qernary_tests);
    return 0;
 }