[Bug other/81458] Misdetection of gcc_cv_as_cfi_advance_working

2017-07-17 Thread joerg at netbsd dot org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81458 --- Comment #2 from Joerg Sonnenberger --- More testing seems to point to binutils 2.28 as fixing objcopy. It is still not clear whether there is any reason to preferring it though, especially as many systems ship older versions.

[Bug other/81458] Misdetection of gcc_cv_as_cfi_advance_working

2017-07-16 Thread joerg at netbsd dot org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81458 --- Comment #1 from Joerg Sonnenberger --- Created attachment 41769 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=41769=edit Using readelf in configure.ac (against 5.4.0)

[Bug other/81458] New: Misdetection of gcc_cv_as_cfi_advance_working

2017-07-16 Thread joerg at netbsd dot org
: other Assignee: unassigned at gcc dot gnu.org Reporter: joerg at netbsd dot org Target Milestone: --- Created attachment 41768 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=41768=edit Problematic object file The gcc_cv_as_cfi_advance_working test case can misdet

[Bug other/81457] New: Inconsistent section flags for section attribute

2017-07-16 Thread joerg at netbsd dot org
: other Assignee: unassigned at gcc dot gnu.org Reporter: joerg at netbsd dot org Target Milestone: --- Created attachment 41767 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=41767=edit Potential fix, relative to GCC 5.4.0. Assemble the following input for any

[Bug preprocessor/47047] Support for path translation in __FILE__

2013-04-08 Thread joerg at netbsd dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47047 --- Comment #6 from Joerg Sonnenberger joerg at netbsd dot org 2013-04-08 08:11:45 UTC --- Nothing has changed. It likely needs updates to apply to GCC 4.8+, but the general functionality is still desirable, IMO.

[Bug c++/55368] New: Comma before semicolon in struct definition is not rejected

2012-11-17 Thread joerg at netbsd dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55368 Bug #: 55368 Summary: Comma before semicolon in struct definition is not rejected Classification: Unclassified Product: gcc Version: 4.7.2 Status:

[Bug c++/55361] New: Access control in templates only happens when instantiating a method

2012-11-16 Thread joerg at netbsd dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55361 Bug #: 55361 Summary: Access control in templates only happens when instantiating a method Classification: Unclassified Product: gcc Version: 4.7.2 Status:

[Bug preprocessor/47047] Support for path translation in __FILE__

2011-02-05 Thread joerg at netbsd dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47047 --- Comment #4 from Joerg Sonnenberger joerg at netbsd dot org 2011-02-06 04:10:12 UTC --- (In reply to comment #3) Please fill in the form at http://gcc.gnu.org/wiki/CopyrightAssignment and send it to fsf-reco...@gnu.org

[Bug preprocessor/47047] New: Support for path translation in __FILE__

2010-12-22 Thread joerg at netbsd dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47047 Summary: Support for path translation in __FILE__ Product: gcc Version: 4.1.3 Status: UNCONFIRMED Severity: enhancement Priority: P3 Component: preprocessor

[Bug middle-end/29215] New: Unnecessary use of stack space

2006-09-25 Thread joerg at netbsd dot org
: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: joerg at netbsd dot org GCC host triplet: i386--netbsdelf http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29215

[Bug middle-end/29215] Unnecessary use of stack space

2006-09-25 Thread joerg at netbsd dot org
--- Comment #1 from joerg at netbsd dot org 2006-09-25 14:46 --- Created an attachment (id=12322) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12322action=view) C source to compile with -O2 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29215

[Bug middle-end/29215] Unnecessary use of stack space

2006-09-25 Thread joerg at netbsd dot org
--- Comment #2 from joerg at netbsd dot org 2006-09-25 14:46 --- Created an attachment (id=12323) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12323action=view) Assembly output -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29215

[Bug middle-end/29215] Unnecessary use of stack space

2006-09-25 Thread joerg at netbsd dot org
--- Comment #5 from joerg at netbsd dot org 2006-09-25 16:48 --- It is not violating aliasing rules (since a character string can alias with everything, 6.5p7) nor does it affect this problem. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29215

[Bug middle-end/29215] Unnecessary use of stack space

2006-09-25 Thread joerg at netbsd dot org
--- Comment #8 from joerg at netbsd dot org 2006-09-25 16:57 --- Second this is just a memcpy issue, short testcase: #include string.h char buf[21]; int main(void) { int a = 0x; memcpy(buf, a, 4); This creates two movl, one for a and one to buf. When