[Bug c++/58822] Segfault when calling make_shared

2016-04-13 Thread michi at triodia dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #30 from Michi Henning --- (In reply to Jonathan Wakely from comment #29) > > make_shared(args) doesn't always do the same thing as shared_ptr(new > > T(args)) > > It does do effectively the same thing. The difference in behaviour is

[Bug c++/58822] Segfault when calling make_shared

2016-04-12 Thread michi at triodia dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #27 from Michi Henning --- My apologies for my incredibly late reply. (I just stumbled across this issue again.) And my thanks to you for taking the time to analyse this! I think your analysis is right. 3.8.5/3: "- the pointer is im

[Bug libstdc++/70493] std::setlocale("") throws exception

2016-04-01 Thread michi at triodia dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70493 --- Comment #1 from Michi Henning --- Ah, on reading http://pubs.opengroup.org/onlinepubs/9699919799/ section 8.2, it appears that it's OK to throw in this case. It would be nice to have a better diagnostic in the exception though. It could show

[Bug libstdc++/70493] New: std::setlocale("") throws exception

2016-04-01 Thread michi at triodia dot com
t: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: michi at triodia dot com Target Milestone: --- #include int main(int, char**) { std::locale(""); } Compile with --std=c++11 and run with $ LC_ALL= LC_MONETARY=bad ./a.out This aborts with a std::r

[Bug c++/58822] Segfault when calling make_shared

2013-11-11 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #25 from Michi Henning --- (In reply to Jonathan Wakely from comment #24) > (In reply to Michi Henning from comment #20) > > I'm pretty sure that I'm not using anything in shared_ptr that's outside the > > standard, and the standard wa

[Bug c++/58822] Segfault when calling make_shared

2013-10-23 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #20 from Michi Henning --- (In reply to Paolo Carlini from comment #19) > I'm pretty sure it isn't. It's easy to see why: in the testcase are you > using *all* the facilities provided by std::shared_ptr as standardized? I > don't think

[Bug c++/58822] Segfault when calling make_shared

2013-10-23 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #18 from Michi Henning --- Hmmm... That might be difficult because, as soon as I don't use make_shared, the problem goes away. (With the virtual inheritance in place but a call to shared_ptr(args), as in the commented-out line in Unity

[Bug libstdc++/58822] Segfault when calling make_shared

2013-10-23 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #15 from Michi Henning --- OK, glad you are seeing it too. I initially opened this as a library issue because I thought make_shared is to blame. But maybe not. Should I reassign to C++?

[Bug libstdc++/58822] Segfault when calling make_shared

2013-10-22 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #13 from Michi Henning --- Just had a collegue of mine reproduce the problem with the attached archive on a machine that was installed from the Saucy .iso image, so I think this bug is real. It's not just something on my machines.

[Bug libstdc++/58822] Segfault when calling make_shared

2013-10-22 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #12 from Michi Henning --- Output from gcc -v: Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ub

[Bug libstdc++/58822] Segfault when calling make_shared

2013-10-22 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 Michi Henning changed: What|Removed |Added Attachment #31066|0 |1 is obsolete|

[Bug libstdc++/58822] Segfault when calling make_shared

2013-10-22 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #10 from Michi Henning --- Created attachment 31078 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31078&action=edit main.ii illustrating the segfault

[Bug libstdc++/58822] Segfault when calling make_shared

2013-10-22 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 Michi Henning changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|INVALID

[Bug libstdc++/58822] Segfault when calling make_shared

2013-10-22 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 Michi Henning changed: What|Removed |Added Status|WAITING |RESOLVED Resolution|---

[Bug libstdc++/58822] Segfault when calling make_shared

2013-10-22 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #6 from Michi Henning --- My apologies, I'm a newbie in the gcc bug world. Will try to mend my ways! Cheers, Michi. PS: I'll work on this more tomorrow, but I'm pretty sure that gcc is not to blame. There is some stale header kickin

[Bug libstdc++/58822] Segfault when calling make_shared

2013-10-22 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #4 from Michi Henning --- Hmmm... Trying this on a different machine, it works perfectly. It looks like there is something screwed up with the gcc installation on the machine where I'm seeing this. So, please hold off putting any work

[Bug libstdc++/58822] Segfault when calling make_shared

2013-10-21 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #3 from Michi Henning --- To build and run the code in the tarball: cd exception-fix/build cmake .. make make test The problem is caused by the call to make_shared on line 33 of UnityExceptions.h. If you comment out the initializer

[Bug libstdc++/58822] Segfault when calling make_shared

2013-10-21 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58822 --- Comment #2 from Michi Henning --- Created attachment 31066 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31066&action=edit Stand-alone test case

[Bug libstdc++/58822] New: Segfault when calling make_shared

2013-10-21 Thread michi at triodia dot com
++ Assignee: unassigned at gcc dot gnu.org Reporter: michi at triodia dot com I have a constructor calling make_shared to pass a shared_ptr to a base class. InvalidArgumentException::InvalidArgumentException(string const& reason) //: Exception(shared_ptr(new ExceptionImplBase(

[Bug libstdc++/57975] Core dump caused by linking with -lpthread

2013-07-24 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57975 --- Comment #6 from Michi Henning --- How embarrassing. The joys of default constructors :-( Stupid mistake of mine.

[Bug c++/57975] Core dump caused by linking with -lpthread

2013-07-24 Thread michi at triodia dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57975 Michi Henning changed: What|Removed |Added Version|unknown |4.7.3 --- Comment #1 from Michi Henning

[Bug c++/57975] New: Core dump caused by linking with -lpthread

2013-07-24 Thread michi at triodia dot com
++ Assignee: unassigned at gcc dot gnu.org Reporter: michi at triodia dot com The following code works as expected when compiling with c++ -g --std=c++11 test.cpp The program hangs until it is interrupted. When I compile the same code with c++ -g --std=c++11 test.cpp