From: Florian Krohm Date: Tue, 22 Sep 2015 07:03:38 +0000 (+0000) Subject: Break a few overly long lines. X-Git-Tag: svn/VALGRIND_3_12_0~350 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=079e74fe789746db1fa966a45aa675e31fbc5cc6;p=thirdparty%2Fvalgrind.git Break a few overly long lines. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15670 --- diff --git a/memcheck/tests/vbit-test/irops.c b/memcheck/tests/vbit-test/irops.c index 9e9f0172e1..fcbafbd3a2 100644 --- a/memcheck/tests/vbit-test/irops.c +++ b/memcheck/tests/vbit-test/irops.c @@ -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; diff --git a/memcheck/tests/vbit-test/main.c b/memcheck/tests/vbit-test/main.c index 7b9c4de99b..2f1181e508 100644 --- a/memcheck/tests/vbit-test/main.c +++ b/memcheck/tests/vbit-test/main.c @@ -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; }