[Bug c++/34286] New: Segmentation fault in exit when loading oracle client in a dynamically loaded library

2007-11-29 Thread dvt at isoft dot fr
: 4.2.1 Status: UNCONFIRMED Severity: critical Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dvt at isoft dot fr GCC build triplet: i686-pc-linux-gnu GCC host triplet: i686-pc-linux-gnu GCC target triplet

[Bug c++/34293] New: Hang because of extreme inlining

2007-11-29 Thread dvt at isoft dot fr
: 4.2.1 Status: UNCONFIRMED Severity: critical Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dvt at isoft dot fr GCC build triplet: i686-pc-linux-gnu GCC host triplet: i686-pc-linux-gnu GCC target triplet

[Bug c++/34294] New: Strange transmission of symbols between dynamically opened libs

2007-11-29 Thread dvt at isoft dot fr
Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dvt at isoft dot fr GCC build triplet: i686-pc-linux-gnu GCC host triplet: i686-pc-linux-gnu GCC target triplet: i686-pc-linux-gnu

[Bug c++/34295] New: Bad optimization in an inlined method

2007-11-29 Thread dvt at isoft dot fr
++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dvt at isoft dot fr GCC build triplet: i686-pc-linux-gnu GCC host triplet: i686-pc-linux-gnu GCC target triplet: i686-pc-linux-gnu http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34295

[Bug c++/34293] Hang because of extreme inlining

2007-11-29 Thread dvt at isoft dot fr
--- Comment #2 from dvt at isoft dot fr 2007-11-29 16:26 --- (In reply to comment #1) Testcase? No : As I said, this is a very big method. It is in a template and includes other inlined template and non-template methods : it contains only inlined functions. Thus, it is very difficult

[Bug c++/34295] Bad optimization in an inlined method

2007-11-29 Thread dvt at isoft dot fr
--- Comment #2 from dvt at isoft dot fr 2007-11-29 17:09 --- (In reply to comment #1) You are violating C aliasing rules. Use memcpy (as you did) or a union to guard the type punning. *** This bug has been marked as a duplicate of 21920 *** Are-you sure? Were is the rule

[Bug c++/34294] Strange transmission of symbols between dynamically opened libs

2007-11-29 Thread dvt at isoft dot fr
--- Comment #2 from dvt at isoft dot fr 2007-11-29 18:16 --- (In reply to comment #1) Testcase? It might be because you are using global bindings for the shared libraries. Note this really cannot be a GCC bug as GCC does not do dynamic loading. MSDEV, IBM XLC, have you tried GCC