diff options
author | Jakub Jelinek <jakub@gcc.gnu.org> | 2015-09-03 19:28:59 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2015-09-03 19:28:59 +0200 |
commit | 8b652e654f2c6dc878e9dc34caf4e99e79788dfe (patch) | |
tree | 7d2c931278485e14fa8703335745efef629f84a5 /gcc | |
parent | 3b0c6e3ef99bd60469603879e34156d904c307d5 (diff) | |
download | gcc-8b652e654f2c6dc878e9dc34caf4e99e79788dfe.zip gcc-8b652e654f2c6dc878e9dc34caf4e99e79788dfe.tar.gz gcc-8b652e654f2c6dc878e9dc34caf4e99e79788dfe.tar.bz2 |
Remove path prefixes from filenames.
From-SVN: r227462
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index 658b62b..ae1081b 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,9 +1,9 @@ 2015-09-03 Martin Sebor <msebor@redhat.com> PR c/66516 - * c/c-typeck.c (convert_arguments, parser_build_unary_op) - (build_conditional_expr, c_cast_expr, convert_for_assignment) - (build_binary_op, _objc_common_truthvalue_conversion): Call + * c-typeck.c (convert_arguments, parser_build_unary_op, + build_conditional_expr, c_cast_expr, convert_for_assignment, + build_binary_op, _objc_common_truthvalue_conversion): Call reject_gcc_builtin. (c_decl_implicit): Define. diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 41c5658..f818507 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,13 +1,13 @@ 2015-09-03 Martin Sebor <msebor@redhat.com> PR c/66516 - * cp/cp-tree.h (mark_rvalue_use, decay_conversion): Add new + * cp-tree.h (mark_rvalue_use, decay_conversion): Add new argument(s). - * cp/expr.c (mark_rvalue_use): Use new argument. - * cp/call.c (build_addr_func): Call decay_conversion with new + * expr.c (mark_rvalue_use): Use new argument. + * call.c (build_addr_func): Call decay_conversion with new argument. - * cp/pt.c (convert_template_argument): Call reject_gcc_builtin. - * cp/typeck.c (decay_conversion): Use new argument. + * pt.c (convert_template_argument): Call reject_gcc_builtin. + * typeck.c (decay_conversion): Use new argument. (c_decl_implicit): Define. 2015-09-02 Balaji V. Iyer <balaji.v.iyer@intel.com> |