This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH][OBVIOUS] Fix wrong escaping of brackets (PR testsuite/90564).
- From: Segher Boessenkool <segher at kernel dot crashing dot org>
- To: Martin Liška <mliska at suse dot cz>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Wed, 22 May 2019 04:13:24 -0500
- Subject: Re: [PATCH][OBVIOUS] Fix wrong escaping of brackets (PR testsuite/90564).
- References: <b8e3de8f-19c5-cbe1-9c18-0bd42a77f040@suse.cz>
Hi,
On Wed, May 22, 2019 at 10:24:32AM +0200, Martin Liška wrote:
> The patch fixes couple of tests that I've just tested on ppc64le-linux-gnu.
>
> I'm going to install the patch.
Could you please not use double quotes, instead? E.g.
> - res = __builtin_crypto_vshasigmaw (test, 1, 0xff); /* { dg-error "argument 3 must be in the range \\[0, 15\\]" } */
> + res = __builtin_crypto_vshasigmaw (test, 1, 0xff); /* { dg-error "argument 3 must be in the range \\\[0, 15\\\]" } */
res = __builtin_crypto_vshasigmaw (test, 1, 0xff); /* { dg-error {argument 3 must be in the range \[0, 15\]} } */
Segher