[Ping][Patch, trivial] PR 56653: Fix warning when verifying checksums from MD5SUMS file in tarballs

2014-01-28 Thread Dmitry Gorbachev
-- Forwarded message -- From: Dmitry Gorbachev Date: Sat, 28 Dec 2013 02:33:18 +0400 Subject: [Patch, trivial] PR 56653: Fix warning when verifying checksums from MD5SUMS file in tarballs To: gcc-patches@gcc.gnu.org This patch is to fix `md5sum: WARNING: 1 line is improperly

[Patch, trivial] PR 56653: Fix warning when verifying checksums from MD5SUMS file in tarballs

2013-12-27 Thread Dmitry Gorbachev
This patch is to fix `md5sum: WARNING: 1 line is improperly formatted' thing. 2013-12-28 Dmitry Gorbachev PR 56653 * gcc_release: Add an extra `#' character to the comment header of MD5SUMS. *** maintainer-scripts/gcc_release --- maintainer-scripts/g

[PATCH] PR 54789: Fix driver error when GCC_COMPARE_DEBUG is defined

2012-10-04 Thread Dmitry Gorbachev
This patch simplifies process_command a bit by using save_switch and sets the "known" switch field to "true". gcc/ChangeLog: 2012-10-05 Dmitry Gorbachev PR driver/54789 * gcc.c (process_command): Use save_switch for synthesized -fcompare-debu

Re: Prevent inliner from removing aliases of used comdats

2011-09-14 Thread Dmitry Gorbachev
Would a testcase from PR50226 suffice?

[PATCH] Fix error: 'previous' may be used uninitialized in this function

2011-05-15 Thread Dmitry Gorbachev
2011-05-15 Dmitry Gorbachev * gengtype-state.c (read_state_param_structs): Initialize "previous". --- gcc/gengtype-state.c +++ gcc/gengtype-state.c @@ -2137,7 +2137,7 @@ read_state_param_structs (type_p *param_structs) int nbparamstructs = 0; int countparamstructs = 0;

Re: Trivial patch to fix build with --enable-build-with-cxx

2011-05-02 Thread Dmitry Gorbachev
x27; to pointer type 'tree' [-Werror=conversion-null] 2011-05-02 Dmitry Gorbachev * parser.c (cp_parser_init_declarator): Replace false by NULL. --- gcc/cp/parser.c +++ gcc/cp/parser.c @@ -14609,7 +14609,7 @@ if (pushed_scope) { pop_scope (pushed_

Trivial patch to fix build with --enable-build-with-cxx

2011-05-02 Thread Dmitry Gorbachev
../../gcc-4.7/gcc/tree-inline.c: In function 'tree_node* maybe_inline_call_in_expr(tree)': ../../gcc-4.7/gcc/tree-inline.c:5229:40: error: converting 'false' to pointer type 'void (*)(tree)' [-Werror=conversion-null] 2011-05-02 Dmitry Gorbac