]> gcc.gnu.org Git - gcc.git/commitdiff
Fix wrong usage of dump_printf_loc (PR tree-optimization/90416).
authorMartin Liska <mliska@suse.cz>
Mon, 13 May 2019 10:26:09 +0000 (12:26 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Mon, 13 May 2019 10:26:09 +0000 (10:26 +0000)
2019-05-13  Martin Liska  <mliska@suse.cz>

PR tree-optimization/90416
* tree-vect-stmts.c (vect_check_load_store_mask): Concatenate
string instead of passing the second part as va_arg argument.

From-SVN: r271118

gcc/ChangeLog
gcc/tree-vect-stmts.c

index 8fe1a9eeaa785f8ca6372d36d25eb437f69298a6..f599fc2c06adb0abec051e250f1f8ae0bfe35e98 100644 (file)
@@ -1,3 +1,9 @@
+2019-05-13  Martin Liska  <mliska@suse.cz>
+
+       PR tree-optimization/90416
+       * tree-vect-stmts.c (vect_check_load_store_mask): Concatenate
+       string instead of passing the second part as va_arg argument.
+
 2019-05-13  Martin Liska  <mliska@suse.cz>
 
        PR gcov-profile/90380
index ced4264722c226e9ec93956a07b168782ce85c78..4ed60808a653098c3015aed27d0ebdb0cd194606 100644 (file)
@@ -2592,7 +2592,7 @@ vect_check_load_store_mask (stmt_vec_info stmt_info, tree mask,
     {
       if (dump_enabled_p ())
        dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
-                        "vector mask type %T",
+                        "vector mask type %T"
                         " does not match vector data type %T.\n",
                         mask_vectype, vectype);
 
This page took 0.074023 seconds and 5 git commands to generate.