Commit 888157af by Richard Biener Committed by Richard Biener

re PR bootstrap/87225 (tree-vect-stmts.c:3748 error: converting to 'bool' from…

re PR bootstrap/87225 (tree-vect-stmts.c:3748 error: converting to 'bool' from 'std::nullptr_t' requires direct-initialization [-fpermissive])

2018-09-05  Richard Biener  <rguenther@suse.de>

	PR bootstrap/87225
	* tree-vect-stmts.c (vectorizable_simd_clone_call): Fix bogus
	return.

From-SVN: r264116
parent a98824ac
2018-09-05 Richard Biener <rguenther@suse.de>
PR bootstrap/87225
* tree-vect-stmts.c (vectorizable_simd_clone_call): Fix bogus
return.
2018-09-05 Siddhesh Poyarekar <siddhesh@sourceware.org>
Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
......
......@@ -3898,7 +3898,7 @@ vectorizable_simd_clone_call (stmt_vec_info stmt_info,
dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
"not considering SIMD clones; not yet supported"
" for variable-width vectors.\n");
return NULL;
return false;
}
unsigned int badness = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment