From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id D52C73857C69; Sun, 3 Jan 2021 21:50:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D52C73857C69 From: "slyfox at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/98499] [11 Regression] Possibly bad std::string initialization in constructors Date: Sun, 03 Jan 2021 21:50:25 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: slyfox at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2021 21:50:25 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D98499 --- Comment #4 from Sergei Trofimovich --- Managed to shrink example even further. Now fails in `037t.fre1`: ```c++ struct string { char * _M_buf; // local store char _M_local_buf[16]; __attribute__((noinline)) string() : _M_buf(_M_local_buf) {} ~string() { if (_M_buf !=3D _M_local_buf) __builtin_trap(); } string(const string &__str); // no copies }; // main.cc __attribute__((noinline)) static string dir_name() { return string(); } class Importer { string base_path; public: __attribute__((noinline)) Importer() : base_path (dir_name()) {} }; int main() { Importer imp; } ``` ``` $ g++-11.0.0 -O2 -std=3Dc++11 main.cc -o a && ./a Illegal instruction (core dumped) ./a $ g++-11.0.0 --param=3Dmodref-max-depth=3D0 -O2 -std=3Dc++11 main.cc -o a &= & ./a ``` It feels like c++'s return-value-optimization somehow misses the PTA.=