[Bug ada/42213] New: GCC chkstk clash with Microsoft version

2009-11-29 Thread p dot obry at wanadoo dot fr
Version: 4.3.4 Status: UNCONFIRMED Severity: normal Priority: P3 Component: ada AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: p dot obry at wanadoo dot fr GCC host triplet: x86_64-pc-mingw32 http://gcc.gnu.org

[Bug other/41400] New: unwind table not properly populated

2009-09-18 Thread p dot obry at wanadoo dot fr
ReportedBy: p dot obry at wanadoo dot fr GCC build triplet: i686-pc-mingw32 GCC host triplet: i686-pc-mingw32 GCC target triplet: x86_64-pc-mingw32 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41400

[Bug other/41400] unwind table not properly populated

2009-09-18 Thread p dot obry at wanadoo dot fr
--- Comment #1 from p dot obry at wanadoo dot fr 2009-09-18 15:30 --- Created an attachment (id=18604) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18604action=view) patch as attachment. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41400

[Bug other/41400] unwind table not properly populated

2009-09-18 Thread p dot obry at wanadoo dot fr
--- Comment #2 from p dot obry at wanadoo dot fr 2009-09-18 15:33 --- This patch also apply to GCC 4.4 and GCC 4.5. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41400

[Bug gcov-profile/17040] GCOV not working properly on Windows platforms

2006-11-30 Thread p dot obry at wanadoo dot fr
--- Comment #4 from p dot obry at wanadoo dot fr 2006-11-30 21:38 --- (In reply to comment #3) *** Bug 25560 has been marked as a duplicate of this bug. *** Not a duplicate as the patch sent for 25560 does not fix my problem. Tested with GCC 4.1.2. So this still needs to be fixed

[Bug ada/20515] stdcall imports are not handled correctly

2005-06-27 Thread p dot obry at wanadoo dot fr
--- Additional Comments From p dot obry at wanadoo dot fr 2005-06-27 18:50 --- Danny, (In reply to comment #10) The patch that was committed to fix this is wrong. #ifdef TARGET_DLLIMPORT_DECL_ATTRIBUTES is always true. It is defined to 0 for non-dll targets in defaults.h. I

[Bug ada/20515] stdcall imports are not handled correctly

2005-04-06 Thread p dot obry at wanadoo dot fr
--- Additional Comments From p dot obry at wanadoo dot fr 2005-04-06 18:14 --- (In reply to comment #5) Ok, the documentation is missing the part where Stdcall is equivalent to C on UNIX. This is a feature implemented some time ago. Will fix the doc. So, what about the proposal on #4

[Bug ada/20515] stdcall imports are not handled correctly

2005-03-19 Thread p dot obry at wanadoo dot fr
--- Additional Comments From p dot obry at wanadoo dot fr 2005-03-19 13:08 --- (In reply to comment #2) The IS_TARGET_PE_COFF hack works on 3.4.x bit won't on trunk. Here is a cleaner patch against trunk that replaces the preprocessor tests with runtime tests. I have tested

[Bug ada/20515] stdcall imports are not handled correctly

2005-03-19 Thread p dot obry at wanadoo dot fr
--- Additional Comments From p dot obry at wanadoo dot fr 2005-03-19 14:52 --- I had a closer look. In GCC 3.4.x we have TARGET_IS_PE_COFF. So changing _WIN32 by TARGET_IS_PE_COFF is ok. In GCC 4.x we have: #define TARGET_DLLIMPORT_DECL_ATTRIBUTES 1 So instead of using