|
From: <sv...@va...> - 2015-09-22 07:03:46
|
Author: florian
Date: Tue Sep 22 08:03:38 2015
New Revision: 15670
Log:
Break a few overly long lines.
Modified:
trunk/memcheck/tests/vbit-test/irops.c
trunk/memcheck/tests/vbit-test/main.c
Modified: trunk/memcheck/tests/vbit-test/irops.c
==============================================================================
--- trunk/memcheck/tests/vbit-test/irops.c (original)
+++ trunk/memcheck/tests/vbit-test/irops.c Tue Sep 22 08:03:38 2015
@@ -1126,7 +1126,8 @@
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;
Modified: trunk/memcheck/tests/vbit-test/main.c
==============================================================================
--- trunk/memcheck/tests/vbit-test/main.c (original)
+++ trunk/memcheck/tests/vbit-test/main.c Tue Sep 22 08:03:38 2015
@@ -75,7 +75,7 @@
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 @@
}
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;
}
|