diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/parser.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 7bf18f6..56806fb 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,4 +1,8 @@ 2015-11-12 James Norris <jnorris@codesourcery.com> + + * parser.c (cp_parser_oacc_declare): Remove unused. + +2015-11-12 James Norris <jnorris@codesourcery.com> Joseph Myers <joseph@codesourcery.com> * parser.c (cp_parser_omp_clause_name): Handle 'device_resident' diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 0ab5275..0c918ecf 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -34562,7 +34562,7 @@ cp_parser_oacc_data (cp_parser *parser, cp_token *pragma_tok) static tree cp_parser_oacc_declare (cp_parser *parser, cp_token *pragma_tok) { - tree clauses, stmt, t; + tree clauses, stmt; bool error = false; clauses = cp_parser_oacc_all_clauses (parser, OACC_DECLARE_CLAUSE_MASK, |