From: Michael Meissner Date: Thu, 29 Dec 2016 17:19:28 +0000 (+0000) Subject: rs6000.c (altivec_expand_builtin): Fix typos in error messages. X-Git-Tag: upstream/12.2.0~42277 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fdd8eb6db583ca87946adf0eae068d61469da933;p=platform%2Fupstream%2Fgcc.git rs6000.c (altivec_expand_builtin): Fix typos in error messages. 2016-12-29 Michael Meissner * config/rs6000/rs6000.c (altivec_expand_builtin): Fix typos in error messages. From-SVN: r243963 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0a99b63..ae62a53 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-12-29 Michael Meissner + + * config/rs6000/rs6000.c (altivec_expand_builtin): Fix typos in + error messages. + 2016-12-29 Gerald Pfeifer * doc/extend.texi (Cilk Plus Builtins): cilkplus.org now uses diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index e100a01..57e032c 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -15841,7 +15841,7 @@ altivec_expand_builtin (tree exp, rtx target, bool *expandedp) if (TREE_CODE (arg1) != INTEGER_CST || TREE_INT_CST_LOW (arg1) > 12) { - error ("second argument to vec_vextract4b must 0..12"); + error ("second argument to vec_vextract4b must be 0..12"); return expand_call (exp, target, false); } break; @@ -15858,7 +15858,7 @@ altivec_expand_builtin (tree exp, rtx target, bool *expandedp) if (TREE_CODE (arg2) != INTEGER_CST || TREE_INT_CST_LOW (arg2) > 12) { - error ("third argument to vec_vinsert4b must 0..12"); + error ("third argument to vec_vinsert4b must be 0..12"); return expand_call (exp, target, false); } break;