This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
This seems to break the gmp testsuite which now complains about non-freed memory. In fact, for a reduced t-assign.cc
void check_mpq (void) { // operator=(const mpq_class &) { mpq_class a(1, 2), b; b = a; ASSERT_ALWAYS(b == 0.5); } }
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |