[Bug c++/77502] -Wzero-as-null-pointer-constant : misleading/imprecise messages

2019-10-08 Thread e...@sf-mail.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77502 Rolf Eike Beer changed: What|Removed |Added CC||e...@sf-mail.de --- Comment #4 from

[Bug driver/70936] Hard-coded C++ header paths and relocation problem

2017-05-03 Thread e...@sf-mail.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70936 --- Comment #14 from Rolf Eike Beer <e...@sf-mail.de> --- Still broken in 7.1.0.

[Bug driver/70936] Hard-coded C++ header paths and relocation problem

2016-12-22 Thread e...@sf-mail.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70936 --- Comment #13 from Rolf Eike Beer <e...@sf-mail.de> --- 6.2.0 also broken, 5.4.0 is fine.

[Bug driver/70936] Hard-coded C++ header paths and relocation problem on Windows

2016-12-16 Thread e...@sf-mail.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70936 --- Comment #11 from Rolf Eike Beer <e...@sf-mail.de> --- I configured with: ../gcc-host/configure --target=i686-unknown-linux-gnu --host=x86_64-pc-linux- gnu --build=x86_64-pc-linux-gnu --program-prefix=i686-unknown-linux-gnu- -- with-s

[Bug driver/70936] Hard-coded C++ header paths and relocation problem on Windows

2016-12-13 Thread e...@sf-mail.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70936 Rolf Eike Beer <e...@sf-mail.de> changed: What|Removed |Added CC| |e...@sf-m

[Bug c++/43734] cerr related segmentation fault

2013-11-29 Thread e...@sf-mail.de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43734 --- Comment #13 from Rolf Eike Beer e...@sf-mail.de --- Ok, it looks like this is no gcc problem. If I rebuild gcc with binutils 2.22 it works. If I compile gcc with binutils 2.23.[12] it fails. Having a gcc built with binutils 2.23.2 and building

[Bug c++/43734] cerr related segmentation fault

2013-11-28 Thread e...@sf-mail.de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43734 --- Comment #11 from Rolf Eike Beer e...@sf-mail.de --- I don't have the least idea what's going on here, and cannot debug issues on Linux/SPARC since I don't have access to that platform. Sadly I can't give you direct access to my machine

[Bug c++/43734] cerr related segmentation fault

2013-11-27 Thread e...@sf-mail.de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43734 Rolf Eike Beer e...@sf-mail.de changed: What|Removed |Added CC||e...@sf-mail.de

[Bug c++/43734] cerr related segmentation fault

2013-11-27 Thread e...@sf-mail.de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43734 --- Comment #9 from Rolf Eike Beer e...@sf-mail.de --- Created attachment 31314 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=31314action=edit ii file of testcase

[Bug c++/50230] [4.5 regression] compiling CMake on PA-RISC fails due to unreachable symbols

2011-09-05 Thread e...@sf-mail.de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50230 --- Comment #2 from Rolf Eike Beer e...@sf-mail.de 2011-09-05 15:48:10 UTC --- It is possible your tools are miscompiled. For example, some fixes to reorg were backported in May. These caused GCC to be miscompiled and produce incorrect code

[Bug target/46915] Wrong code is generated for conditional branch followed by zero length asm

2010-12-18 Thread e...@sf-mail.de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46915 --- Comment #12 from Rolf Eike Beer e...@sf-mail.de 2010-12-18 22:27:40 UTC --- Any chance this gets backported?

[Bug c/46936] New: turn __attribute__ ((nonnull (x))) into assert in debug mode

2010-12-14 Thread e...@sf-mail.de
Component: c AssignedTo: unassig...@gcc.gnu.org ReportedBy: e...@sf-mail.de I have this simple function to free a linked list: void freeips(struct ips *p) { while (p) { struct ips *thisip = p; p = thisip-next; free(thisip); } } I accidentially