rs6000-c.c (altivec_resolve_overloaded_builtin): Reformat two multi-line strings.

2016-07-22  Michael Meissner  <meissner@linux.vnet.ibm.com>

	* config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
	Reformat two multi-line strings.

From-SVN: r238675
This commit is contained in:
Michael Meissner 2016-07-23 02:54:53 +00:00 committed by Michael Meissner
parent 36f80e647a
commit c1b99241bd
2 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2016-07-22 Michael Meissner <meissner@linux.vnet.ibm.com>
* config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
Reformat two multi-line strings.
2016-07-22 Martin Sebor <msebor@redhat.com>
* doc/extend.texi (Compound Literals): Add '@' missed in last commit.

View File

@ -4731,11 +4731,13 @@ altivec_resolve_overloaded_builtin (location_t loc, tree fndecl,
/* vec_lvsl and vec_lvsr are deprecated for use with LE element order. */
if (fcode == ALTIVEC_BUILTIN_VEC_LVSL && !VECTOR_ELT_ORDER_BIG)
warning (OPT_Wdeprecated, "vec_lvsl is deprecated for little endian; use \
assignment for unaligned loads and stores");
warning (OPT_Wdeprecated,
"vec_lvsl is deprecated for little endian; use "
"assignment for unaligned loads and stores");
else if (fcode == ALTIVEC_BUILTIN_VEC_LVSR && !VECTOR_ELT_ORDER_BIG)
warning (OPT_Wdeprecated, "vec_lvsr is deprecated for little endian; use \
assignment for unaligned loads and stores");
warning (OPT_Wdeprecated,
"vec_lvsr is deprecated for little endian; use "
"assignment for unaligned loads and stores");
if (fcode == ALTIVEC_BUILTIN_VEC_MUL)
{