[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-10-14 Thread Michael Hope
Confirmed fixed in gcc-linaro-4-4-2010.10-0 ** Changed in: gcc-linaro Status: Fix Committed => Fix Released -- Segmentation fault in cc1plus when compiling witty library https://bugs.launchpad.net/bugs/642347 You received this bug notification because you are a member of Ubuntu Bugs, whic

[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-10-01 Thread Yao Qi
** Branch linked: lp:~yao-codesourcery/gcc-linaro/4.4-fix-647597 ** Changed in: gcc-linaro Status: Confirmed => Fix Committed -- Segmentation fault in cc1plus when compiling witty library https://bugs.launchpad.net/bugs/642347 You received this bug notification because you are a member of

[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-10-01 Thread Yao Qi
** Changed in: gcc-linaro Assignee: (unassigned) => Yao Qi (yao-codesourcery) -- Segmentation fault in cc1plus when compiling witty library https://bugs.launchpad.net/bugs/642347 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- u

[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-09-27 Thread Michael Hope
** Tags added: ice -- Segmentation fault in cc1plus when compiling witty library https://bugs.launchpad.net/bugs/642347 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lis

[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-09-20 Thread Michael Hope
** Changed in: gcc-linaro Status: New => Confirmed ** Changed in: gcc-linaro Importance: Undecided => Medium -- Segmentation fault in cc1plus when compiling witty library https://bugs.launchpad.net/bugs/642347 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-09-20 Thread Matthias Klose
** Also affects: gcc-linaro Importance: Undecided Status: New -- Segmentation fault in cc1plus when compiling witty library https://bugs.launchpad.net/bugs/642347 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs

[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-09-20 Thread Michael Hope
Confirmed in plain gcc-linaro-4.4-2010.09-1: micha...@crucis:~/+junk/bugs$ ~/toolchains/gcc-linaro-4.4-2010.09-1-x86_64-lucid-cbuild3-orion/bin/g++ -g bug1.cc In member function ‘void Base::foo(T*, void (V::*)()) [with T = C, V = C, A = int]’: cc1plus: internal compiler error: Segmentation fau

[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-09-20 Thread Matthias Klose
thanks, and confirmed. works on 4.3, 4,5, current trunk and Debian 4.4, so would like to ask linaro to recheck this one. ** Changed in: gcc-4.4 (Ubuntu) Importance: Undecided => Medium ** Changed in: gcc-4.4 (Ubuntu) Status: Incomplete => Triaged ** Also affects: gcc-4.5 (Ubuntu) I

[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-09-20 Thread dmitry
I have this under 10.10 AMD64: g++-4.4 -c foo.cc In member function ‘void Base::foo(T*, void (V::*)()) [with T = C, V = C, A = int]’: cc1plus: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See for instructions. -- Segm

[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-09-20 Thread dmitry
Try it without -O2 switch. -- Segmentation fault in cc1plus when compiling witty library https://bugs.launchpad.net/bugs/642347 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com htt

[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-09-20 Thread Matthias Klose
thanks for the reduced test case, but I am unable to repruduce this, with or without optimization options. g++-4.4 -c -O2 -g foo.cc succeeds. ** Changed in: gcc-4.4 (Ubuntu) Status: New => Incomplete -- Segmentation fault in cc1plus when compiling witty library https://bugs.launchpad

[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-09-18 Thread dmitry
Further pinpointed to a __PRETTY_FUNCTION__ being a source of the problem for the above shown template construct. -- Segmentation fault in cc1plus when compiling witty library https://bugs.launchpad.net/bugs/642347 You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 642347] Re: Segmentation fault in cc1plus when compiling witty library

2010-09-18 Thread dmitry
Isolated test case (fails to compile on the assert statement): #include template struct Base { template void foo(T* target, void (V::*method)()) { assert(dynamic_cast(target)); } }; struct C { void foo() {} }; int main() { C c; Base().foo(&c, &C::foo); ret