[testsuite][arm] Add missing quotes to expected warning messages.

2019-08-21  Christophe Lyon  <christophe.lyon@linaro.org>

	* gcc.target/arm/cmse/cmse-9.c: Add quotes to expected
	warning messages.

From-SVN: r274793
This commit is contained in:
Christophe Lyon 2019-08-21 09:40:51 +00:00 committed by Christophe Lyon
parent 8ef64ab954
commit 73c1f2f00e
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2019-08-21 Christophe Lyon <christophe.lyon@linaro.org>
* gcc.target/arm/cmse/cmse-9.c: Add quotes to expected
warning messages.
2019-08-21 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/prot9.adb, gnat.dg/prot9_gen.ads,

View File

@ -2,12 +2,12 @@
/* { dg-skip-if "Testing exclusion of -mcmse" { arm-*-* } { "-mcmse" } { "" } } */
void __attribute__ ((cmse_nonsecure_call)) (*bar) (int); /* { dg-warning "attribute ignored without -mcmse option" } */
typedef void __attribute__ ((cmse_nonsecure_call)) baz (int); /* { dg-warning "attribute ignored without -mcmse option" } */
void __attribute__ ((cmse_nonsecure_call)) (*bar) (int); /* { dg-warning "attribute ignored without '-mcmse' option" } */
typedef void __attribute__ ((cmse_nonsecure_call)) baz (int); /* { dg-warning "attribute ignored without '-mcmse' option" } */
int __attribute__ ((cmse_nonsecure_entry))
foo (int a, baz b)
{ /* { dg-warning "attribute ignored without -mcmse option" } */
{ /* { dg-warning "attribute ignored without '-mcmse' option" } */
bar (a);
b (a);
return a + 1;