c, c++: Fix two redundantAssignment warnings [PR94629]
authorJakub Jelinek <jakub@redhat.com>
Fri, 17 Apr 2020 14:59:57 +0000 (16:59 +0200)
committerJakub Jelinek <jakub@redhat.com>
Fri, 17 Apr 2020 14:59:57 +0000 (16:59 +0200)
commit2e3897490e0f99b22a2813cfb34d59a1ea71ff68
tree694c8b8b270f33ea3477a22df070bd0366ebf6fb
parent1dfc50232dcb703454db4f54c538042a32be2138
c, c++: Fix two redundantAssignment warnings [PR94629]

This change fixes two obvious redundant assignments reported by cppcheck:
trunk.git/gcc/c/c-parser.c:16969:2: style: Variable 'data.clauses' is reassigned a value before the old one has been used. [redundantAssignment]
trunk.git/gcc/cp/call.c:5116:9: style: Variable 'arg2' is reassigned a value before the old one has been used. [redundantAssignment]

2020-04-17  Jakub Jelinek  <jakub@redhat.com>

PR other/94629
* c-parser.c (c_parser_oacc_routine): Remove redundant assignment
to data.clauses.

* call.c (build_conditional_expr_1): Remove redundant assignment to
arg2.
gcc/c/ChangeLog
gcc/c/c-parser.c
gcc/cp/ChangeLog
gcc/cp/call.c