From: rguenth Date: Thu, 31 Mar 2011 10:02:00 +0000 (+0000) Subject: 2011-03-31 Richard Guenther X-Git-Url: http://git.sourceforge.jp/view?a=commitdiff_plain;h=d45127a1763c48a51c76f833c4bdd2f334d2a251;p=pf3gnuchains%2Fgcc-fork.git 2011-03-31 Richard Guenther PR lto/48246 * lto.c (lto_wpa_write_files): Disable assert for non-empty partitions when checking is not enabled. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171775 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index c07fa061743..3ea90dadd1d 100644 --- a/gcc/lto/ChangeLog +++ b/gcc/lto/ChangeLog @@ -1,3 +1,9 @@ +2011-03-31 Richard Guenther + + PR lto/48246 + * lto.c (lto_wpa_write_files): Disable assert for non-empty + partitions when checking is not enabled. + 2011-03-25 Kai Tietz * lto.c (lto_resolution_read): Use filename_cmp instead diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c index 099243bfda4..6ab75357321 100644 --- a/gcc/lto/lto.c +++ b/gcc/lto/lto.c @@ -1514,8 +1514,8 @@ lto_wpa_write_files (void) fprintf (cgraph_dump_file, "varpool nodes:"); dump_varpool_node_set (cgraph_dump_file, vset); } - gcc_assert (cgraph_node_set_nonempty_p (set) - || varpool_node_set_nonempty_p (vset) || !i); + gcc_checking_assert (cgraph_node_set_nonempty_p (set) + || varpool_node_set_nonempty_p (vset) || !i); lto_set_current_out_file (file);