[pushed] c++: Fix deferred noexcept on constructor [PR93901].

2020-05-14 Thread Jason Merrill via Gcc-patches
My change in r10-4394 to only update clones when we actually instantiate a deferred noexcept-spec broke this because deferred parsing updates the primary function but not the clones. For GCC 10 I just reverted that change; this patch adjusts maybe_instantiate_noexcept to update only the clone pass

[pushed] c++: Fix deferred noexcept on constructor [PR93901].

2020-03-10 Thread Jason Merrill via Gcc-patches
My change in r10-4394 to only update clones when we actually instantiate a deferred noexcept-spec broke this because deferred parsing updates the primary function but not the clones. For GCC 10, let's just revert it. Tested x86_64-pc-linux-gnu, applying to trunk. gcc/cp/ChangeLog 2020-03-10 Jas