diff --git a/gcc/testsuite/c-c++-common/analyzer/flex-without-call-summaries.c b/gcc/testsuite/c-c++-common/analyzer/flex-without-call-summaries.c index 092d7848621973e2caf13f47e654e4d312d5dc80..e68ac2f3b749874a09e2a285aef3de3b8ecf54ce 100644 --- a/gcc/testsuite/c-c++-common/analyzer/flex-without-call-summaries.c +++ b/gcc/testsuite/c-c++-common/analyzer/flex-without-call-summaries.c @@ -889,7 +889,7 @@ static int yy_get_next_buffer (void) } else /* Can't grow it, we don't own it. */ - b->yy_ch_buf = NULL; /* { dg-bogus "leak" "PR analyzer/103546" */ + b->yy_ch_buf = NULL; /* { dg-bogus "leak" "PR analyzer/103546" } */ if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( diff --git a/gcc/testsuite/c-c++-common/analyzer/malloc-callbacks.c b/gcc/testsuite/c-c++-common/analyzer/malloc-callbacks.c index 0ba4f3824c62136e0b04c535505d6d3ffb2b542d..422b4037363480a2dea1285c96aa807e70a88c79 100644 --- a/gcc/testsuite/c-c++-common/analyzer/malloc-callbacks.c +++ b/gcc/testsuite/c-c++-common/analyzer/malloc-callbacks.c @@ -64,7 +64,7 @@ void test_5 (void) { allocator_t alloc_fn = get_alloca (); deallocator_t dealloc_fn = get_free (); - int *ptr = (int *) alloc_fn (sizeof (int)); /* dg-message "region created on stack here" } */ + int *ptr = (int *) alloc_fn (sizeof (int)); /* { dg-message "region created on stack here" } */ dealloc_fn (ptr); /* { dg-warning "'free' of 'ptr' which points to memory on the stack" } */ } diff --git a/gcc/testsuite/gcc.dg/Wstringop-overflow-79.c b/gcc/testsuite/gcc.dg/Wstringop-overflow-79.c index 15eb26fbdb73fc8496b38c9bf62788b66b892b47..e97cb91ba18d7346e47b9bede454d486a6ba9106 100644 --- a/gcc/testsuite/gcc.dg/Wstringop-overflow-79.c +++ b/gcc/testsuite/gcc.dg/Wstringop-overflow-79.c @@ -5,8 +5,8 @@ { dg-do compile } { dg-options "-O0 -Wno-array-bounds" } */ -extern char a[8]; // dg-message at offset \\\[3, 6] into destination object 'a'" "note 1" } - // dg-message at offset \\\[5, 8] into destination object 'a'" "note 2" { target *-*-* } .-1 } +extern char a[8]; // { dg-message "at offset \\\[3, 6] into destination object 'a'" "note 1" } + // { dg-message "at offset \\\[5, 8] into destination object 'a'" "note 2" { target *-*-* } .-1 } void test_2_notes (int i) { @@ -15,9 +15,9 @@ void test_2_notes (int i) } -extern char b[8]; // dg-message at offset \\\[3, 6] into destination object 'b'" "note 1" } - // dg-message at offset \\\[4, 7] into destination object 'b'" "note 2" { target *-*-* } .-1 } - // dg-message at offset \\\[5, 8] into destination object 'b'" "note 3" { target *-*-* } .-2 } +extern char b[8]; // { dg-message "at offset \\\[3, 6] into destination object 'b'" "note 1" } + // { dg-message "at offset \\\[4, 7] into destination object 'b'" "note 2" { target *-*-* } .-1 } + // { dg-message "at offset \\\[5, 8] into destination object 'b'" "note 3" { target *-*-* } .-2 } void test_3_notes (int i) { @@ -26,10 +26,10 @@ void test_3_notes (int i) } -extern char c[8]; // dg-message at offset \\\[3, 6] into destination object 'c'" "note 1" } - // dg-message at offset \\\[4, 7] into destination object 'c'" "note 2" { target *-*-* } .-1 } - // dg-message at offset \\\[5, 8] into destination object 'c'" "note 3" { target *-*-* } .-2 } - // dg-message at offset \\\[6, 8] into destination object 'c'" "note 3" { target *-*-* } .-2 } +extern char c[8]; // { dg-message "at offset \\\[3, 6] into destination object 'c'" "note 1" } + // { dg-message "at offset \\\[4, 7] into destination object 'c'" "note 2" { target *-*-* } .-1 } + // { dg-message "at offset \\\[5, 8] into destination object 'c'" "note 3" { target *-*-* } .-2 } + // { dg-message "at offset \\\[6, 8] into destination object 'c'" "note 3" { target *-*-* } .-2 } void test_4_notes (int i) { @@ -47,11 +47,11 @@ void test_4_notes (int i) } -extern char d[8]; // dg-message at offset \\\[3, 6] into destination object 'd'" "note 1" } - // dg-message at offset \\\[4, 7] into destination object 'd'" "note 2" { target *-*-* } .-1 } - // dg-message at offset \\\[5, 8] into destination object 'd'" "note 3" { target *-*-* } .-2 } - // dg-message at offset \\\[6, 8] into destination object 'd'" "note 3" { target *-*-* } .-3 } - // dg-message at offset \\\[7, 8] into destination object 'd'" "note 3" { target *-*-* } .-4 } +extern char d[8]; // { dg-message "at offset \\\[3, 6] into destination object 'd'" "note 1" } + // { dg-message "at offset \\\[4, 7] into destination object 'd'" "note 2" { target *-*-* } .-1 } + // { dg-message "at offset \\\[5, 8] into destination object 'd'" "note 3" { target *-*-* } .-2 } + // { dg-message "at offset \\\[6, 8] into destination object 'd'" "note 3" { target *-*-* } .-3 } + // { dg-message "at offset \\\[7, 8] into destination object 'd'" "note 3" { target *-*-* } .-4 } void test_5_notes (int i) { diff --git a/gcc/testsuite/gcc.dg/Wstringop-overflow-80.c b/gcc/testsuite/gcc.dg/Wstringop-overflow-80.c index 1628c2f0159c8651814ac3a34626f7518428cc9a..c74ca3a7918beb295baf38e472aec43257167ac3 100644 --- a/gcc/testsuite/gcc.dg/Wstringop-overflow-80.c +++ b/gcc/testsuite/gcc.dg/Wstringop-overflow-80.c @@ -5,8 +5,8 @@ { dg-do compile } { dg-options "-O2 -Wno-array-bounds" } */ -extern char a[8]; // dg-message at offset \\\[3, 6] into destination object 'a'" "note 1" } - // dg-message at offset \\\[5, 8] into destination object 'a'" "note 2" { target *-*-* } .-1 } +extern char a[8]; // { dg-message "at offset \\\[3, 6] into destination object 'a'" "note 1" } + // { dg-message "at offset \\\[5, 8] into destination object 'a'" "note 2" { target *-*-* } .-1 } void test_2_notes (int i) { @@ -15,9 +15,9 @@ void test_2_notes (int i) } -extern char b[8]; // dg-message at offset \\\[3, 6] into destination object 'b'" "note 1" } - // dg-message at offset \\\[4, 7] into destination object 'b'" "note 2" { target *-*-* } .-1 } - // dg-message at offset \\\[5, 8] into destination object 'b'" "note 3" { target *-*-* } .-2 } +extern char b[8]; // { dg-message "at offset \\\[3, 6] into destination object 'b'" "note 1" } + // { dg-message "at offset \\\[4, 7] into destination object 'b'" "note 2" { target *-*-* } .-1 } + // { dg-message "at offset \\\[5, 8] into destination object 'b'" "note 3" { target *-*-* } .-2 } void test_3_notes (int i) { @@ -26,10 +26,10 @@ void test_3_notes (int i) } -extern char c[8]; // dg-message at offset \\\[3, 6] into destination object 'c'" "note 1" } - // dg-message at offset \\\[4, 7] into destination object 'c'" "note 2" { target *-*-* } .-1 } - // dg-message at offset \\\[5, 8] into destination object 'c'" "note 3" { target *-*-* } .-2 } - // dg-message at offset \\\[6, 8] into destination object 'c'" "note 3" { target *-*-* } .-2 } +extern char c[8]; // { dg-message "at offset \\\[3, 6] into destination object 'c'" "note 1" } + // { dg-message "at offset \\\[4, 7] into destination object 'c'" "note 2" { target *-*-* } .-1 } + // { dg-message "at offset \\\[5, 8] into destination object 'c'" "note 3" { target *-*-* } .-2 } + // { dg-message "at offset \\\[6, 8] into destination object 'c'" "note 3" { target *-*-* } .-2 } void test_4_notes (int i) { @@ -47,11 +47,11 @@ void test_4_notes (int i) } -extern char d[8]; // dg-message at offset \\\[3, 6] into destination object 'd'" "note 1" } - // dg-message at offset \\\[4, 7] into destination object 'd'" "note 2" { target *-*-* } .-1 } - // dg-message at offset \\\[5, 8] into destination object 'd'" "note 3" { target *-*-* } .-2 } - // dg-message at offset \\\[6, 8] into destination object 'd'" "note 3" { target *-*-* } .-3 } - // dg-message at offset \\\[7, 8] into destination object 'd'" "note 3" { target *-*-* } .-4 } +extern char d[8]; // { dg-message "at offset \\\[3, 6] into destination object 'd'" "note 1" } + // { dg-message "at offset \\\[4, 7] into destination object 'd'" "note 2" { target *-*-* } .-1 } + // { dg-message "at offset \\\[5, 8] into destination object 'd'" "note 3" { target *-*-* } .-2 } + // { dg-message "at offset \\\[6, 8] into destination object 'd'" "note 3" { target *-*-* } .-3 } + // { dg-message "at offset \\\[7, 8] into destination object 'd'" "note 3" { target *-*-* } .-4 } void test_5_notes (int i) {