Re: [C++ PATCH] Fix up DW_AT_explicit handling (PR debug/56563)

2014-02-19 Thread Jason Merrill
OK. Jason

[C++ PATCH] Fix up DW_AT_explicit handling (PR debug/56563)

2014-02-19 Thread Jakub Jelinek
Hi! Say on struct S { explicit S () {}; } s; struct T { explicit T (int x) {}; } t(2); struct U { explicit operator int () { return 6; } } u; G++ mysteriously emits DW_AT_explicit only on T::T(int) and not on S::S() nor U::operator int(). Fixed thusly, ok for trunk? 2014-02-19 Jakub Jelinek