aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2019-05-13 12:26:09 +0200
committerMartin Liska <marxin@gcc.gnu.org>2019-05-13 10:26:09 +0000
commit6db881be90d9b953ed48c69f6ecbdbb534d8d678 (patch)
tree75da10df8ef7f22b4475d2304cd7e46cc0b82086 /gcc
parent2e9ff3bbe24879ecd81d7f99d4b30eaa1cd1021b (diff)
downloadgcc-6db881be90d9b953ed48c69f6ecbdbb534d8d678.zip
gcc-6db881be90d9b953ed48c69f6ecbdbb534d8d678.tar.gz
gcc-6db881be90d9b953ed48c69f6ecbdbb534d8d678.tar.bz2
Fix wrong usage of dump_printf_loc (PR tree-optimization/90416).
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/tree-vect-stmts.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8fe1a9e..f599fc2 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,11 @@
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
* gcov.c (handle_cycle): Do not support zero cycle count,
it should not be possible.
diff --git a/gcc/tree-vect-stmts.c b/gcc/tree-vect-stmts.c
index ced4264..4ed6080 100644
--- a/gcc/tree-vect-stmts.c
+++ b/gcc/tree-vect-stmts.c
@@ -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);