aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/c99-arraydecl-3.c
diff options
context:
space:
mode:
authorManuel López-Ibáñez <manu@gcc.gnu.org>2010-06-04 15:15:38 +0000
committerManuel López-Ibáñez <manu@gcc.gnu.org>2010-06-04 15:15:38 +0000
commit49706e39a2b65519ef173e55637c41c899e0b968 (patch)
tree2537a481171fe231924d117a943f8cd28aebff61 /gcc/testsuite/gcc.dg/c99-arraydecl-3.c
parentb13ea8bd6dc138446ad640d934fc22498d915e82 (diff)
downloadgcc-49706e39a2b65519ef173e55637c41c899e0b968.zip
gcc-49706e39a2b65519ef173e55637c41c899e0b968.tar.gz
gcc-49706e39a2b65519ef173e55637c41c899e0b968.tar.bz2
re PR c/25880 (improve message of warning for discarding qualifiers)
2010-06-04 Manuel López-Ibáñez <manu@gcc.gnu.org> PR c/25880 * c-objc-common.c (c_tree_printer): Handle %V, %v and %#v. * c-format.c (gcc_diag_flag_specs): Add hash. (gcc_cxxdiag_flag_specs): Use gcc_diag_flag_specs directly. (gcc_tdiag_char_table,gcc_cdiag_char_table): Handle %V and %v. * c-pretty-print.c (pp_c_cv_qualifier): Rename as pp_c_cv_qualifiers. Handle qualifiers spelling here. (pp_c_type_qualifier_list): Call the function above. * c-pretty-print.h (pp_c_cv_qualifiers): Declare. * c-typeck.c (handle_warn_cast_qual): Print qualifiers. (WARN_FOR_QUALIFIERS): New macro. (convert_for_assignment): Use it. testsuite/ * gcc.dg/assign-warn-2.c: Update. * gcc.dg/cpp/line3.c: Update. * gcc.dg/c99-array-lval-8.c: Update. * gcc.dg/cast-qual-2.c: Update. * gcc.dg/c99-arraydecl-3.c: Update. * gcc.dg/assign-warn-1.c: Update. * gcc.dg/format/gcc_diag-1.c: Update. From-SVN: r160274
Diffstat (limited to 'gcc/testsuite/gcc.dg/c99-arraydecl-3.c')
-rw-r--r--gcc/testsuite/gcc.dg/c99-arraydecl-3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/c99-arraydecl-3.c b/gcc/testsuite/gcc.dg/c99-arraydecl-3.c
index 2ab927d..9f383b9 100644
--- a/gcc/testsuite/gcc.dg/c99-arraydecl-3.c
+++ b/gcc/testsuite/gcc.dg/c99-arraydecl-3.c
@@ -7,7 +7,7 @@
void
f0 (int a[restrict])
{
- int **b = &a; /* { dg-error "discards qualifiers" } */
+ int **b = &a; /* { dg-error "discards 'restrict' qualifier" } */
int *restrict *c = &a;
}
@@ -15,6 +15,6 @@ void
f1 (a)
int a[restrict];
{
- int **b = &a; /* { dg-error "discards qualifiers" } */
+ int **b = &a; /* { dg-error "discards 'restrict' qualifier" } */
int *restrict *c = &a;
}