1 /* PR tree-optimization/98499. */
3 /* { dg-options "-O2" } */
6 // pointer to local store
11 __attribute__((noinline)) string() : _M_buf(_M_local_buf) {}
14 if (_M_buf != _M_local_buf)
18 string(const string &__str); // no copies
21 __attribute__((noinline)) static string dir_name() { return string(); }
26 __attribute__((noinline)) Importer() : base_path (dir_name()) {}