From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 106565 invoked by alias); 22 Sep 2016 21:26:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 106431 invoked by uid 48); 22 Sep 2016 21:26:34 -0000 From: "bernd.edlinger at hotmail dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77697] New: suspicious code in tree-ssa-forwprop.c Date: Thu, 22 Sep 2016 21:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: bernd.edlinger at hotmail dot de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01839.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77697 Bug ID: 77697 Summary: suspicious code in tree-ssa-forwprop.c Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: bernd.edlinger at hotmail dot de Target Milestone: --- Hi, was playing with a new experimental version of my -Wint-in-bool-context warning. It catched this code in tree-ssa-forwprop.c ../../gcc-trunk/gcc/tree-ssa-forwprop.c: In function 'void defcodefor_name(tree, tree_code*, tree_node**, tree_node**)': ../../gcc-trunk/gcc/tree-ssa-forwprop.c:1477:8: error: using integer consta= nts in boolean context [-Werror=3Dint-in-bool-context] || GIMPLE_BINARY_RHS ^~~~~~~~~~~~~~~~~ ../../gcc-trunk/gcc/tree-ssa-forwprop.c:1478:8: error: using integer consta= nts in boolean context [-Werror=3Dint-in-bool-context] || GIMPLE_UNARY_RHS ^~~~~~~~~~~~~~~~ ../../gcc-trunk/gcc/tree-ssa-forwprop.c:1479:8: error: using integer consta= nts in boolean context [-Werror=3Dint-in-bool-context] || GIMPLE_SINGLE_RHS) ^~~~~~~~~~~~~~~~~ else if (grhs_class =3D=3D GIMPLE_TERNARY_RHS || GIMPLE_BINARY_RHS || GIMPLE_UNARY_RHS || GIMPLE_SINGLE_RHS) extract_ops_from_tree (name, &code1, &arg11, &arg21, &arg31); enum gimple_rhs_class { GIMPLE_INVALID_RHS, /* The expression cannot be used on the RHS. */ GIMPLE_TERNARY_RHS, /* The expression is a ternary operation. */ GIMPLE_BINARY_RHS, /* The expression is a binary operation. */ GIMPLE_UNARY_RHS, /* The expression is a unary operation. */ GIMPLE_SINGLE_RHS /* The expression is a single object (an SSA name, a _DECL, a _REF, etc. */ }; I think what was really meant is: else if (grhs_class =3D=3D GIMPLE_TERNARY_RHS || grhs_class =3D=3D GIMPLE_BINARY_RHS || grhs_class =3D=3D GIMPLE_UNARY_RHS || grhs_class =3D=3D GIMPLE_SINGLE_RHS) extract_ops_from_tree (name, &code1, &arg11, &arg21, &arg31); >>From gcc-bugs-return-538225-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 22 21:28:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 114869 invoked by alias); 22 Sep 2016 21:28:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 114615 invoked by uid 55); 22 Sep 2016 21:28:40 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77676] powerpc64 and powerpc64le stage2 bootstrap fail Date: Thu, 22 Sep 2016 21:28:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01840.txt.bz2 Content-length: 1665 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77676 --- Comment #15 from Martin Sebor --- Author: msebor Date: Thu Sep 22 21:28:07 2016 New Revision: 240383 URL: https://gcc.gnu.org/viewcvs?rev=3D240383&root=3Dgcc&view=3Drev Log: PR target/77676 - powerpc64 and powerpc64le stage2 bootstrap fail gcc/testsuite/ChangeLog: PR target/77676 * gcc.dg/tree-ssa/builtin-sprintf-1.c: Define and use wint_t. * gcc.dg/tree-ssa/builtin-sprintf-2.c: Fix typo. * gcc.dg/tree-ssa/builtin-sprintf-3.c: New test. * gcc.dg/tree-ssa/builtin-sprintf-warn-5.c: New test. gcc/ChangeLog: PR target/77676 * gimple-ssa-sprintf.c (target_int_min, target_int_max): Use HOST_BITS_PER_WIDE_INT, make a static local variable auto. (target_int_min): Correct computation. (format_integer): Use long long as the argument for the ll length modifier. (format_floating): Use target_int_max(). (get_string_length): Same. (format_string): Avoid setting the bounded flag for strings of unknown length. (try_substitute_return_value): Avoid setting range info when the result isn't bounded. * varasm.c (assemble_name): Increase buffer size. Added: trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-3.c trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-5.c Modified: trunk/gcc/ChangeLog trunk/gcc/gimple-ssa-sprintf.c trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-2.c trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-1.c trunk/gcc/varasm.c >>From gcc-bugs-return-538226-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 22 21:32:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 47025 invoked by alias); 22 Sep 2016 21:32:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 46750 invoked by uid 48); 22 Sep 2016 21:32:34 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77676] powerpc64 and powerpc64le stage2 bootstrap fail Date: Thu, 22 Sep 2016 21:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01841.txt.bz2 Content-length: 687 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77676 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Component|target |bootstrap --- Comment #16 from Martin Sebor --- The patch committed in r240383 should restore the ILP32 bootstrap and fix m= ost (but not all) of the failures in the builtin-sprintf*.c tests there as well= .=20 The patch does not yet re-enable the sprintf return value optimization. I'= ll re-enable it after I've done some testing. Until then I'll leave this bug open. >>From gcc-bugs-return-538227-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 22 21:49:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 92651 invoked by alias); 22 Sep 2016 21:49:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 92470 invoked by uid 48); 22 Sep 2016 21:49:29 -0000 From: "pthaugen at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/77698] New: Loop not considered hot after profiling Date: Thu, 22 Sep 2016 21:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pthaugen at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcchost cf_gcctarget cf_gccbuild Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01842.txt.bz2 Content-length: 1720 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77698 Bug ID: 77698 Summary: Loop not considered hot after profiling Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: gcov-profile Assignee: unassigned at gcc dot gnu.org Reporter: pthaugen at gcc dot gnu.org CC: dje at gcc dot gnu.org, hubicka at gcc dot gnu.org, wschmidt at gcc dot gnu.org Target Milestone: --- Host: powerpc64*-unknown-linux-gnu Target: powerpc64*-unknown-linux-gnu Build: powerpc64*-unknown-linux-gnu // gcc -O3 -o run -fno-tree-vectorize -funroll-loops --param max-unroll-tim= es=3D4 -fno-inline run.c // -fprofile-generate/-fprofile-use volatile long int j =3D 0; void foo(long int *a, long int *b, long int n) { long int i; for (i =3D 0; i < n; i++) a[j] =3D *b; } long int a, b; int main() { a =3D 1; b =3D 2; foo(&a, &b, 1000000); return (a+b); } When I built the above testcase with profile info and unrolling I noticed t= he loop was not getting aligned. The label is getting skipped in final.c:compute_alignments() because optimize_bb_for_size_p() is returning true. I poked a little further and saw that predict.c:maybe_hot_count_p() is returning false here: return (count >=3D get_hot_bb_threshold ()); because 'count'=3D250000 and get_hot_bb_threshold() returns 1000000. The bb= count is correct for unrolling the loop by 4. The value returned by get_hot_bb_threshold() seems incorrect, shouldn't need to be the max count = to be considered hot (with unrolling it will never have that value). >>From gcc-bugs-return-538228-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 22 21:52:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 96423 invoked by alias); 22 Sep 2016 21:52:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 96277 invoked by uid 48); 22 Sep 2016 21:52:22 -0000 From: "bernd.edlinger at hotmail dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug preprocessor/77699] New: suspicious code in get_next_line Date: Thu, 22 Sep 2016 21:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: preprocessor X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: bernd.edlinger at hotmail dot de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01843.txt.bz2 Content-length: 918 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77699 Bug ID: 77699 Summary: suspicious code in get_next_line Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: preprocessor Assignee: unassigned at gcc dot gnu.org Reporter: bernd.edlinger at hotmail dot de Target Milestone: --- Hi, this is also suspicious by -Wint-in-bool-context warning: ../../gcc-trunk/gcc/input.c: In function 'bool get_next_line(fcache*, char*= *, ssize_t*)': ../../gcc-trunk/gcc/input.c:537:13: error: using integer constants in boole= an context [-Werror=3Dint-in-bool-context] return -1; ^ code here does: if (ferror (c->fp)) return -1; but -1 is converted to bool, the return type of get_next_line, so caller will assume valid data, while we really had I/O error. >>From gcc-bugs-return-538229-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 22 22:03:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 6832 invoked by alias); 22 Sep 2016 22:03:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 6626 invoked by uid 48); 22 Sep 2016 22:03:00 -0000 From: "bernd.edlinger at hotmail dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77700] New: suspicios code in cp/parser.c Date: Thu, 22 Sep 2016 22:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: bernd.edlinger at hotmail dot de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01844.txt.bz2 Content-length: 1519 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77700 Bug ID: 77700 Summary: suspicios code in cp/parser.c Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: bernd.edlinger at hotmail dot de Target Milestone: --- Hi, this is the next one, the line info is off by one, but it is nevertheless a real bug: ../../gcc-trunk/gcc/cp/parser.c: In function 'tree_node* cp_parser_base_specifier(cp_parser*)': ../../gcc-trunk/gcc/cp/parser.c:23137:35: error: using integer constants in boolean context [-Werror=3Dint-in-bool-context] /*is_declaration=3D*/true); cp/parser.c cp_parser_nested_name_specifier_opt (parser, /*typename_keyword_p=3D*/true, /*check_dependency_p=3D*/true, typename_type, /*is_declaration=3D*/true); static tree cp_parser_nested_name_specifier_opt (cp_parser *, bool, bool, bool, bool); cp/cp-tree.h: enum tag_types { none_type =3D 0, /* Not a tag type. */ record_type, /* "struct" types. */ class_type, /* "class" types. */ union_type, /* "union" types. */ enum_type, /* "enum" types. */ typename_type, /* "typename" types. */ scope_type /* namespace or tagged type name followed by :: */ }; >>From gcc-bugs-return-538230-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 22 22:10:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 16685 invoked by alias); 22 Sep 2016 22:10:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 16516 invoked by uid 48); 22 Sep 2016 22:10:16 -0000 From: "seurer at linux dot vnet.ibm.com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77677] [7 Regression] ICE at -O1 and above in both 32-bit and 64-bit modes on x86_64-linux-gnu (internal compiler error: in set_value_range, at tree-vrp.c:361) Date: Thu, 22 Sep 2016 22:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: seurer at linux dot vnet.ibm.com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01845.txt.bz2 Content-length: 2539 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77677 Bill Seurer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |seurer at linux dot vnet.i= bm.com --- Comment #6 from Bill Seurer --- The test case 176.gcc in the spec2000 benchmarks still fails apparently with the same error even after 240352 (this is with 240383) loop.c: At top level: loop.c:6648:1: internal compiler error: in set_value_range, at tree-vrp.c:3= 67 } ^ 0x10bf4f6f set_value_range /home/seurer/gcc/gcc-test/gcc/tree-vrp.c:367 0x10bf9067 vrp_meet_1 /home/seurer/gcc/gcc-test/gcc/tree-vrp.c:8639 0x10bf9067 vrp_meet(value_range*, value_range const*) /home/seurer/gcc/gcc-test/gcc/tree-vrp.c:8716 0x110a14c3 ipcp_vr_lattice::meet_with_1(value_range const*) /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:987 0x110a4c9f ipcp_vr_lattice::meet_with(value_range const*) /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:969 0x110a4c9f propagate_vr_accross_jump_function /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:2077 0x110a4c9f propagate_constants_accross_call /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:2435 0x110abdc7 propagate_constants_topo /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:3329 0x110abdc7 ipcp_propagate_stage /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:3439 0x110acf13 ipcp_driver /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:5246 0x110acf13 execute /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:5342 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See for instructions. specmake: *** [loop.o] Error 1 specmake: *** Waiting for unfinished jobs.... specmake -j20 options 2> options.err | tee options.out COMP: /home/seurer/gcc/install/gcc-test/bin/gcc -c -o options.o=20 -fno-strict-aliasing -m32 -DHOST_WORDS_BIG_ENDIAN -DSPEC_CPU2000_LINUX_PPC3= 2=20=20=20 -O3 -mcpu=3Dpower7 -fpeel-loops -funroll-loops -ffast-math -fvect-cost-= model -mpopcntd -mrecip=3Drsqrt=20=20 LINK: /home/seurer/gcc/install/gcc-test/bin/gcc -m32 -Wl,-q -Wl,-rpath=3D/home/seurer/gcc/install/gcc-test/lib -O3 -mcpu=3Dpower7 -fpe= el-loops -funroll-loops -ffast-math -fvect-cost-model -mpopcntd -mrecip=3Drsqrt = -lm=20 -o options Some files did not appear to be built: cc1 *** Error building 176.gcc >>From gcc-bugs-return-538231-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 22 22:25:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 40148 invoked by alias); 22 Sep 2016 22:25:03 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 39147 invoked by uid 48); 22 Sep 2016 22:24:50 -0000 From: "bernd.edlinger at hotmail dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77701] New: suspicious code in go/go-gcc.cc Date: Thu, 22 Sep 2016 22:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: bernd.edlinger at hotmail dot de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01846.txt.bz2 Content-length: 1961 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77701 Bug ID: 77701 Summary: suspicious code in go/go-gcc.cc Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: go Assignee: ian at airs dot com Reporter: bernd.edlinger at hotmail dot de CC: cmang at google dot com Target Milestone: --- Hi, now here is also a -Wint-in-bool-context warning: ../../gcc-trunk/gcc/go/go-gcc.cc: In constructor 'Gcc_backend::Gcc_backend(= )': ../../gcc-trunk/gcc/go/go-gcc.cc:654:47: error: using integer constants in boolean context [-Werror=3Dint-in-bool-context] tree t =3D this->integer_type(BITS_PER_UNIT, 1)->get_tree(); ^ the column info is off-by one, but I think it is a bug: Btype* Gcc_backend::integer_type(bool is_unsigned, int bits); Gcc_backend::Gcc_backend() { /* We need to define the fetch_and_add functions, since we use them for ++ and --. */ tree t =3D this->integer_type(BITS_PER_UNIT, 1)->get_tree(); tree p =3D build_pointer_type(build_qualified_type(t, TYPE_QUAL_VOLATILE)= ); this->define_builtin(BUILT_IN_SYNC_ADD_AND_FETCH_1, "__sync_fetch_and_add= _1", NULL, build_function_type_list(t, p, t, NULL_TREE), false, false); t =3D this->integer_type(BITS_PER_UNIT * 2, 1)->get_tree(); p =3D build_pointer_type(build_qualified_type(t, TYPE_QUAL_VOLATILE)); this->define_builtin(BUILT_IN_SYNC_ADD_AND_FETCH_2, "__sync_fetch_and_add= _2", NULL, build_function_type_list(t, p, t, NULL_TREE), false, false); parameters seem to be swapped, the warning did only catch the first instance, because the expression was not not folded in the C++FE, but all places look wrong. Maybe its more easy to swap the parameters at the definition? >>From gcc-bugs-return-538232-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 22 22:27:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42566 invoked by alias); 22 Sep 2016 22:27:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 42392 invoked by uid 48); 22 Sep 2016 22:27:26 -0000 From: "kugan at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77677] [7 Regression] ICE at -O1 and above in both 32-bit and 64-bit modes on x86_64-linux-gnu (internal compiler error: in set_value_range, at tree-vrp.c:361) Date: Thu, 22 Sep 2016 22:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kugan at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01847.txt.bz2 Content-length: 2518 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77677 --- Comment #7 from kugan at gcc dot gnu.org --- (In reply to Bill Seurer from comment #6) > The test case 176.gcc in the spec2000 benchmarks still fails apparently w= ith > the same error even after 240352 >=20 > (this is with 240383) >=20 > loop.c: At top level: > loop.c:6648:1: internal compiler error: in set_value_range, at tree-vrp.c= :367 > } > ^ > 0x10bf4f6f set_value_range > /home/seurer/gcc/gcc-test/gcc/tree-vrp.c:367 > 0x10bf9067 vrp_meet_1 > /home/seurer/gcc/gcc-test/gcc/tree-vrp.c:8639 > 0x10bf9067 vrp_meet(value_range*, value_range const*) > /home/seurer/gcc/gcc-test/gcc/tree-vrp.c:8716 > 0x110a14c3 ipcp_vr_lattice::meet_with_1(value_range const*) > /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:987 > 0x110a4c9f ipcp_vr_lattice::meet_with(value_range const*) > /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:969 > 0x110a4c9f propagate_vr_accross_jump_function > /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:2077 > 0x110a4c9f propagate_constants_accross_call > /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:2435 > 0x110abdc7 propagate_constants_topo > /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:3329 > 0x110abdc7 ipcp_propagate_stage > /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:3439 > 0x110acf13 ipcp_driver > /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:5246 > 0x110acf13 execute > /home/seurer/gcc/gcc-test/gcc/ipa-cp.c:5342 > Please submit a full bug report, > with preprocessed source if appropriate. > Please include the complete backtrace with any bug report. > See for instructions. > specmake: *** [loop.o] Error 1 > specmake: *** Waiting for unfinished jobs.... > specmake -j20 options 2> options.err | tee options.out > COMP: /home/seurer/gcc/install/gcc-test/bin/gcc -c -o options.o=20 > -fno-strict-aliasing -m32 -DHOST_WORDS_BIG_ENDIAN -DSPEC_CPU2000_LINUX_PP= C32 > -O3 -mcpu=3Dpower7 -fpeel-loops -funroll-loops -ffast-math -fvect-cost-mo= del > -mpopcntd -mrecip=3Drsqrt=20=20 > LINK: /home/seurer/gcc/install/gcc-test/bin/gcc -m32 -Wl,-q > -Wl,-rpath=3D/home/seurer/gcc/install/gcc-test/lib -O3 -mcpu=3Dpower7 > -fpeel-loops -funroll-loops -ffast-math -fvect-cost-model -mpopcntd > -mrecip=3Drsqrt -lm -o options > Some files did not appear to be built: cc1 > *** Error building 176.gcc Sorry about the breakage. As Richard pointed out, it could come from other places too. I have posted a patch at https://gcc.gnu.org/ml/gcc-patches/2016-09/msg01629.html. I haven=E2=80=99t= tested the patch with spec2000 yet. >>From gcc-bugs-return-538233-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 22 23:42:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73773 invoked by alias); 22 Sep 2016 23:42:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 73631 invoked by uid 48); 22 Sep 2016 23:42:13 -0000 From: "cmang at google dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77701] suspicious code in go/go-gcc.cc Date: Thu, 22 Sep 2016 23:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cmang at google dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01848.txt.bz2 Content-length: 644 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77701 Chris Manghane changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-22 Ever confirmed|0 |1 --- Comment #1 from Chris Manghane --- Huh, I'm surprised that ever worked. The definition needs to stay as it is since it is being used by the frontend correctly. I'll update the calls the backend constructor. >>From gcc-bugs-return-538235-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 22 23:50:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 80400 invoked by alias); 22 Sep 2016 23:50:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 79971 invoked by uid 48); 22 Sep 2016 23:50:26 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77695] [7 Regression] bootstrap failure due to undeclared hook_uint_uintp_false Date: Thu, 22 Sep 2016 23:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: blocker X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01850.txt.bz2 Content-length: 296 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77695 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |blocker >>From gcc-bugs-return-538234-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 22 23:50:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 79580 invoked by alias); 22 Sep 2016 23:50:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 79421 invoked by uid 48); 22 Sep 2016 23:50:12 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77695] [7 Regression] bootstrap failure due to undeclared hook_uint_uintp_false Date: Thu, 22 Sep 2016 23:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cf_gcctarget cf_gcchost target_milestone short_desc cf_gccbuild Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01849.txt.bz2 Content-length: 730 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77695 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |build Target|x86_64-redhat-linux |!=3D arm*-*-* Host|x86_64-redhat-linux | Target Milestone|--- |7.0 Summary|x86_64 bootstrap failure |[7 Regression] bootstrap |due to undeclared |failure due to undeclared |hook_uint_uintp_false |hook_uint_uintp_false Build|x86_64-redhat-linux | >>From gcc-bugs-return-538236-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 22 23:55:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127145 invoked by alias); 22 Sep 2016 23:55:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127002 invoked by uid 48); 22 Sep 2016 23:55:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/65682] bootstrap failure of gcc-4.9.2 on mips64el target in libgcc "_mulvdi3.o" Date: Thu, 22 Sep 2016 23:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.9.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01851.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65682 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |WAITING Last reconfirmed| |2016-09-22 Ever confirmed|0 |1 --- Comment #1 from Andrew Pinski --- Does this work in GCC 5.4.0 or later? >>From gcc-bugs-return-538237-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 00:04:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 44269 invoked by alias); 23 Sep 2016 00:04:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 44085 invoked by uid 48); 23 Sep 2016 00:04:24 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/65424] gcc does not recognize byte swaps implemented as loop. Date: Fri, 23 Sep 2016 00:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01852.txt.bz2 Content-length: 376 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65424 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pinskia at gcc dot gnu.org Severity|normal |enhancement >>From gcc-bugs-return-538238-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 00:16:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 55843 invoked by alias); 23 Sep 2016 00:16:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 55102 invoked by uid 48); 23 Sep 2016 00:16:12 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/61839] More optimize opportunity for VRP Date: Fri, 23 Sep 2016 00:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.8.4 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kugan at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01853.txt.bz2 Content-length: 491 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61839 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED Target Milestone|--- |7.0 --- Comment #4 from Andrew Pinski --- Fixed so closing. >>From gcc-bugs-return-538239-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 00:22:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 68010 invoked by alias); 23 Sep 2016 00:22:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 67857 invoked by uid 48); 23 Sep 2016 00:21:57 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/61175] LIM not pulling out non-aliased non-depednent load and stores (outside of loop bounds) Date: Fri, 23 Sep 2016 00:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on short_desc everconfirmed bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01854.txt.bz2 Content-length: 990 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61175 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-23 Summary|failing vectorization in |LIM not pulling out |case of "complex access |non-aliased non-depednent |pattern" |load and stores (outside of | |loop bounds) Ever confirmed|0 |1 Severity|normal |enhancement --- Comment #2 from Andrew Pinski --- Confirmed, LIM should have pulled out the load and store allowing it to be vectorizered. Also for me oneOk is not vectorized for AARCH64 (I have not looked into why though). >>From gcc-bugs-return-538240-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 00:30:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76196 invoked by alias); 23 Sep 2016 00:30:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 75967 invoked by uid 48); 23 Sep 2016 00:30:32 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77695] [7 Regression] bootstrap failure due to undeclared hook_uint_uintp_false Date: Fri, 23 Sep 2016 00:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: blocker X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: priority cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01855.txt.bz2 Content-length: 508 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77695 kargl at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P3 |P1 CC| |kargl at gcc dot gnu.org --- Comment #2 from kargl at gcc dot gnu.org --- This is breaking bootstrap on x86_64-*-freebsd, which is preventing me from committing a few gfortran patches. >>From gcc-bugs-return-538241-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 00:49:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 95725 invoked by alias); 23 Sep 2016 00:49:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 95478 invoked by uid 48); 23 Sep 2016 00:49:09 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77696] Confusing wording for -Wformat-length= Date: Fri, 23 Sep 2016 00:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: enhancement X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01856.txt.bz2 Content-length: 7966 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77696 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-23 Assignee|unassigned at gcc dot gnu.org |msebor at gcc dot g= nu.org Ever confirmed|0 |1 Severity|normal |enhancement --- Comment #1 from Martin Sebor --- Thanks for the feedback. I took the liberty to change the classification of this bug to enhancement. If you feel like it should be a defect instead pl= ease change it back. The message "writing format character =E2=80=98!=E2=80=99 at offset 3 past the end of= the destination" says that the '!' is three bytes from the beginning of the format string, a= nd the function (whose name should probably be mentioned) is writing it somewh= ere past the end of the destination sequence (often but not necessarily always exactly just past the end). Mentioning the offset is important in case the= re are multiple exclamation points in the format string. Note that the wordin= g is meant to be similar or analogous to: "writing a terminating nul past the end of the destination" so it were to change so I think should the other. When considering changes here I think it would be useful to take a look at = all the warnings issued by the pass and the convention they follow. The pass checks two sets of functions and issues two broad classes of warnings: 1) bounded functions (like snprintf) along with truncation warnings, and 2) unbounded functions (line sprintf) along with "writing past the end" warnings. For individual directives, the pass also distinguishes two general situatio= ns, and uses two kinds of wordings in the warnings to help users tell them apar= t: 1) a definite problem denoted by the words "truncated writing X bytes" or "writing X bytes into a region" of a given size, and 2) possible problem indicated by the phrase "may be truncated writing betwe= en X and Y bytes into a region" or "writing between X and Y bytes into a region"= of a given size. Finally, similarly to individual directives but for format string characters that aren't part of a directive, the pass again distinguishes two general situations, and emits two kinds of wordings in the warnings to tell one from the other 1) a definite premature truncation or buffer overflow: "output truncated be= fore the last character" and "writing a character/nul past the end," and 2) a possible premature truncation or buffer overflow: "output may be trunc= ated before the last character" and "may write a character/nul past the end." With this background, it might also be helpful to look at some examples. I quickly put together the test program below. It doesn't cover all the poss= ible permutations (and the output may change based on the warning level and base= d on optimization), but it should be a starting point for a more comprehensive survey. With a more complete picture we should be able to make a more info= rmed decision about the new wording of all the kinds of diagnostic (it could also help find bugs or inconsistencies in the implementation). $ cat zzz.c && /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -O= 2 -S -Wall -Wformat -Wextra -Wpedantic -Wformat-length=3D2 zzz.c char d[4]; typedef __SIZE_TYPE__ size_t; extern int sprintf (char*, const char*, ...); extern int snprintf (char*, size_t, const char*, ...); void f (int i) { // bounded, definite truncation in a directve snprintf (d, sizeof d, "%i", 1235); // bounded, definite truncation copying format string snprintf (d, sizeof d, "%iAB", 123); // unbounded, definite overflow in a directve sprintf (d, "%i", 1235); // unbounded, definite overflow copying format string sprintf (d, "%iAB", 123); // bounded, possible truncation a directve snprintf (d, sizeof d, "%i", i); // bounded, possible overflow copying format string snprintf (d, sizeof d, "%iAB", i); // unbounded, possible overflow in a directve sprintf (d, "%i", i); // unbounded, possible overflow copying format string sprintf (d, "%iAB", 123); // unbounded, possible overflow copying format string const char *s =3D i ? "123" : "1234"; sprintf (d, "%sAB", s); } zzz.c: In function =E2=80=98f=E2=80=99: zzz.c:12:26: warning: output truncated before the last format character [-Wformat-length=3D] snprintf (d, sizeof d, "%i", 1235); ^~~~ zzz.c:12:3: note: format output 5 bytes into a destination of size 4 snprintf (d, sizeof d, "%i", 1235); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ zzz.c:15:30: warning: output truncated at format character =E2=80=98B=E2=80= =99 at offset 3 [-Wformat-length=3D] snprintf (d, sizeof d, "%iAB", 123); ^ zzz.c:15:3: note: format output 6 bytes into a destination of size 4 snprintf (d, sizeof d, "%iAB", 123); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ zzz.c:18:15: warning: writing a terminating nul past the end of the destina= tion [-Wformat-length=3D] sprintf (d, "%i", 1235); ^~~~ zzz.c:18:3: note: format output 5 bytes into a destination of size 4 sprintf (d, "%i", 1235); ^~~~~~~~~~~~~~~~~~~~~~~ zzz.c:21:19: warning: writing format character =E2=80=98B=E2=80=99 at offse= t 3 past the end of the destination [-Wformat-length=3D] sprintf (d, "%iAB", 123); ^ zzz.c:21:3: note: format output 6 bytes into a destination of size 4 sprintf (d, "%iAB", 123); ^~~~~~~~~~~~~~~~~~~~~~~~ zzz.c:24:27: warning: =E2=80=98%i=E2=80=99 directive output may be truncate= d writing between 1 and 11 bytes into a region of size 4 [-Wformat-length=3D] snprintf (d, sizeof d, "%i", i); ^~ zzz.c:24:26: note: using the range [=E2=80=981=E2=80=99, =E2=80=98-21474836= 48=E2=80=99] for directive argument snprintf (d, sizeof d, "%i", i); ^~~~ zzz.c:24:3: note: format output between 2 and 12 bytes into a destination of size 4 snprintf (d, sizeof d, "%i", i); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ zzz.c:27:27: warning: =E2=80=98%i=E2=80=99 directive output may be truncate= d writing between 1 and 11 bytes into a region of size 4 [-Wformat-length=3D] snprintf (d, sizeof d, "%iAB", i); ^~ zzz.c:27:26: note: using the range [=E2=80=981=E2=80=99, =E2=80=98-21474836= 48=E2=80=99] for directive argument snprintf (d, sizeof d, "%iAB", i); ^~~~~~ zzz.c:27:3: note: format output between 4 and 14 bytes into a destination of size 4 snprintf (d, sizeof d, "%iAB", i); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ zzz.c:30:16: warning: =E2=80=98%i=E2=80=99 directive writing between 1 and = 11 bytes into a region of size 4 [-Wformat-length=3D] sprintf (d, "%i", i); ^~ zzz.c:30:15: note: using the range [=E2=80=981=E2=80=99, =E2=80=98-21474836= 48=E2=80=99] for directive argument sprintf (d, "%i", i); ^~~~ zzz.c:30:3: note: format output between 2 and 12 bytes into a destination of size 4 sprintf (d, "%i", i); ^~~~~~~~~~~~~~~~~~~~ zzz.c:33:19: warning: writing format character =E2=80=98B=E2=80=99 at offse= t 3 past the end of the destination [-Wformat-length=3D] sprintf (d, "%iAB", 123); ^ zzz.c:33:3: note: format output 6 bytes into a destination of size 4 sprintf (d, "%iAB", 123); ^~~~~~~~~~~~~~~~~~~~~~~~ zzz.c:37:19: warning: may write format character =E2=80=98B=E2=80=99 at off= set 3 past the end of the destination [-Wformat-length=3D] sprintf (d, "%sAB", s); ^ zzz.c:37:3: note: format output between 6 and 7 bytes into a destination of size 4 sprintf (d, "%sAB", s); ^~~~~~~~~~~~~~~~~~~~~~ >>From gcc-bugs-return-538242-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 01:28:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 119718 invoked by alias); 23 Sep 2016 01:28:35 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 119588 invoked by uid 48); 23 Sep 2016 01:28:21 -0000 From: "jonhnanthan at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77702] New: suffix or operands invalid for `movq' Date: Fri, 23 Sep 2016 01:28:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jonhnanthan at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01857.txt.bz2 Content-length: 1815 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77702 Bug ID: 77702 Summary: suffix or operands invalid for `movq' Product: gcc Version: 5.4.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: jonhnanthan at gmail dot com Target Milestone: --- Fails to compile at OS X 10.11.6 Homebrew version of GCC. I think it should work. $ /usr/local/bin/gcc-5 main.c -o main /var/folders/7c/sf7771js2lx54wp3hl7hsh1h0000gn/T//cc1dp4ru.s:13:suffix or operands invalid for `movq' $ /usr/local/bin/gcc-5 -O1 main.c -o main $ ./main=20 result: 2.302585 $ /usr/local/bin/gcc-5 -v Using built-in specs. COLLECT_GCC=3D/usr/local/bin/gcc-5 COLLECT_LTO_WRAPPER=3D/usr/local/Cellar/gcc5/5.4.0/libexec/gcc/x86_64-apple= -darwin15.5.0/5.4.0/lto-wrapper Target: x86_64-apple-darwin15.5.0 Configured with: ../configure --build=3Dx86_64-apple-darwin15.5.0 --prefix=3D/usr/local/Cellar/gcc5/5.4.0 --libdir=3D/usr/local/Cellar/gcc5/5.4.0/lib/gcc/5 --enable-languages=3Dc,c++,objc,obj-c++,fortran --program-suffix=3D-5 --with-gmp=3D/usr/local/opt/gmp --with-mpfr=3D/usr/local/opt/mpfr --with-mpc=3D/usr/local/opt/libmpc --with-isl=3D/usr/local/opt/isl014 --with-system-zlib --enable-libstdcxx-time=3Dyes --enable-stage1-checking --enable-checking=3Drelease --enable-lto --disable-werror --with-pkgversion=3D'Homebrew gcc5 5.4.0' --with-bugurl=3Dhttps://github.com/Homebrew/homebrew-versions/issues --enable-plugin --disable-nls --enable-multilib Thread model: posix gcc version 5.4.0 (Homebrew gcc5 5.4.0)=20 $ cat main.c #include #include int main() { printf("result: %f\n", log(10)); return 0; } Only works if optimization is turned on. >>From gcc-bugs-return-538243-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 01:30:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 1085 invoked by alias); 23 Sep 2016 01:30:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126050 invoked by uid 48); 23 Sep 2016 01:30:44 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77702] suffix or operands invalid for `movq' Date: Fri, 23 Sep 2016 01:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01858.txt.bz2 Content-length: 405 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77702 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Component|c |target --- Comment #1 from Andrew Pinski --- This might be a bug in Apple's assmebler. >>From gcc-bugs-return-538244-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 01:31:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4129 invoked by alias); 23 Sep 2016 01:31:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3408 invoked by uid 48); 23 Sep 2016 01:31:39 -0000 From: "paul.hua.gm at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/65682] bootstrap failure of gcc-4.9.2 on mips64el target in libgcc "_mulvdi3.o" Date: Fri, 23 Sep 2016 01:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.9.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: paul.hua.gm at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01859.txt.bz2 Content-length: 486 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65682 Paul Hua changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |FIXED --- Comment #2 from Paul Hua --- GCC 5.4 or later has been builded successfully. Closed this bug report. >>From gcc-bugs-return-538245-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 03:02:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35022 invoked by alias); 23 Sep 2016 03:02:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31935 invoked by uid 48); 23 Sep 2016 03:02:04 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77690] -Wformat-length %s false positive after strlen check Date: Fri, 23 Sep 2016 03:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc assigned_to everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01860.txt.bz2 Content-length: 1168 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77690 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |diagnostic Status|UNCONFIRMED |WAITING Last reconfirmed| |2016-09-23 CC| |msebor at gcc dot gnu.org Assignee|unassigned at gcc dot gnu.org |msebor at gcc dot g= nu.org Ever confirmed|0 |1 Known to fail| |7.0 --- Comment #1 from Martin Sebor --- Unfortunately, even though it seems like the if statement with the strlen c= all should help, the length range information isn't available to the warning pa= ss.=20 The warning can, however, be avoided by constraining the length of the stri= ng argument output by specifying the precision in the directive like so: sprintf(foo, "zz%.4s", s.buf); Please let me know if this isn't sufficient to resolve the problem report. >>From gcc-bugs-return-538246-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 07:14:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4891 invoked by alias); 23 Sep 2016 07:14:47 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4538 invoked by uid 48); 23 Sep 2016 07:14:34 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77697] suspicious code in tree-ssa-forwprop.c Date: Fri, 23 Sep 2016 07:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01861.txt.bz2 Content-length: 1552 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77697 --- Comment #1 from Richard Biener --- No, the code doesn't make any sense at all. The following should fix most of the obvious errors. Index: gcc/tree-ssa-forwprop.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- gcc/tree-ssa-forwprop.c (revision 240386) +++ gcc/tree-ssa-forwprop.c (working copy) @@ -1458,6 +1458,7 @@ defcodefor_name (tree name, enum tree_co code1 =3D TREE_CODE (name); arg11 =3D name; arg21 =3D NULL_TREE; + arg31 =3D NULL_TREE; grhs_class =3D get_gimple_rhs_class (code1); if (code1 =3D=3D SSA_NAME) @@ -1470,20 +1471,18 @@ defcodefor_name (tree name, enum tree_co code1 =3D gimple_assign_rhs_code (def); arg11 =3D gimple_assign_rhs1 (def); arg21 =3D gimple_assign_rhs2 (def); - arg31 =3D gimple_assign_rhs2 (def); + arg31 =3D gimple_assign_rhs3 (def); } } - else if (grhs_class =3D=3D GIMPLE_TERNARY_RHS - || GIMPLE_BINARY_RHS - || GIMPLE_UNARY_RHS - || GIMPLE_SINGLE_RHS) - extract_ops_from_tree (name, &code1, &arg11, &arg21, &arg31); + else if (grhs_class !=3D GIMPLE_SINGLE_RHS) + code1 =3D ERROR_MARK; *code =3D code1; *arg1 =3D arg11; if (arg2) *arg2 =3D arg21; - /* Ignore arg3 currently. */ + if (arg31) + *code =3D ERROR_MARK; } >>From gcc-bugs-return-538247-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 07:16:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 10355 invoked by alias); 23 Sep 2016 07:16:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 6901 invoked by uid 48); 23 Sep 2016 07:16:43 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77697] suspicious code in tree-ssa-forwprop.c Date: Fri, 23 Sep 2016 07:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01862.txt.bz2 Content-length: 481 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77697 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-23 CC| |marxin at gcc dot gnu.org Ever confirmed|0 |1 >>From gcc-bugs-return-538248-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 07:27:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 56792 invoked by alias); 23 Sep 2016 07:27:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 56642 invoked by uid 48); 23 Sep 2016 07:27:18 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77695] [7 Regression] bootstrap failure due to undeclared hook_uint_uintp_false Date: Fri, 23 Sep 2016 07:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: blocker X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01863.txt.bz2 Content-length: 429 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77695 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #3 from Richard Biener --- Fixed. >>From gcc-bugs-return-538249-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 07:46:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 40768 invoked by alias); 23 Sep 2016 07:46:35 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 40616 invoked by uid 48); 23 Sep 2016 07:46:22 -0000 From: "pault at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77703] New: ICE on assignment to pointer function Date: Fri, 23 Sep 2016 07:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pault at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01864.txt.bz2 Content-length: 2142 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77703 Bug ID: 77703 Summary: ICE on assignment to pointer function Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: pault at gcc dot gnu.org Target Milestone: --- Although related to PR68226, this code ICEs in a different place module m implicit none private integer, parameter, public :: n =3D 2 integer, parameter :: ell =3D 6 character(len=3Dn*ell), target, public :: s public :: t contains function t( idx ) result( substr ) integer, intent(in) :: idx !.. Function result character(len=3Dell), pointer :: substr if ( (idx < 0).or.(idx > n) ) then error stop end if substr =3D> s((idx-1)*ell+1:idx*ell) return end function t end module m program p use m, only : s, t, n integer :: i ! Some sections of code define 's' s =3D "123456789012" ! Then perform operations involving 't' do i =3D 1, n print *, t(i) end do ! Other sections of code define 't' t(1) =3D "Hello" ! t(2) =3D "World!" ! Then perform operations involving 's' print *, s stop end program p internal compiler error: in gfc_trans_auto_character_variable, at fortran/trans-decl.c:3763 0x6dec56 gfc_trans_auto_character_variable ../../trunk/gcc/fortran/trans-decl.c:3763 0x6dec56 gfc_trans_deferred_vars(gfc_symbol*, gfc_wrapped_block*) ../../trunk/gcc/fortran/trans-decl.c:4512 0x6e0bf3 gfc_generate_function_code(gfc_namespace*) ../../trunk/gcc/fortran/trans-decl.c:6362 0x66aea6 translate_all_program_units ../../trunk/gcc/fortran/parse.c:5936 0x66aea6 gfc_parse_file() ../../trunk/gcc/fortran/parse.c:6142 0x6ad472 gfc_be_parse_file ../../trunk/gcc/fortran/f95-lang.c:198 Please submit a full bug report, The current version of ifort comes up with an error message to the effect t= hat this is an unimplemented feature. Paul >>From gcc-bugs-return-538250-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 07:55:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 72424 invoked by alias); 23 Sep 2016 07:55:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 72222 invoked by uid 48); 23 Sep 2016 07:55:42 -0000 From: "avieira at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77695] [7 Regression] bootstrap failure due to undeclared hook_uint_uintp_false Date: Fri, 23 Sep 2016 07:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: blocker X-Bugzilla-Who: avieira at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01865.txt.bz2 Content-length: 628 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77695 avieira at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |avieira at gcc dot gnu.org --- Comment #4 from avieira at gcc dot gnu.org --- Sorry about that and thank you for the fix. I'm curious as to why my aarch64 bootstrap didnt pick this up, it was with an earlier version (2 months ago)= but I dont see why that would make a difference in this case. Anyhow, again sorry for breaking the world. Cheers, Andre >>From gcc-bugs-return-538251-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 07:56:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73934 invoked by alias); 23 Sep 2016 07:56:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 73662 invoked by uid 55); 23 Sep 2016 07:56:31 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/71652] [5/6/7 Regression] ICE in in ix86_target_macros_internal, at config/i386/i386-c.c:187 Date: Fri, 23 Sep 2016 07:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01866.txt.bz2 Content-length: 988 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71652 --- Comment #8 from Martin Li=C5=A1ka --- Author: marxin Date: Fri Sep 23 07:55:57 2016 New Revision: 240392 URL: https://gcc.gnu.org/viewcvs?rev=3D240392&root=3Dgcc&view=3Drev Log: Fix PR target/71652 PR target/71652 * config/i386/i386.c (ix86_option_override_internal): Change signature and return false when there's an error related to arch string. (release_options_strings): New function. (ix86_valid_target_attribute_tree): Call the function. * gcc.target/i386/pr71652.c: New test. * gcc.target/i386/pr71652-2.c: New test. * gcc.target/i386/pr71652-3.c: New test. Added: trunk/gcc/testsuite/gcc.target/i386/pr71652-2.c trunk/gcc/testsuite/gcc.target/i386/pr71652-3.c trunk/gcc/testsuite/gcc.target/i386/pr71652.c Modified: trunk/gcc/ChangeLog trunk/gcc/config/i386/i386.c trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538252-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 07:59:15 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 82376 invoked by alias); 23 Sep 2016 07:59:15 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 82241 invoked by uid 48); 23 Sep 2016 07:59:02 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/71652] [5/6/7 Regression] ICE in in ix86_target_macros_internal, at config/i386/i386-c.c:187 Date: Fri, 23 Sep 2016 07:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01867.txt.bz2 Content-length: 442 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71652 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #9 from Martin Li=C5=A1ka --- Fixed on trunk. >>From gcc-bugs-return-538253-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 08:02:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 98005 invoked by alias); 23 Sep 2016 08:02:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 97853 invoked by uid 48); 23 Sep 2016 08:02:37 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77703] [6/7 Regression] ICE on assignment to pointer function Date: Fri, 23 Sep 2016 08:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_known_to_work keywords cf_reconfirmed_on cc everconfirmed short_desc target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01868.txt.bz2 Content-length: 1028 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77703 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Known to work| |5.4.0 Keywords| |ice-on-invalid-code Last reconfirmed| |2016-09-23 CC| |marxin at gcc dot gnu.org, | |pault at gcc dot gnu.org Ever confirmed|0 |1 Summary|ICE on assignment to |[6/7 Regression] ICE on |pointer function |assignment to pointer | |function Target Milestone|--- |6.3 --- Comment #1 from Martin Li=C5=A1ka --- Started with r228222. >>From gcc-bugs-return-538254-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 08:20:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 122740 invoked by alias); 23 Sep 2016 08:20:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 122524 invoked by uid 48); 23 Sep 2016 08:20:50 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/77692] [7 regression] gcc.dg/debug/dwarf2/const-2b.c FAILs Date: Fri, 23 Sep 2016 08:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01869.txt.bz2 Content-length: 3579 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77692 --- Comment #3 from Richard Biener --- Ok, so tree_add_const_value_attribute_for_decl gives up because the decl is= not readonly. But via add_location_or_const_value_attribute rtl_for_decl_locat= ion would get us (const_vector:V4SF [ (const_double:SF 2.5e+8 [0x0.ee6b28p+28]) (const_double:SF 0.0 [0x0.0p+0]) (const_double:SF 0.0 [0x0.0p+0]) (const_double:SF 0.0 [0x0.0p+0]) ]) which looks inconsistent. That simply does /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time const= ant, and will have been substituted directly into all expressions that use = it. C does not have such a concept, but C++ and other languages do. */ if (!rtl && TREE_CODE (decl) =3D=3D VAR_DECL && DECL_INITIAL (decl)) rtl =3D rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl)); which may be true if called late enough. We're invoking dwarf2out_late_global_decl for removed globals only at a very specific point so it doesn't get called for typedef float FloatVect __attribute__((__vector_size__(16))); static FloatVect Foo =3D { 250000000.0, 0.0, 0.0, 0.0 }; int main() { Foo =3D (FloatVect) { 1., 1., 1., 1. }; } where we also remove Foo (as write-only). For this case it would be defini= tely bogus to add a DW_AT_const_value attribute. We do call it for typedef float FloatVect __attribute__((__vector_size__(16))); static FloatVect Foo =3D { 250000000.0, 0.0, 0.0, 0.0 }; static void bar () { Foo =3D (FloatVect) { 1., 1., 1., 1. }; } int main() { } which means this case did get a DW_AT_const_value attached to Foo. Note that on the original testcase IPA would have found Foo to be readonly, likewise on the last. I believe rtl_for_decl_location is bogus doing /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time const= ant, and will have been substituted directly into all expressions that use = it. C does not have such a concept, but C++ and other languages do. */ if (!rtl && TREE_CODE (decl) =3D=3D VAR_DECL && DECL_INITIAL (decl)) rtl =3D rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl)); when it is called early before decl got a chance to even create RTL. So -- is it worth trying to handle this special case where we know a variab= le is readonly by means of nothing referencing it? Then the following fixes i= t: Index: gcc/cgraphunit.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- gcc/cgraphunit.c (revision 240388) +++ gcc/cgraphunit.c (working copy) @@ -1194,8 +1194,15 @@ analyze_functions (bool first_time) at looking at optimized away DECLs, since late_global_decl will subsequently be called from the contents of the now pruned symbol table. */ - if (!decl_function_context (node->decl)) - (*debug_hooks->late_global_decl) (node->decl); + if (TREE_CODE (node->decl) =3D=3D VAR_DECL + && !decl_function_context (node->decl)) + { + /* We are reclaiming totally unreachable code and variables + so they effectively appear as readonly. Show that to + the debug machinery. */ + TREE_READONLY (node->decl) =3D 1; + (*debug_hooks->late_global_decl) (node->decl); + } node->remove (); continue; >>From gcc-bugs-return-538255-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 08:32:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 45389 invoked by alias); 23 Sep 2016 08:32:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 37044 invoked by uid 48); 23 Sep 2016 08:31:57 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77693] ICE in rtl_for_decl_init, at dwarf2out.c:17378 Date: Fri, 23 Sep 2016 08:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01870.txt.bz2 Content-length: 1980 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77693 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |wrong-code --- Comment #3 from Richard Biener --- (gdb) p debug_rtx (rtl) (mem/u/c:SC (symbol_ref/f:DI ("*.LC1") [flags 0x2] ) [0 S8 A32]) (gdb) p init $3 =3D and we see a comment: /* Other aggregates, and complex values, could be represented using CONCAT: FIXME! */ but, of course (gdb) p type $6 =3D so the issue is really that we have asm_written SC size unit size align 32 symtab -156936400 alias set 2 canonical type 0x7ffff68a21f8 pointer_to_this > asm_written public unsigned DI size unit size align 64 symtab -156936480 alias set 1 canonical type 0x7ffff6a4d000 pointer_to_this > readonly static unsigned DI file t.f90 line 2 col 0 size unit size align 64 context initial chain > thus a pointer variable with a complex_cst initializer. -> FE issue. And if the code is valid then it's wrong-code as well. The FE needs to output a CONST_DECL for the complex constant and the initializer for A needs to be the address of that. >>From gcc-bugs-return-538256-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 09:05:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 108507 invoked by alias); 23 Sep 2016 09:05:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 108296 invoked by uid 48); 23 Sep 2016 09:05:00 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77689] Missing vectorization lead to huge performance loss Date: Fri, 23 Sep 2016 09:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01871.txt.bz2 Content-length: 286 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77689 --- Comment #10 from Markus Trippelsdorf --- (In reply to Richard Biener from comment #5) > we can't remove the stores because we still can't grok C++ new/delete. Is there a PR that tracks this issue? >>From gcc-bugs-return-538257-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 09:09:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 119304 invoked by alias); 23 Sep 2016 09:09:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 113177 invoked by uid 48); 23 Sep 2016 09:09:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77689] Missing vectorization lead to huge performance loss Date: Fri, 23 Sep 2016 09:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01872.txt.bz2 Content-length: 488 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77689 --- Comment #11 from Andrew Pinski --- (In reply to Markus Trippelsdorf from comment #10) > (In reply to Richard Biener from comment #5) > > we can't remove the stores because we still can't grok C++ new/delete. >=20 > Is there a PR that tracks this issue? Yes but I don't know the number off hand I know there are a few. In fact one where Chris Latern was on and said it was an invalid treatment to do. >>From gcc-bugs-return-538258-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 09:17:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 89994 invoked by alias); 23 Sep 2016 09:17:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 89840 invoked by uid 48); 23 Sep 2016 09:17:18 -0000 From: "morandidodo at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77704] New: Data race on std::regex Date: Fri, 23 Sep 2016 09:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: morandidodo at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01873.txt.bz2 Content-length: 8075 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77704 Bug ID: 77704 Summary: Data race on std::regex Product: gcc Version: 6.2.1 Status: UNCONFIRMED Severity: major Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: morandidodo at gmail dot com Target Milestone: --- The thread sanitizer says that there is a data race during regex constructi= on. Here a simple test: #include #include #include static const std::string test_string =3D "aiusndougbafiudboihvboauvhbadnofhdbvouahvebfdocsahkbnavoiekrhfdsbvjqon"; static constexpr unsigned n_threads =3D 30; void test() { std::regex re =3D std::regex("[abg][jtd]"); std::regex_match(test_string, re); } int main() { std::vector threads; threads.reserve(n_threads); for(unsigned i =3D 0; i < n_threads; ++i) threads.emplace_back(test); for(unsigned i =3D 0; i < n_threads; ++i) threads[i].join(); } Compiled with GCC 6.2.1, using g++ -Wall -Wextra -O3 test.cpp -o test -g -pthread -fsanitize=3Dthread Running the test gives these "results": =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D WARNING: ThreadSanitizer: data race (pid=3D14501) Read of size 1 at 0x7fc2e581b1f4 by thread T2: #0 std::ctype::narrow(char, char) const /usr/include/c++/6.2.1/bits/locale_facets.h:932 (test+0x0000004064f4) #1 std::__detail::_Scanner::_M_scan_normal() /usr/include/c++/6.2.1/bits/regex_scanner.tcc:101 (test+0x0000004064f4) #2 std::__detail::_Scanner::_M_advance() /usr/include/c++/6.2.1/bits/regex_scanner.tcc:80 (test+0x0000004083af) #3 std::__detail::_Scanner::_Scanner(char const*, char const*, std::regex_constants::syntax_option_type, std::locale) /usr/include/c++/6.2.1/bits/regex_scanner.tcc:66 (test+0x0000004083af) #4 std::__detail::_Compiler >::_Compiler(char const*, char const*, std::locale const&, std::regex_constants::syntax_option_type) /usr/include/c++/6.2.1/bits/regex_compiler.tcc:78 (test+0x000000422b8a) #5 std::enable_if::value, std::shared_ptr > cons= t> >::type std::__detail::__compile_nfa >(char const*, char const*, std::__cxx11::regex_traits::locale_type const&, std::regex_constants::syntax_option_type) /usr/include/c++/6.2.1/bits/regex_compiler.h:194 (test+0x00000042379f) #6 std::__cxx11::basic_regex >::basic_regex(char const*, char const*, std::locale, std::regex_constants::syntax_option_type) /usr/include/c++/6.2.1/bits/regex.h:767 (test+0x0000004034df) #7 std::__cxx11::basic_regex >::basic_regex(char const*, char const*, std::regex_constants::syntax_option_type) /usr/include/c++/6.2.1/bits/regex.h:512 (test+0x0000004034df) #8 std::__cxx11::basic_regex >::basic_regex(char const*, std::regex_constants::syntax_option_type) /usr/include/c++/6.2.1/bits/regex.h:445 (test+0x0000004034df) #9 test() /tmp/test3.cpp:10 (test+0x0000004034df) #10 void std::_Bind_simple::_M_invoke<>(std::_Index_tuple= <>) /usr/include/c++/6.2.1/functional:1400 (test+0x000000403fc9) #11 std::_Bind_simple::operator()() /usr/include/c++/6.2.1/functional:1389 (test+0x000000403fc9) #12 std::thread::_State_impl >::_M_run() /usr/include/c++/6.2.1/thread:196 (test+0x000000403fc9) #13 execute_native_thread_routine /build/gcc-multilib/src/gcc/libstdc++-v3/src/c++11/thread.cc:83 (libstdc++.so.6+0x0000000bb31e) Previous write of size 1 at 0x7fc2e581b1f4 by thread T1: #0 std::ctype::narrow(char, char) const /usr/include/c++/6.2.1/bits/locale_facets.h:936 (test+0x00000040665d) #1 std::__detail::_Scanner::_M_scan_normal() /usr/include/c++/6.2.1/bits/regex_scanner.tcc:101 (test+0x00000040665d) #2 std::__detail::_Scanner::_M_advance() /usr/include/c++/6.2.1/bits/regex_scanner.tcc:80 (test+0x0000004083af) #3 std::__detail::_Scanner::_Scanner(char const*, char const*, std::regex_constants::syntax_option_type, std::locale) /usr/include/c++/6.2.1/bits/regex_scanner.tcc:66 (test+0x0000004083af) #4 std::__detail::_Compiler >::_Compiler(char const*, char const*, std::locale const&, std::regex_constants::syntax_option_type) /usr/include/c++/6.2.1/bits/regex_compiler.tcc:78 (test+0x000000422b8a) #5 std::enable_if::value, std::shared_ptr > cons= t> >::type std::__detail::__compile_nfa >(char const*, char const*, std::__cxx11::regex_traits::locale_type const&, std::regex_constants::syntax_option_type) /usr/include/c++/6.2.1/bits/regex_compiler.h:194 (test+0x00000042379f) #6 std::__cxx11::basic_regex >::basic_regex(char const*, char const*, std::locale, std::regex_constants::syntax_option_type) /usr/include/c++/6.2.1/bits/regex.h:767 (test+0x0000004034df) #7 std::__cxx11::basic_regex >::basic_regex(char const*, char const*, std::regex_constants::syntax_option_type) /usr/include/c++/6.2.1/bits/regex.h:512 (test+0x0000004034df) #8 std::__cxx11::basic_regex >::basic_regex(char const*, std::regex_constants::syntax_option_type) /usr/include/c++/6.2.1/bits/regex.h:445 (test+0x0000004034df) #9 test() /tmp/test3.cpp:10 (test+0x0000004034df) #10 void std::_Bind_simple::_M_invoke<>(std::_Index_tuple= <>) /usr/include/c++/6.2.1/functional:1400 (test+0x000000403fc9) #11 std::_Bind_simple::operator()() /usr/include/c++/6.2.1/functional:1389 (test+0x000000403fc9) #12 std::thread::_State_impl >::_M_run() /usr/include/c++/6.2.1/thread:196 (test+0x000000403fc9) #13 execute_native_thread_routine /build/gcc-multilib/src/gcc/libstdc++-v3/src/c++11/thread.cc:83 (libstdc++.so.6+0x0000000bb31e) Location is global '(anonymous namespace)::ctype_c' of size 576 at 0x7fc2e581b060 (libstdc++.so.6+0x0000003861f4) Thread T2 (tid=3D14504, running) created by main thread at: #0 pthread_create /build/gcc-multilib/src/gcc/libsanitizer/tsan/tsan_interceptors.cc:876 (libtsan.so.0+0x000000028470) #1 __gthread_create /build/gcc-multilib/src/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/= x86_64-pc-linux-gnu/bits/gthr-default.h:662 (libstdc++.so.6+0x0000000bb634) #2 std::thread::_M_start_thread(std::unique_ptr >, void (*)()) /build/gcc-multilib/src/gcc/libstdc++-v3/src/c++11/thread.cc:163 (libstdc++.so.6+0x0000000bb634) #3 __libc_start_main (libc.so.6+0x000000020290) Thread T1 (tid=3D14503, running) created by main thread at: #0 pthread_create /build/gcc-multilib/src/gcc/libsanitizer/tsan/tsan_interceptors.cc:876 (libtsan.so.0+0x000000028470) #1 __gthread_create /build/gcc-multilib/src/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/= x86_64-pc-linux-gnu/bits/gthr-default.h:662 (libstdc++.so.6+0x0000000bb634) #2 std::thread::_M_start_thread(std::unique_ptr >, void (*)()) /build/gcc-multilib/src/gcc/libstdc++-v3/src/c++11/thread.cc:163 (libstdc++.so.6+0x0000000bb634) #3 __libc_start_main (libc.so.6+0x000000020290) SUMMARY: ThreadSanitizer: data race /usr/include/c++/6.2.1/bits/locale_facets.h:932 in std::ctype::narrow(char, char) const =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ThreadSanitizer: reported 1 warnings >>From gcc-bugs-return-538259-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 09:35:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25076 invoked by alias); 23 Sep 2016 09:35:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24764 invoked by uid 48); 23 Sep 2016 09:35:07 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77704] Data race on std::cype Date: Fri, 23 Sep 2016 09:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on short_desc everconfirmed bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01874.txt.bz2 Content-length: 917 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77704 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-23 Summary|Data race on std::regex |Data race on std::cype Ever confirmed|0 |1 Severity|major |normal --- Comment #1 from Jonathan Wakely --- Ugh, we have mutable members in std::ctype #include #include int main() { auto& ctype =3D std::use_facet>(std::locale::classic()); auto f =3D [&]{ for (int i =3D 0; i < 64; ++i) ctype.narrow(i, 'a'); }; std::thread t1{f}; std::thread t2{f}; t1.join(); t2.join(); } >>From gcc-bugs-return-538260-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 09:38:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 28822 invoked by alias); 23 Sep 2016 09:38:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 28752 invoked by uid 48); 23 Sep 2016 09:38:04 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77705] New: Optimize away some static constructors Date: Fri, 23 Sep 2016 09:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01875.txt.bz2 Content-length: 1529 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77705 Bug ID: 77705 Summary: Optimize away some static constructors Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: jakub at gcc dot gnu.org Target Milestone: --- struct S { int a; }; void baz (S *); #if __cpp_constexpr >=3D 200704 constexpr #endif inline S foo () { return (S) { 2 }; } S s =3D foo (); for -std=3Dc++98 -O2 we have the runtime initializer. If we had some pass = that would analyze the ctor functions after they were inlined into and if they o= nly write constants into file-scope vars defined in the current TU (except for comdat vars?) turn the ctor function into static initializers for the file-scope vars. Not sure if we can do it generally for any (non-comdat?) vars, or if e.g. t= he C++ FE wouldn't have to mark such vars some way for us, or if we wouldn't n= eed to analyze if there aren't some ctors in the same TU that would run earlier (higher (or is that lower?) priority) and could access those vars, or for v= ars visible outside of the TU if some other TU's ctor couldn't access them. An argument for some guidance from the C++ FE would be that say in C: int a __attribute__((nocommon)); static __attribute__((constructor)) void foo (void) { a =3D 6; } some other TU could say in heither priority ctor expect to see a =3D=3D 0. >>From gcc-bugs-return-538261-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 09:41:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 34930 invoked by alias); 23 Sep 2016 09:41:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34853 invoked by uid 48); 23 Sep 2016 09:41:15 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77706] New: Optimize away some local static constructors Date: Fri, 23 Sep 2016 09:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01876.txt.bz2 Content-length: 1362 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77706 Bug ID: 77706 Summary: Optimize away some local static constructors Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: jakub at gcc dot gnu.org Target Milestone: --- Similar to PR77705, but even harder: struct S { int a; }; void baz (S *); #if __cpp_constexpr >=3D 200704 constexpr #endif inline S foo () { return (S) { 2 }; } void bar () { static S t =3D foo (); baz (&t); } inline void bar2 () { static S t =3D foo (); baz (&t); } void bar3 () { bar2 (); } Here we have: static struct S t; unsigned char _1; int _2; : _1 =3D __atomic_load_1 (&_ZGVZ3barvE1t, 2); if (_1 =3D=3D 0) goto ; else goto ; : goto ; : _2 =3D __cxa_guard_acquire (&_ZGVZ3barvE1t); if (_2 !=3D 0) goto ; else goto ; : MEM[(struct S *)&t] =3D 2; __cxa_guard_release (&_ZGVZ3barvE1t); : it would be nice to turn that into static struct S t =3D { 2 }; and get rid= of the guard var and atomics/__cxa_guard*, but we need to consider ABI issues = if the guard var is visible outside of the TU. >>From gcc-bugs-return-538262-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 09:44:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 55869 invoked by alias); 23 Sep 2016 09:44:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 55651 invoked by uid 48); 23 Sep 2016 09:43:57 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77705] Optimize away some static constructors Date: Fri, 23 Sep 2016 09:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01877.txt.bz2 Content-length: 948 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77705 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-23 CC| |hubicka at gcc dot gnu.org, | |rguenth at gcc dot gnu.org Ever confirmed|0 |1 --- Comment #1 from Richard Biener --- Confirmed. I would like to see us moving towards keeping the individual st= atic ctor functions separate and registered in the varpool (and leave building of the actual CTOR function wrapping them eventually to IPA). This would allow to run early opts over them and then eventually turn them into static initialization. >>From gcc-bugs-return-538263-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 09:44:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 57964 invoked by alias); 23 Sep 2016 09:44:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 56718 invoked by uid 48); 23 Sep 2016 09:44:22 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77706] Optimize away some local static constructors Date: Fri, 23 Sep 2016 09:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01878.txt.bz2 Content-length: 169 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77706 --- Comment #1 from Andrew Pinski --- There might be a duplicate of this bug already. >>From gcc-bugs-return-538264-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 09:46:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 62299 invoked by alias); 23 Sep 2016 09:46:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 61973 invoked by uid 48); 23 Sep 2016 09:46:03 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77706] Optimize away some local static constructors Date: Fri, 23 Sep 2016 09:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01879.txt.bz2 Content-length: 931 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77706 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-23 CC| |hubicka at gcc dot gnu.org, | |rguenth at gcc dot gnu.org Ever confirmed|0 |1 --- Comment #2 from Richard Biener --- Same as PR77705 but in this case the constructor functions should include t= he locking/ref-counting dance (so we can optimize that as well). Gets interes= ting if we optimize multiple adjacent static inits with a single lock (do we?) though then we'd just make a wrapper that just contains the locking. >>From gcc-bugs-return-538265-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 10:12:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121003 invoked by alias); 23 Sep 2016 10:12:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 120529 invoked by uid 48); 23 Sep 2016 10:11:48 -0000 From: "manfred99 at gmx dot ch" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77707] New: [4.5-7.0 Regression] formatted direct access: nextrec off by one Date: Fri, 23 Sep 2016 10:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: manfred99 at gmx dot ch X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01880.txt.bz2 Content-length: 1113 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77707 Bug ID: 77707 Summary: [4.5-7.0 Regression] formatted direct access: nextrec off by one Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: manfred99 at gmx dot ch Target Milestone: --- program directaccess_formatted integer nextrec open(10, file=3D'directaccess_formatted.dat', form=3D'formatted', access=3D'direct', recl=3D10*4) write(10,'(10i4)',rec=3D9) 1,2,3,4,5,6,7,8,9,10 inquire(unit=3D10,nextrec=3Dnextrec) print*,"Next rec: ",nextrec close(10) end prints the following: 4.3: Next rec: 10 4.5-7.0: Next rec: 9 As I have no working gfortran 4.4 any more, I can't tell whether 4.4 is OK = or not. nextrec is "last record read or written, plus one". In contrast, unformatted direct access is OK and prints "10". Possibly related bugs: Bug 14836, Bug 14904 >>From gcc-bugs-return-538266-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 10:25:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22887 invoked by alias); 23 Sep 2016 10:25:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22655 invoked by uid 55); 23 Sep 2016 10:25:44 -0000 From: "kugan at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77677] [7 Regression] ICE at -O1 and above in both 32-bit and 64-bit modes on x86_64-linux-gnu (internal compiler error: in set_value_range, at tree-vrp.c:361) Date: Fri, 23 Sep 2016 10:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kugan at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01881.txt.bz2 Content-length: 784 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77677 --- Comment #8 from kugan at gcc dot gnu.org --- Author: kugan Date: Fri Sep 23 10:25:09 2016 New Revision: 240420 URL: https://gcc.gnu.org/viewcvs?rev=3D240420&root=3Dgcc&view=3Drev Log: Drop TREE_OVERFLOW gcc/ChangeLog: 2016-09-23 Kugan Vivekanandarajah PR ipa/77677 * ipa-cp.c (propagate_vr_accross_jump_function): Drop TREE_OVERFLOW from constant while creating value range. gcc/testsuite/ChangeLog: 2016-09-23 Kugan Vivekanandarajah PR ipa/77677 * gcc.dg/torture/pr77677.c: New test. Added: trunk/gcc/testsuite/gcc.dg/torture/pr77677.c Modified: trunk/gcc/ChangeLog trunk/gcc/ipa-cp.c trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538267-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 10:54:16 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 129275 invoked by alias); 23 Sep 2016 10:54:16 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 128580 invoked by uid 48); 23 Sep 2016 10:54:03 -0000 From: "nsz at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77690] -Wformat-length %s false positive after strlen check Date: Fri, 23 Sep 2016 10:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: nsz at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01882.txt.bz2 Content-length: 422 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77690 --- Comment #2 from nsz at gcc dot gnu.org --- (In reply to Martin Sebor from comment #1) > sprintf(foo, "zz%.4s", s.buf); >=20 > Please let me know if this isn't sufficient to resolve the problem report. in my case truncation is fatal error so using precision is not useful (other than suppressing the warning) and has a runtime cost (extra arg passing for %.*s). >>From gcc-bugs-return-538268-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 11:56:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 102716 invoked by alias); 23 Sep 2016 11:56:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 102338 invoked by uid 48); 23 Sep 2016 11:55:59 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77707] [5/6/7 Regression] formatted direct access: nextrec off by one Date: Fri, 23 Sep 2016 11:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cf_known_to_work target_milestone short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01883.txt.bz2 Content-length: 618 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77707 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |wrong-code Known to work| |4.3.5 Target Milestone|--- |5.5 Summary|[4.5-7.0 Regression] |[5/6/7 Regression] |formatted direct access: |formatted direct access: |nextrec off by one |nextrec off by one >>From gcc-bugs-return-538269-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 12:38:08 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 83036 invoked by alias); 23 Sep 2016 12:38:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 82850 invoked by uid 55); 23 Sep 2016 12:37:55 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77697] suspicious code in tree-ssa-forwprop.c Date: Fri, 23 Sep 2016 12:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01884.txt.bz2 Content-length: 543 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77697 --- Comment #2 from Richard Biener --- Author: rguenth Date: Fri Sep 23 12:37:22 2016 New Revision: 240430 URL: https://gcc.gnu.org/viewcvs?rev=3D240430&root=3Dgcc&view=3Drev Log: 2016-09-23 Richard Biener PR tree-optimization/77697 * tree-ssa-forwprop.c (defcodefor_name): Remove bogus code, signal error if we have sth ternary or unhandled. Modified: trunk/gcc/ChangeLog trunk/gcc/tree-ssa-forwprop.c >>From gcc-bugs-return-538270-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 12:39:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 107439 invoked by alias); 23 Sep 2016 12:39:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 107178 invoked by uid 48); 23 Sep 2016 12:39:28 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77697] suspicious code in tree-ssa-forwprop.c Date: Fri, 23 Sep 2016 12:39:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01885.txt.bz2 Content-length: 429 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77697 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #3 from Richard Biener --- Fixed. >>From gcc-bugs-return-538271-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 12:46:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23746 invoked by alias); 23 Sep 2016 12:46:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23352 invoked by uid 48); 23 Sep 2016 12:45:48 -0000 From: "nsz at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77690] -Wformat-length %s false positive after strlen check Date: Fri, 23 Sep 2016 12:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: nsz at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01886.txt.bz2 Content-length: 620 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77690 nsz at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |FIXED --- Comment #3 from nsz at gcc dot gnu.org --- (In reply to nsz from comment #2) > in my case truncation is fatal error so using precision is not useful (ot= her > than suppressing the warning) and has a runtime cost (extra arg passing f= or > %.*s). nevermind, i'll just use snprintf. >>From gcc-bugs-return-538272-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 13:08:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 115810 invoked by alias); 23 Sep 2016 13:08:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 107357 invoked by uid 48); 23 Sep 2016 13:08:38 -0000 From: "nsz at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77708] New: -Wformat-length %s warns for snprintf Date: Fri, 23 Sep 2016 13:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: nsz at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01887.txt.bz2 Content-length: 1109 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77708 Bug ID: 77708 Summary: -Wformat-length %s warns for snprintf Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: nsz at gcc dot gnu.org Target Milestone: --- snprintf does not do oob memory access, so if the return value is checked t= hen, there should be no buffer overflow warning. $ cat a.c int snprintf (char*, __SIZE_TYPE__, const char*, ...); struct { char buf[12]; } s; int f(void) { char foo[7]; return snprintf(foo, sizeof foo, "zz%s", s.buf) >=3D sizeof foo; } $ gcc -c -Wall a.c a.c: In function 'f': a.c:8:10: warning: '%s' directive output may be truncated writing between 0= and 11 bytes into a region of size 5 [-Wformat-length=3D] return snprintf(foo, sizeof foo, "zz%s", s.buf) >=3D sizeof foo; ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ a.c:8:10: note: format output between 3 and 14 bytes into a destination of = size 7 >>From gcc-bugs-return-538273-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 14:15:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25687 invoked by alias); 23 Sep 2016 14:15:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25488 invoked by uid 55); 23 Sep 2016 14:15:25 -0000 From: "dmalcolm at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug preprocessor/77672] wrong rich location in warning: writing a terminating nul past the end Date: Fri, 23 Sep 2016 14:15:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: preprocessor X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: minor X-Bugzilla-Who: dmalcolm at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01888.txt.bz2 Content-length: 2485 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77672 --- Comment #3 from David Malcolm --- Author: dmalcolm Date: Fri Sep 23 14:14:52 2016 New Revision: 240434 URL: https://gcc.gnu.org/viewcvs?rev=3D240434&root=3Dgcc&view=3Drev Log: Provide location information for terminator characters (PR preprocessor/776= 72) substring_loc::get_location currently fails for the final terminator character in a STRING_CST from the C frontend, so that format_warning_va falls back to using the location of the string as a whole. This patch tweaks things [1] so that we use the final closing quote as the location of the terminator character, as requested in PR preprocessor/77672. [1] specifically, cpp_interpret_string_1. gcc/ChangeLog: PR preprocessor/77672 * input.c (selftest::test_lexer_string_locations_simple): Update test to expect location information of the terminator character at the location of the final closing quote. (selftest::test_lexer_string_locations_hex): Likewise. (selftest::test_lexer_string_locations_oct): Likewise. (selftest::test_lexer_string_locations_letter_escape_1): Likewise. (selftest::test_lexer_string_locations_letter_escape_2): Likewise. (selftest::test_lexer_string_locations_ucn4): Likewise. (selftest::test_lexer_string_locations_ucn8): Likewise. (selftest::test_lexer_string_locations_u8): Likewise. (selftest::test_lexer_string_locations_utf8_source): Likewise. (selftest::test_lexer_string_locations_concatenation_1): Likewise. (selftest::test_lexer_string_locations_concatenation_2): Likewise. (selftest::test_lexer_string_locations_concatenation_3): Likewise. (selftest::test_lexer_string_locations_macro): Likewise. (selftest::test_lexer_string_locations_long_line): Likewise. gcc/testsuite/ChangeLog: PR preprocessor/77672 * gcc.dg/plugin/diagnostic-test-string-literals-1.c (test_terminator_location): New function. libcpp/ChangeLog: PR preprocessor/77672 * charset.c (cpp_interpret_string_1): Add a source_range for the NUL-terminator, using the location of the trailing quote of the final string. Modified: trunk/gcc/ChangeLog trunk/gcc/input.c trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/gcc.dg/plugin/diagnostic-test-string-literals-1.c trunk/libcpp/ChangeLog trunk/libcpp/charset.c >>From gcc-bugs-return-538274-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 14:29:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 79477 invoked by alias); 23 Sep 2016 14:29:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 79273 invoked by uid 48); 23 Sep 2016 14:29:05 -0000 From: "thopre01 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77709] New: specified destination size warning does not work when cross-compiling from 64 host to 32bit target Date: Fri, 23 Sep 2016 14:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: thopre01 at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcchost cf_gcctarget Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01889.txt.bz2 Content-length: 1470 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77709 Bug ID: 77709 Summary: specified destination size warning does not work when cross-compiling from 64 host to 32bit target Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end Assignee: unassigned at gcc dot gnu.org Reporter: thopre01 at gcc dot gnu.org Target Milestone: --- Host: x86_64-linux-gnu Target: arm-none-eabi Hi, gcc.dg/tree-ssa/builtin-sprintf-warn-1.c is failing on an arm-none-eabi GCC cross-compiler on x86_64-linux-gnu machine because the following warning are missing: FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-1.c (test for warnings, line 12= 22) FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-1.c (test for warnings, line 12= 72) FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-1.c (test for warnings, line 13= 83) I believe the reason is that -1 would create a MAX_UINT on a 32bit target w= hich would be smaller than an HOST_WIDE_INT_MAX of the 64bit host so the followi= ng test would fail: if (dstsize >=3D HOST_WIDE_INT_MAX) warning_at (gimple_location (info.callstmt), OPT_Wformat_length= _, "specified destination size %wu too large", dstsize); I'm not sure if the fault lies in the gimple code or the testsuite though. >>From gcc-bugs-return-538275-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 14:31:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 88781 invoked by alias); 23 Sep 2016 14:31:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 83446 invoked by uid 48); 23 Sep 2016 14:31:07 -0000 From: "dmalcolm at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug preprocessor/77672] wrong rich location in warning: writing a terminating nul past the end Date: Fri, 23 Sep 2016 14:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: preprocessor X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: minor X-Bugzilla-Who: dmalcolm at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01890.txt.bz2 Content-length: 2437 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77672 --- Comment #4 from David Malcolm --- (In reply to Martin Sebor from comment #2) > I think the general improvement I'm suggesting is to be able to put the > tilde(s) under or point the caret at any character of the format string, > including either of the two quotes. If desired, you can use make_location to construct a location_t for such situations... though I'm not sure that it makes sense to do so for all of t= he different combinations. I've tried to make class substring_loc provide the= API needed for the common case. > It's already possible to underscore the whole format string and point the > caret at any character within in, including the first quote, so it seems > natural to also point the caret at the last quote. r240434 updates things so that substring_loc::get_location uses the final q= uote for the location of the NUL-terminator character for STRING_CSTs from the C frontend, so that if that character's index is passed as one of the indices= to substring_loc's constructor, it will handle that (previously, doing so would lead to substring_loc::get_location, leading to format_warning using the wh= ole string range, with both start and end quotes). The output for the test case is now: $ ./xgcc -B. -c v.c -Wall v.c: In function =E2=80=98f=E2=80=99: v.c:6:19: warning: writing format character =E2=80=98!=E2=80=99 at offset 3= past the end of the destination [-Wformat-length=3D] sprintf (d, "%-s!", "abc"); ^ v.c:6:3: note: format output 5 bytes into a destination of size 3 sprintf (d, "%-s!", "abc"); ^~~~~~~~~~~~~~~~~~~~~~~~~~ v.c: In function =E2=80=98g=E2=80=99: v.c:10:18: warning: writing a terminating nul past the end of the destinati= on [-Wformat-length=3D] sprintf (d, "%-s", "abc"); ~~^~ v.c:10:3: note: format output 4 bytes into a destination of size 3 sprintf (d, "%-s", "abc"); ^~~~~~~~~~~~~~~~~~~~~~~~~ Note how in the warning for g it has underlined from the first char through= to the close-quote, with the caret on the s. This is with: (gdb) p fmt_loc $1 =3D (const substring_loc &) @0x7fffffffda90: {m_fmt_string_loc =3D 21474= 83655, m_string_type =3D ,=20 m_caret_idx =3D 2, m_start_idx =3D 0, m_end_idx =3D 3} so it is faithfully printing the idx values it's been provided with by the diagnostic code. >>From gcc-bugs-return-538276-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 14:44:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110860 invoked by alias); 23 Sep 2016 14:44:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 110700 invoked by uid 55); 23 Sep 2016 14:44:17 -0000 From: "edlinger at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77411] object-size-9.c -fpic -m32 failure Date: Fri, 23 Sep 2016 14:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: patch X-Bugzilla-Severity: normal X-Bugzilla-Who: edlinger at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01891.txt.bz2 Content-length: 577 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77411 --- Comment #3 from Bernd Edlinger --- Author: edlinger Date: Fri Sep 23 14:43:45 2016 New Revision: 240437 URL: https://gcc.gnu.org/viewcvs?rev=3D240437&root=3Dgcc&view=3Drev Log: 2016-09-23 Bernd Edlinger Tom de Vries PR testsuite/77411 * c-c++-common/ubsan/object-size-9.c: Call __builtin_exit in C++. Modified: trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/c-c++-common/ubsan/object-size-9.c >>From gcc-bugs-return-538277-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 14:49:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3868 invoked by alias); 23 Sep 2016 14:49:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 571 invoked by uid 48); 23 Sep 2016 14:49:08 -0000 From: "dmalcolm at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug preprocessor/77672] wrong rich location in warning: writing a terminating nul past the end Date: Fri, 23 Sep 2016 14:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: preprocessor X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: minor X-Bugzilla-Who: dmalcolm at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01892.txt.bz2 Content-length: 493 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77672 --- Comment #5 from David Malcolm --- BTW, if you do have a need to send a "print the whole string" request via c= lass substring_loc, that could be handled by passing in INT_MAX as the idx value= s, which will lead to a failure. (we could make it handle -1 similarly, but input.c:get_source_location_for_substring currently only checks the upper bound; it doesn't yet check > 0, but that would be trivial). >>From gcc-bugs-return-538278-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 15:07:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 33711 invoked by alias); 23 Sep 2016 15:07:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33630 invoked by uid 48); 23 Sep 2016 15:07:21 -0000 From: "thopre01 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77710] New: FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-4.c Date: Fri, 23 Sep 2016 15:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: thopre01 at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcchost cf_gcctarget Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01893.txt.bz2 Content-length: 2949 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77710 Bug ID: 77710 Summary: FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-4.c Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: testsuite Assignee: unassigned at gcc dot gnu.org Reporter: thopre01 at gcc dot gnu.org CC: msebor at gcc dot gnu.org Target Milestone: --- Host: x86_64-linux-gnu Target: arm-none-eabi Hi, gcc.dg/tree-ssa/builtin-sprintf-warn-4.c fails on arm-none-eabi targets for excess errors because it does not seem to see the dg-warning and dg-message directive. This seems to be related to the multiline checks because when removing those the warnings are catched. Here is the output I get: gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c: In function 'test':= ^M gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:10:21: warning: writ= ing a terminating nul past the end of the destination [-Wformat-length=3D]^M sprintf (dst + 7, "%-s", "1");^M ^~~~~^M gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:10:3: note: format output 2 bytes into a destination of size 1^M sprintf (dst + 7, "%-s", "1");^M ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~^M gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:22:22: warning: '%-s' directive writing 4 bytes into a region of size 1 [-Wformat-length=3D]^M sprintf (dst + 7, "%-s", "abcd");^M ^~~ ~~~~~~^M gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:22:3: note: format output 5 bytes into a destination of size 1^M sprintf (dst + 7, "%-s", "abcd");^M ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^M PASS: gcc.dg/tree-ssa/builtin-sprintf-warn-4.c expected multiline pattern l= ines 14-15 was found: "\s*sprintf \(dst \+ 7, "%-s", "1"\);.*\n=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 \^~~~~\n" PASS: gcc.dg/tree-ssa/builtin-sprintf-warn-4.c expected multiline pattern l= ines 18-19 was found: " sprintf \(dst \+ 7, "%-s", "1"\);.*\n=20=20 \^~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n" PASS: gcc.dg/tree-ssa/builtin-sprintf-warn-4.c expected multiline pattern l= ines 26-27 was found: " sprintf \(dst \+ 7, "%-s", "abcd"\);.*\n=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20 \^~~ ~~~~~~\n" PASS: gcc.dg/tree-ssa/builtin-sprintf-warn-4.c expected multiline pattern l= ines 30-31 was found: " sprintf \(dst \+ 7, "%-s", "abcd"\);.*\n=20=20 \^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n" FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-4.c (test for excess errors) Excess errors: gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:10:21: warning: writ= ing a terminating nul past the end of the destination [-Wformat-length=3D]gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:= 22:22: warning: '%-s' directive writing 4 bytes into a region of size 1 [-Wformat-length=3D] >>From gcc-bugs-return-538279-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 15:31:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 82434 invoked by alias); 23 Sep 2016 15:31:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 80164 invoked by uid 48); 23 Sep 2016 15:30:57 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77711] New: Add fix-it hints for missing parentheses in member function call Date: Fri, 23 Sep 2016 15:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01894.txt.bz2 Content-length: 889 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77711 Bug ID: 77711 Summary: Add fix-it hints for missing parentheses in member function call Product: gcc Version: 7.0 Status: UNCONFIRMED Keywords: diagnostic Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: redi at gcc dot gnu.org Target Milestone: --- struct A { int foo() { return 0; } }; void bar(int); int main() { A a; bar( a.foo ); } This gives: foo.cc: In function =E2=80=98int main()=E2=80=99: foo.cc:10:14: error: invalid use of non-static member function =E2=80=98int= A::foo()=E2=80=99 bar( a.foo ); ^ foo.cc:2:7: note: declared here int foo() { return 0; } ^~~ It should suggest changing it to a.foo() >>From gcc-bugs-return-538281-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 15:32:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 87355 invoked by alias); 23 Sep 2016 15:32:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 85341 invoked by uid 48); 23 Sep 2016 15:32:14 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77690] -Wformat-length %s false positive after strlen check Date: Fri, 23 Sep 2016 15:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01896.txt.bz2 Content-length: 1304 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77690 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|FIXED |INVALID --- Comment #4 from Martin Sebor --- Note that with snprintf GCC issues warning: =E2=80=98%s=E2=80=99 directive output may be truncated writing b= etween 1 and 11 bytes into a region of size 5 This is also by design though I'm on the fence about warning at the same le= vel or under the same option as for sprintf. FWIW, I wouldn't expect the parsing of the precision within the format stri= ng to have a noticeable performance impact on the overall cost of the call to = the function. If you prefer to avoid it, you can specify via an argument to the '*': sprintf(foo, "zz%.*s", 4, s.buf); I'm changing the resolution of this bug to invalid since we haven't actually fixed anything, but if none of the solutions above is sufficient please feel free to reopen the bug and let us know what would be (keeping in mind that = the ideal solution of tracking the actual string length or its range or determi= ning it from the strlen call may not be feasible in the near term). >>From gcc-bugs-return-538280-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 15:32:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 85385 invoked by alias); 23 Sep 2016 15:32:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 85278 invoked by uid 48); 23 Sep 2016 15:32:04 -0000 From: "rs2740 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77712] New: int() is incorrectly treated as a null pointer constant in C++11 and later Date: Fri, 23 Sep 2016 15:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rs2740 at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01895.txt.bz2 Content-length: 652 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77712 Bug ID: 77712 Summary: int() is incorrectly treated as a null pointer constant in C++11 and later Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: rs2740 at gmail dot com Target Milestone: --- GCC accepts int *p =3D int(); even though per DR 903, only integer literals with the value zero are null pointer constants. This causes http://stackoverflow.com/q/39662995/2756719. >>From gcc-bugs-return-538282-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 15:34:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 117488 invoked by alias); 23 Sep 2016 15:34:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 117382 invoked by uid 48); 23 Sep 2016 15:34:16 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77711] Add fix-it hints for missing parentheses in member function call Date: Fri, 23 Sep 2016 15:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01897.txt.bz2 Content-length: 1070 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77711 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-23 Ever confirmed|0 |1 --- Comment #1 from Jonathan Wakely --- If the function is overloaded we get a different, equally unhelpful error: struct A { int foo(); int foo() const; }; void bar(int); int main() { A a; bar( a.foo ); } foo.cc: In function =E2=80=98int main()=E2=80=99: foo.cc:11:14: error: cannot resolve overloaded function =E2=80=98foo=E2=80= =99 based on conversion to type =E2=80=98int=E2=80=99 bar( a.foo ); ^ It's irrelevant that we can't resolve which overload to use, once name look= up finds that 'foo' is a function then a.foo is not a valid expression under a= ny circumstances. This should also suggest a.foo() >>From gcc-bugs-return-538283-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 15:35:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 123304 invoked by alias); 23 Sep 2016 15:35:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123197 invoked by uid 48); 23 Sep 2016 15:35:43 -0000 From: "nsz at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77690] -Wformat-length %s false positive after strlen check Date: Fri, 23 Sep 2016 15:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: nsz at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01898.txt.bz2 Content-length: 895 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77690 nsz at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|INVALID |FIXED --- Comment #5 from nsz at gcc dot gnu.org --- (In reply to Martin Sebor from comment #4) > Note that with snprintf GCC issues >=20 > warning: =E2=80=98%s=E2=80=99 directive output may be truncated writing= between 1 and 11 > bytes into a region of size 5 >=20 > This is also by design though I'm on the fence about warning at the same > level or under the same option as for sprintf. >=20 i opened another bug about snprintf https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77708 i think warning for snprintf is almost surely a false positive, that is har= d to suppress (and the suppression code is not idiomatic). >>From gcc-bugs-return-538284-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 15:36:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 124366 invoked by alias); 23 Sep 2016 15:36:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124230 invoked by uid 48); 23 Sep 2016 15:36:36 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77711] Add fix-it hints for missing parentheses in member function call Date: Fri, 23 Sep 2016 15:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01899.txt.bz2 Content-length: 1009 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77711 --- Comment #2 from Jonathan Wakely --- And then if the function we're calling is a member function we get another variation: struct A { int foo(); int foo() const; void bar(int); }; int main() { A a; a.bar( a.foo ); } foo.cc: In function =E2=80=98int main()=E2=80=99: foo.cc:11:16: error: no matching function for call to =E2=80=98A::bar()=E2=80=99 a.bar( a.foo ); ^ foo.cc:4:8: note: candidate: void A::bar(int) void bar(int); ^~~ foo.cc:4:8: note: no known conversion for argument 1 from =E2=80=98=E2=80=99 to =E2=80=98int=E2=80=99 Again, we shouldn't even be trying to find a matching A::bar, because a.foo= is nonsense. In all three examples we should notice that a.foo is invalid and give an er= ror, suggesting either a.foo() (to call it) or &A::foo (to form a pointer to the member function). >>From gcc-bugs-return-538285-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 15:44:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25881 invoked by alias); 23 Sep 2016 15:44:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25671 invoked by uid 48); 23 Sep 2016 15:44:08 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77712] int() is incorrectly treated as a null pointer constant in C++11 and later Date: Fri, 23 Sep 2016 15:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: accepts-invalid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01900.txt.bz2 Content-length: 467 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77712 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |accepts-invalid Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-23 Ever confirmed|0 |1 >>From gcc-bugs-return-538286-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 15:48:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 40421 invoked by alias); 23 Sep 2016 15:48:47 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 40303 invoked by uid 55); 23 Sep 2016 15:48:33 -0000 From: "mpf at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77654] restrict pointer attribute not preserved with -fprefetch-loop-arrays Date: Fri, 23 Sep 2016 15:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mpf at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01901.txt.bz2 Content-length: 509 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77654 --- Comment #4 from mpf at gcc dot gnu.org --- Author: mpf Date: Fri Sep 23 15:48:01 2016 New Revision: 240439 URL: https://gcc.gnu.org/viewcvs?rev=3D240439&root=3Dgcc&view=3Drev Log: Ensure points-to information is maintained for prefetch. gcc/ PR tree-optimization/77654 * tree-ssa-alias.c (issue_prefetch_ref): Add call to duplicate_ssa_name_ptr_info. Modified: trunk/gcc/ChangeLog trunk/gcc/tree-ssa-loop-prefetch.c >>From gcc-bugs-return-538287-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 15:56:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24811 invoked by alias); 23 Sep 2016 15:56:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 8433 invoked by uid 48); 23 Sep 2016 15:56:08 -0000 From: "pthaugen at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77677] [7 Regression] ICE at -O1 and above in both 32-bit and 64-bit modes on x86_64-linux-gnu (internal compiler error: in set_value_range, at tree-vrp.c:361) Date: Fri, 23 Sep 2016 15:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pthaugen at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01902.txt.bz2 Content-length: 863 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77677 --- Comment #9 from Pat Haugen --- (In reply to kugan from comment #8) > Author: kugan > Date: Fri Sep 23 10:25:09 2016 > New Revision: 240420 >=20 > URL: https://gcc.gnu.org/viewcvs?rev=3D240420&root=3Dgcc&view=3Drev > Log: > Drop TREE_OVERFLOW >=20 > gcc/ChangeLog: >=20 > 2016-09-23 Kugan Vivekanandarajah >=20 > PR ipa/77677 > * ipa-cp.c (propagate_vr_accross_jump_function): Drop TREE_OVERFLOW > from constant while creating value range. Unfortunately this does not fix the problem building 176.gcc on powerpc. Following is reduced testcase. Failure occurs with 'gcc -O2'. enum machine_mode { MAX_MACHINE_MODE }; struct { int mode : 8 } a; b; static fn1(); fn2() { fn1(a, a.mode); } fn1(x, mode) enum machine_mode mode; { int c =3D b =3D c; } >>From gcc-bugs-return-538288-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 15:59:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 14175 invoked by alias); 23 Sep 2016 15:59:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 14023 invoked by uid 48); 23 Sep 2016 15:59:06 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/58938] std::exception_ptr is missing on architectures with incomplete atomic int support Date: Fri, 23 Sep 2016 15:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: REOPENED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01903.txt.bz2 Content-length: 320 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D58938 --- Comment #19 from Jonathan Wakely --- A prototype implementation that doesn't rely on atomics: https://gcc.gnu.org/ml/gcc-patches/2016-09/msg01526.html https://gcc.gnu.org/ml/gcc-patches/2016-09/msg01546.html (both patches are needed). >>From gcc-bugs-return-538289-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 16:14:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 98441 invoked by alias); 23 Sep 2016 16:14:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 97792 invoked by uid 48); 23 Sep 2016 16:14:27 -0000 From: "mrs at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77654] restrict pointer attribute not preserved with -fprefetch-loop-arrays Date: Fri, 23 Sep 2016 16:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mrs at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01904.txt.bz2 Content-length: 509 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77654 mrs at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED CC| |mrs at gcc dot gnu.org Resolution|--- |FIXED --- Comment #5 from mrs at gcc dot gnu.org --- Fixed. >>From gcc-bugs-return-538290-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 16:37:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127219 invoked by alias); 23 Sep 2016 16:37:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127089 invoked by uid 48); 23 Sep 2016 16:37:41 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77708] -Wformat-length %s warns for snprintf Date: Fri, 23 Sep 2016 16:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc component assigned_to everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01905.txt.bz2 Content-length: 1354 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77708 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-23 CC| |msebor at gcc dot gnu.org Component|c |middle-end Assignee|unassigned at gcc dot gnu.org |msebor at gcc dot g= nu.org Ever confirmed|0 |1 --- Comment #1 from Martin Sebor --- The warning is by design here but I will confirm the report as a request for change. I agree that, especially when the snprintf return value is used, warning at= the default level may not be helpful. I'm not sure if a warning should be issu= ed at a higher level, not at all, or under a separate option. I'd like to get= the input from others before making a change. I'm not sure that suppressing the warning at level 1 when the snprintf retu= rn value isn't used is a good idea. Such calls typically assume that the outp= ut=20 will not be truncated and subsequent code isn't prepared to handle it. I f= ixed a few such cases in GCC when testing the warning. >>From gcc-bugs-return-538291-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 16:56:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 72489 invoked by alias); 23 Sep 2016 16:56:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 66123 invoked by uid 55); 23 Sep 2016 16:55:59 -0000 From: "dmalcolm at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug preprocessor/77672] wrong rich location in warning: writing a terminating nul past the end Date: Fri, 23 Sep 2016 16:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: preprocessor X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: minor X-Bugzilla-Who: dmalcolm at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01906.txt.bz2 Content-length: 633 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77672 --- Comment #6 from David Malcolm --- Author: dmalcolm Date: Fri Sep 23 16:55:27 2016 New Revision: 240442 URL: https://gcc.gnu.org/viewcvs?rev=3D240442&root=3Dgcc&view=3Drev Log: Fix gcc.dg/tree-ssa/builtin-sprintf-warn-4.c gcc/testsuite/ChangeLog PR preprocessor/77672 * gcc.dg/tree-ssa/builtin-sprintf-warn-4.c (test): Update expected multiline output from first warning to reflect change in r240434. Modified: trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c >>From gcc-bugs-return-538292-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 17:03:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 118940 invoked by alias); 23 Sep 2016 17:03:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 118741 invoked by uid 48); 23 Sep 2016 17:02:51 -0000 From: "thopre01 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77713] New: gcc.dg/tree-ssa/builtin-sprintf.c compilation failed to produce executable Date: Fri, 23 Sep 2016 17:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: thopre01 at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcchost cf_gcctarget Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01907.txt.bz2 Content-length: 2306 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77713 Bug ID: 77713 Summary: gcc.dg/tree-ssa/builtin-sprintf.c compilation failed to produce executable Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end Assignee: unassigned at gcc dot gnu.org Reporter: thopre01 at gcc dot gnu.org CC: msebor at gcc dot gnu.org Target Milestone: --- Host: x86_64-linux-gnu Target: arm-none-eabi Hi, gcc.dg/tree-ssa/builtin-sprintf.c fails to build on arm-none-eabi target wi= th the following error: gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf.c: In function 'test_e_long_double':^M gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf.c:423:16: warning: may write a terminating nul past the end of the destination [-Wformat-length=3D]^M gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf.c:111:44: note: in definition= of macro 'EQL'^M gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf.c:111:11: note: format output between 13 and 14 bytes into a destination of size 13^M gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf.c:423:3: note: in expansion of macro 'EQL'^M /tmp/ccCIniJQ.o: In function `test_e_long_double':^M builtin-sprintf.c:(.text+0x16fc): undefined reference to `failure_on_line_423'^M collect2: error: ld returned 1 exit status^M compiler exited with status 1 output is: gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf.c: In function 'test_e_long_double':^M gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf.c:423:16: warning: may write a terminating nul past the end of the destination [-Wformat-length=3D]^M gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf.c:111:44: note: in definition= of macro 'EQL'^M gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf.c:111:11: note: format output between 13 and 14 bytes into a destination of size 13^M gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf.c:423:3: note: in expansion of macro 'EQL'^M /tmp/ccCIniJQ.o: In function `test_e_long_double':^M builtin-sprintf.c:(.text+0x16fc): undefined reference to `failure_on_line_423'^M collect2: error: ld returned 1 exit status^M Please let me know of any other information you would need to reproduce this problem. Best regards. >>From gcc-bugs-return-538293-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 17:26:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 71322 invoked by alias); 23 Sep 2016 17:26:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 70595 invoked by uid 55); 23 Sep 2016 17:26:10 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77582] Improve std::string::clear performace Date: Fri, 23 Sep 2016 17:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01908.txt.bz2 Content-length: 1029 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77582 --- Comment #5 from Jonathan Wakely --- Author: redi Date: Fri Sep 23 17:25:34 2016 New Revision: 240447 URL: https://gcc.gnu.org/viewcvs?rev=3D240447&root=3Dgcc&view=3Drev Log: Avoid reallocation for basic_string::clear() PR libstdc++/56166 PR libstdc++/77582 * include/bits/basic_string.h (basic_string::clear()): Drop referen= ce and use empty rep. * include/ext/rc_string_base.h (__rc_string_base::_M_clear()): Likewise. * testsuite/21_strings/basic_string/56166.cc: New. * testsuite/ext/vstring/modifiers/clear/56166.cc: New. Added: trunk/libstdc++-v3/testsuite/21_strings/basic_string/56166.cc trunk/libstdc++-v3/testsuite/ext/vstring/modifiers/clear/ trunk/libstdc++-v3/testsuite/ext/vstring/modifiers/clear/56166.cc Modified: trunk/libstdc++-v3/ChangeLog trunk/libstdc++-v3/include/bits/basic_string.h trunk/libstdc++-v3/include/ext/rc_string_base.h >>From gcc-bugs-return-538294-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 17:26:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 71332 invoked by alias); 23 Sep 2016 17:26:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 70387 invoked by uid 55); 23 Sep 2016 17:26:08 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/56166] std::string::clear() can throw despite being marked noexcept Date: Fri, 23 Sep 2016 17:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 4.7.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01909.txt.bz2 Content-length: 1030 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D56166 --- Comment #14 from Jonathan Wakely --- Author: redi Date: Fri Sep 23 17:25:34 2016 New Revision: 240447 URL: https://gcc.gnu.org/viewcvs?rev=3D240447&root=3Dgcc&view=3Drev Log: Avoid reallocation for basic_string::clear() PR libstdc++/56166 PR libstdc++/77582 * include/bits/basic_string.h (basic_string::clear()): Drop referen= ce and use empty rep. * include/ext/rc_string_base.h (__rc_string_base::_M_clear()): Likewise. * testsuite/21_strings/basic_string/56166.cc: New. * testsuite/ext/vstring/modifiers/clear/56166.cc: New. Added: trunk/libstdc++-v3/testsuite/21_strings/basic_string/56166.cc trunk/libstdc++-v3/testsuite/ext/vstring/modifiers/clear/ trunk/libstdc++-v3/testsuite/ext/vstring/modifiers/clear/56166.cc Modified: trunk/libstdc++-v3/ChangeLog trunk/libstdc++-v3/include/bits/basic_string.h trunk/libstdc++-v3/include/ext/rc_string_base.h >>From gcc-bugs-return-538295-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 17:27:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 74574 invoked by alias); 23 Sep 2016 17:27:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 73216 invoked by uid 48); 23 Sep 2016 17:27:04 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77582] Improve std::string::clear performace Date: Fri, 23 Sep 2016 17:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01910.txt.bz2 Content-length: 594 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77582 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED Target Milestone|--- |7.0 --- Comment #6 from Jonathan Wakely --- (In reply to Jonathan Wakely from comment #4) > This would be fixed by the patch I wrote for PR 56166 Committed to trunk. >>From gcc-bugs-return-538296-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 17:28:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 78549 invoked by alias); 23 Sep 2016 17:28:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 78433 invoked by uid 48); 23 Sep 2016 17:28:23 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/56166] std::string::clear() can throw despite being marked noexcept Date: Fri, 23 Sep 2016 17:28:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 4.7.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01911.txt.bz2 Content-length: 833 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D56166 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED Target Milestone|--- |7.0 --- Comment #15 from Jonathan Wakely --- (In reply to Jonathan Wakely from comment #12) > I think __gnu_cxx::__rc_string has the same problem >=20 > There's a patch at https://gcc.gnu.org/ml/gcc-patches/2014-06/msg00278.ht= ml I've committed that patch, so this is fixed for the COW strings too (except= for the fully-dynamic string case, where it can still throw, but at least won't terminate now). >>From gcc-bugs-return-538297-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 17:48:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 129373 invoked by alias); 23 Sep 2016 17:48:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 128915 invoked by uid 48); 23 Sep 2016 17:47:59 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77713] gcc.dg/tree-ssa/builtin-sprintf.c compilation failed to produce executable Date: Fri, 23 Sep 2016 17:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01912.txt.bz2 Content-length: 543 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77713 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-23 Assignee|unassigned at gcc dot gnu.org |msebor at gcc dot g= nu.org Ever confirmed|0 |1 Known to fail| |7.0 >>From gcc-bugs-return-538298-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 17:52:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 13772 invoked by alias); 23 Sep 2016 17:52:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 13559 invoked by uid 48); 23 Sep 2016 17:52:25 -0000 From: "thopre01 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/77714] New: Wrong code generation for gcc.c-torture/execute/pr51447.c Date: Fri, 23 Sep 2016 17:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: thopre01 at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcchost cf_gcctarget Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01913.txt.bz2 Content-length: 1239 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77714 Bug ID: 77714 Summary: Wrong code generation for gcc.c-torture/execute/pr51447.c Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: rtl-optimization Assignee: unassigned at gcc dot gnu.org Reporter: thopre01 at gcc dot gnu.org CC: bergner at vnet dot ibm.com Target Milestone: --- Host: x86_64-linux-gnu Target: arm-none-eabi Hi, GCC started to generate wrong coed for gcc.c-torture/execute/pr51447.c from r240065 on arm-none-eabi Cortex-M0 targets (no problem on other Cortex-M targets). The problem is that the stack is no longer properly adjusted after jumping from bar to nonlocal_lab. Dumps are identical until reload. Before this commit, reload will do the adjustment of the stack in r7 and then pro_and_epilogue will add a mov sp, = r7. After the commit, the stack is adjusted in ip but pro_and_epilogue still generates a mov sp, r7. Please find attached the assembly output before and after as well as the du= mps for ira, reload and pro_and_epilogue. Best regards. >>From gcc-bugs-return-538299-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 17:56:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 17537 invoked by alias); 23 Sep 2016 17:56:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 17041 invoked by uid 55); 23 Sep 2016 17:56:01 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77713] gcc.dg/tree-ssa/builtin-sprintf.c compilation failed to produce executable Date: Fri, 23 Sep 2016 17:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01914.txt.bz2 Content-length: 542 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77713 --- Comment #1 from Martin Sebor --- Author: msebor Date: Fri Sep 23 17:55:29 2016 New Revision: 240450 URL: https://gcc.gnu.org/viewcvs?rev=3D240450&root=3Dgcc&view=3Drev Log: gcc/testsuite/ChangeLog: PR testsuite/77713 * gcc.dg/tree-ssa/builtin-sprintf.c (test_e_long_double): Avoid assuming long double is bigger than double. Modified: trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf.c >>From gcc-bugs-return-538300-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 17:56:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 19689 invoked by alias); 23 Sep 2016 17:56:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 18847 invoked by uid 55); 23 Sep 2016 17:56:25 -0000 From: "ian at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77701] suspicious code in go/go-gcc.cc Date: Fri, 23 Sep 2016 17:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ian at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: cmang at google dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01915.txt.bz2 Content-length: 471 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77701 --- Comment #2 from ian at gcc dot gnu.org --- Author: ian Date: Fri Sep 23 17:55:53 2016 New Revision: 240451 URL: https://gcc.gnu.org/viewcvs?rev=3D240451&root=3Dgcc&view=3Drev Log: PR go/77701 * go-gcc.cc (Gcc_backend::Gcc_backend): Fix calls to integer_type to pass arguments in the correct order. Modified: trunk/gcc/go/ChangeLog trunk/gcc/go/go-gcc.cc >>From gcc-bugs-return-538301-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 17:57:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22262 invoked by alias); 23 Sep 2016 17:57:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 21223 invoked by uid 48); 23 Sep 2016 17:57:11 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77713] gcc.dg/tree-ssa/builtin-sprintf.c compilation failed to produce executable Date: Fri, 23 Sep 2016 17:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status component resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01916.txt.bz2 Content-length: 567 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77713 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Component|middle-end |testsuite Resolution|--- |FIXED --- Comment #2 from Martin Sebor --- The test case has been fixed via r240450. Please reopen the bug if the fai= lure persists. >>From gcc-bugs-return-538302-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 18:33:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 88475 invoked by alias); 23 Sep 2016 18:33:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 81485 invoked by uid 48); 23 Sep 2016 18:33:37 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77707] [5/6/7 Regression] formatted direct access: nextrec off by one Date: Fri, 23 Sep 2016 18:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01917.txt.bz2 Content-length: 414 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77707 Jerry DeLisle changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jvdelisle at gcc dot gnu.o= rg --- Comment #1 from Jerry DeLisle --- I will look into this. >>From gcc-bugs-return-538304-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 18:56:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 55252 invoked by alias); 23 Sep 2016 18:56:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 50252 invoked by uid 48); 23 Sep 2016 18:56:06 -0000 From: "dje at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77715] New: go-system.h includes C++ header files before GCC system.h Date: Fri, 23 Sep 2016 18:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dje at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01919.txt.bz2 Content-length: 1604 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77715 Bug ID: 77715 Summary: go-system.h includes C++ header files before GCC system.h Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: go Assignee: ian at airs dot com Reporter: dje at gcc dot gnu.org CC: cmang at google dot com Target Milestone: --- go-system.h includes C++ headers before system.h to work-around poisoned declarations // These must be included before the #poison declarations in system.h. #include #include #include #include #include #include #if defined(HAVE_UNORDERED_MAP) # include # include // We don't really need iostream, but some versions of gmp.h include // it when compiled with C++, which means that we need to include it // before the macro magic of safe-ctype.h, which is included by // system.h. #include #include "system.h" GCC development specifies that "system.h" should be included first. Inclus= ion of C++ headers potentially pulls in OS system headers that cause conflicts = or that adversely influence the behavior of system.h. This prevent the compilation of gofrontend on AIX due to PRIx64 and PRIu64 definition confli= cts. The preferred solution is #define INCLUDE_MAP #define INCLUDE_SET #include "system.h" as used in auto-profile.c. go-system.h should arrange for system.h to incl= ude the necessary C++ header files. >>From gcc-bugs-return-538303-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 18:56:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 47754 invoked by alias); 23 Sep 2016 18:56:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 41799 invoked by uid 48); 23 Sep 2016 18:55:48 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77710] FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-4.c Date: Fri, 23 Sep 2016 18:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01918.txt.bz2 Content-length: 575 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77710 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #1 from Martin Sebor --- I think this failure may have been inadvertently introduced in r240434. The failure should be gone now that r240442 has been checked in to adjust the t= est. >>From gcc-bugs-return-538305-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 19:02:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 79762 invoked by alias); 23 Sep 2016 19:02:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 79665 invoked by uid 48); 23 Sep 2016 19:02:05 -0000 From: "bergner at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/77714] Wrong code generation for gcc.c-torture/execute/pr51447.c Date: Fri, 23 Sep 2016 19:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: bergner at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01920.txt.bz2 Content-length: 643 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77714 Peter Bergner changed: What |Removed |Added ---------------------------------------------------------------------------- CC|bergner at vnet dot ibm.com |bergner at gcc dot = gnu.org, | |edlinger at gcc dot gnu.org --- Comment #1 from Peter Bergner --- There was a follow on patch from Bernd (r240124) that fixed a problem on AR= M.=20 Do you have that in your tree? https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77289#c9 >>From gcc-bugs-return-538306-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 19:05:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 82736 invoked by alias); 23 Sep 2016 19:05:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 82554 invoked by uid 48); 23 Sep 2016 19:05:30 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77709] specified destination size warning does not work when cross-compiling from 64 host to 32bit target Date: Fri, 23 Sep 2016 19:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01921.txt.bz2 Content-length: 966 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77709 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |diagnostic Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-23 CC| |msebor at gcc dot gnu.org Ever confirmed|0 |1 Known to fail| |7.0 --- Comment #1 from Martin Sebor --- Confirmed. This is a bug in the gimple-ssa-sprintf.c code. As you noted, dstsize will have the value of UINT_MAX on the target (or more precisely, SIZE_MAX on the target), which is less than HOST_WIDE_INT_MAX on the host. = The code needs to use the value of (SIZE_MAX / 2) on the target for this test. >>From gcc-bugs-return-538307-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 19:46:16 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39262 invoked by alias); 23 Sep 2016 19:46:16 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 38732 invoked by uid 48); 23 Sep 2016 19:46:03 -0000 From: "ian at airs dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77701] suspicious code in go/go-gcc.cc Date: Fri, 23 Sep 2016 19:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ian at airs dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: cmang at google dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01922.txt.bz2 Content-length: 510 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77701 Ian Lance Taylor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED CC| |ian at airs dot com Resolution|--- |FIXED --- Comment #3 from Ian Lance Taylor --- Fixed. Thanks for noticing. >>From gcc-bugs-return-538308-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 19:58:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 67595 invoked by alias); 23 Sep 2016 19:58:03 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 60515 invoked by uid 48); 23 Sep 2016 19:57:49 -0000 From: "seurer at linux dot vnet.ibm.com" To: gcc-bugs@gcc.gnu.org Subject: [Bug lto/77716] New: [7 regression] test case gcc.dg/debug/dwarf2/const-2.c fails starting with r240228 Date: Fri, 23 Sep 2016 19:58:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: lto X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: seurer at linux dot vnet.ibm.com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01923.txt.bz2 Content-length: 2202 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77716 Bug ID: 77716 Summary: [7 regression] test case gcc.dg/debug/dwarf2/const-2.c fails starting with r240228 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: lto Assignee: unassigned at gcc dot gnu.org Reporter: seurer at linux dot vnet.ibm.com Target Milestone: --- This fails on powerpc64 both BE and LE. Executing on host: /home/seurer/gcc/build/gcc-test2/gcc/xgcc -B/home/seurer/gcc/build/gcc-test2/gcc/ /home/seurer/gcc/gcc-test2/gcc/testsuite/gcc.dg/debug/dwarf2/const-2.c=20 -fno-diagnostics-show-caret -fdiagnostics-color=3Dnever -O -gdwarf -dA -ma= ltivec -ffat-lto-objects -S -o const-2.s (timeout =3D 300) spawn /home/seurer/gcc/build/gcc-test2/gcc/xgcc -B/home/seurer/gcc/build/gcc-test2/gcc/ /home/seurer/gcc/gcc-test2/gcc/testsuite/gcc.dg/debug/dwarf2/const-2.c -fno-diagnostics-show-caret -fdiagnostics-color=3Dnever -O -gdwarf -dA -mal= tivec -ffat-lto-objects -S -o const-2.s PASS: gcc.dg/debug/dwarf2/const-2.c (test for excess errors) FAIL: gcc.dg/debug/dwarf2/const-2.c scan-assembler DW_AT_const_value 16c16 < .4byte .LASF0 # DW_AT_producer: "GNU C11 7.0.0 20160919 (experimental) [trunk revision 240227] -Asystem=3Dlinux -Asystem=3Dunix -Asystem=3Dposix -maltivec -gdwarf -O -ffat-lto-objects" --- > .4byte .LASF0 # DW_AT_producer: "GNU C11 7.0.0 20160919 (experimental) = [trunk revision 240228] -Asystem=3Dlinux -Asystem=3Dunix -Asystem=3Dposix -= maltivec -gdwarf -O -ffat-lto-objects" 41,45d40 < .byte 0x10 # DW_AT_const_value < .4byte 0x4d6e6b28 # fp or vector constant word 0 < .4byte 0 # fp or vector constant word 1 < .4byte 0 # fp or vector constant word 2 < .4byte 0 # fp or vector constant word 3 115,116d109 < .uleb128 0x1c # (DW_AT_const_value) < .uleb128 0xa # (DW_FORM_block1) This block is missing in the assembler output after the revision. Hmmm. Perhaps it is related to this issue: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77692 >>From gcc-bugs-return-538309-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 20:20:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 47940 invoked by alias); 23 Sep 2016 20:20:03 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 47711 invoked by uid 48); 23 Sep 2016 20:19:50 -0000 From: "acsawdey at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77717] New: testsuite/21_strings/basic_string_view/operations/compare/char/1.cc makes undefined memcmp call Date: Fri, 23 Sep 2016 20:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: acsawdey at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01924.txt.bz2 Content-length: 1466 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77717 Bug ID: 77717 Summary: testsuite/21_strings/basic_string_view/operations/comp are/char/1.cc makes undefined memcmp call Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: acsawdey at gcc dot gnu.org CC: ville.voutilainen at gmail dot com Target Milestone: --- This test case makes an undefined call to memcmp because the string constan= t is shorter than the length given. "costa rica" is 11 bytes including the '\0' = but length of 14 is given. The last two lines of code quoted below both do it. int test01() { using std::string_view; string_view str_0("costa rica"); string_view str_1("costa marbella"); string_view str_2; //sanity check test_value(strcmp("costa marbella", "costa rica"), lt); test_value(strcmp("costa rica", "costa rica"), z); test_value(strcmp(str_1.data(), str_0.data()), lt); test_value(strcmp(str_0.data(), str_1.data()), gt); test_value(strncmp(str_1.data(), str_0.data(), 6), z); test_value(strncmp(str_1.data(), str_0.data(), 14), lt); test_value(memcmp(str_1.data(), str_0.data(), 6), z); test_value(memcmp(str_1.data(), str_0.data(), 14), lt); test_value(memcmp("costa marbella", "costa rica", 14), lt); >>From gcc-bugs-return-538310-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 20:26:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 59330 invoked by alias); 23 Sep 2016 20:26:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 59163 invoked by uid 48); 23 Sep 2016 20:26:13 -0000 From: "seurer at linux dot vnet.ibm.com" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/77416] [7 Regression] LRA rematerializing use of CA reg across function call Date: Fri, 23 Sep 2016 20:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ra, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: seurer at linux dot vnet.ibm.com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: bergner at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01925.txt.bz2 Content-length: 1312 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77416 Bill Seurer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |seurer at linux dot vnet.i= bm.com --- Comment #11 from Bill Seurer --- The new test case works on BE but fails on LE. Executing on host: /home/seurer/gcc/build/gcc-test2/gcc/xgcc -B/home/seurer/gcc/build/gcc-test2/gcc/ /home/seurer/gcc/gcc-test2/gcc/testsuite/gcc.target/powerpc/pr77416.c=20 -fno-diagnostics-show-caret -fdiagnostics-color=3Dnever -mcpu=3Dpower7 -O2= -m32 -ffat-lto-objects -S -o pr77416.s (timeout =3D 300) spawn /home/seurer/gcc/build/gcc-test2/gcc/xgcc -B/home/seurer/gcc/build/gcc-test2/gcc/ /home/seurer/gcc/gcc-test2/gcc/testsuite/gcc.target/powerpc/pr77416.c -fno-diagnostics-show-caret -fdiagnostics-color=3Dnever -mcpu=3Dpower7 -O2 = -m32 -ffat-lto-objects -S -o pr77416.s cc1: error: -m32 not supported in this configuration compiler exited with status 1 output is: cc1: error: -m32 not supported in this configuration FAIL: gcc.target/powerpc/pr77416.c (test for excess errors) Excess errors: cc1: error: -m32 not supported in this configuration >>From gcc-bugs-return-538311-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 20:36:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 75437 invoked by alias); 23 Sep 2016 20:36:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 75266 invoked by uid 48); 23 Sep 2016 20:36:40 -0000 From: "acsawdey at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77685] rs6000 target has builtin expansion for memcpy but not memcmp Date: Fri, 23 Sep 2016 20:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: acsawdey at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: acsawdey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01926.txt.bz2 Content-length: 1210 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77685 --- Comment #1 from acsawdey at gcc dot gnu.org --- fixed in 240455: 2016-09-23 Aaron Sawdey * config/rs6000/rs6000.md (cmpmemsi): New define_expand. * config/rs6000/rs6000.c (expand_block_compare): New function used = by cmpmemsi pattern to do builtin expansion of memcmp (). (compute_current_alignment): Add helper function for expand_block_compare used to compute alignment as the compare proce= eds. (select_block_compare_mode): Used by expand_block_compare to select the mode used for reading the next chunk of bytes in the compare. (do_load_for_compare): Used by expand_block_compare to emit the load insns for the compare. (rs6000_emit_dot_insn): Moved this function to avoid a forward reference from expand_block_compare (). * config/rs6000/rs6000-protos.h (expand_block_compare): Add a prototype for this function. * config/rs6000/rs6000.opt (mblock-compare-inline-limit): Add a new target option for controlling how much code inline expansion of memcmp() will be allowed to generate. >>From gcc-bugs-return-538312-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 20:37:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 77135 invoked by alias); 23 Sep 2016 20:37:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 76140 invoked by uid 55); 23 Sep 2016 20:36:58 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/48298] [F03] User-Defined Derived-Type IO (DTIO) Date: Fri, 23 Sep 2016 20:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 4.7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01927.txt.bz2 Content-length: 4080 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D48298 --- Comment #24 from Jerry DeLisle --- Author: jvdelisle Date: Fri Sep 23 20:36:21 2016 New Revision: 240456 URL: https://gcc.gnu.org/viewcvs?rev=3D240456&root=3Dgcc&view=3Drev Log: 2016-09-23 Jerry DeLisle PR libgfortran/48298 * io/inquire.c (inquire_via_unit): Adjust error check for the two possible internal unit KINDs. * io/io.h: Adjust defines for is_internal_unit and is_char4_unit. (gfc_unit): Add internal unit data to structure. (get_internal_unit): Change declaration to set_internal_unit. (free_internal_unit): Change name to stash_internal_unit_number. (get_unique_unit_number): Adjust parameter argument. Define IOPARM_DT_HAS_UDTIO. (gfc_saved_unit): New structure. * io/list_read.c (next_char_internal): Use is_char4_unit. * io/open.c (st_open): Adjust call to get_unique_unit_number. * io/transfer.c (write_block): Use is_char4_unit. (data_transfer_init): Update check for unit numbers. (st_read_done): Free the various allocated memories used for the internal units and stash the negative unit number and pointer to un= it structure to allow reuse. (st_write_done): Likewise stash the freed unit. * io/unit.c: Create a fixed size buffer of 16 gfc_saved_unit's to u= se as a stack to save newunit unit numbers and unit structure for reus= e. (get_external_unit): Change name to get_gfc_unit to better reflect what it does. (find_unit): Change call to get_gfc_unit. (find_or_create_unit): Likewise. (get_internal_unit): Change name to set_internal_unit. Move internal unit from the dtp structure to the gfc_unit structure so that it can be passed to child I/O statements through the UNIT. (free_internal_unit): Change name to stash_internal_unit_number. Push the common.unit number onto the newunit stack, saving it for possible reuse later. (get_unit): Set the internal unit KIND. Use get_unique_unit_number to get a negative unit number for the internal unit. Use get_gfc_unit to get the unit structure and use set_internal_unit to initialize it. (init_units): Initialize the newunit stack. (get_unique_unit_number): Check the stack for an available unit number and use it. If none there get the next most negative number. (close_units): Free any unit structures pointed to from the save stack. 2016-09-23 Jerry DeLisle PR fortran/48298 * gfortran.h (gfc_dt): Add *udtio. * ioparm.def: Add bit IOPARM_dt_f2003 to align with library use of = bit 25. Add IOPARM_dt_dtio bit to common flags. * resolve.c (resolve_transfer): Set dt->udtio to expression. * io.c (gfc_match_inquire): Adjust error message for internal unit KIND. * libgfortran.h: Adjust defines for GFC_INTERNAL_UNIT4, GFC_INTERNAL_UNIT, and GFC_INVALID_UNIT. * trans-io.c (build_dt): Set common_unit to reflect the KIND of the internal unit. Set mask bit for presence of dt->udtio. 2016-09-23 Jerry DeLisle PR fortran/48298 * gfortran.dg/negative_unit_check.f90: Update test. * gfortran.dg/dtio_14.f90: New test. Added: trunk/gcc/testsuite/gfortran.dg/dtio_14.f90 Modified: trunk/gcc/fortran/ChangeLog trunk/gcc/fortran/gfortran.h trunk/gcc/fortran/io.c trunk/gcc/fortran/ioparm.def trunk/gcc/fortran/libgfortran.h trunk/gcc/fortran/resolve.c trunk/gcc/fortran/trans-io.c trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/gfortran.dg/negative_unit_check.f90 trunk/libgfortran/ChangeLog trunk/libgfortran/io/inquire.c trunk/libgfortran/io/io.h trunk/libgfortran/io/list_read.c trunk/libgfortran/io/open.c trunk/libgfortran/io/transfer.c trunk/libgfortran/io/unit.c >>From gcc-bugs-return-538313-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 20:50:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 101055 invoked by alias); 23 Sep 2016 20:50:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 100365 invoked by uid 48); 23 Sep 2016 20:50:20 -0000 From: "acsawdey at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77718] New: expand_builtin_memcmp swaps args Date: Fri, 23 Sep 2016 20:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: acsawdey at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01928.txt.bz2 Content-length: 2246 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77718 Bug ID: 77718 Summary: expand_builtin_memcmp swaps args Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end Assignee: unassigned at gcc dot gnu.org Reporter: acsawdey at gcc dot gnu.org CC: bernds at gcc dot gnu.org Target Milestone: --- Created attachment 39674 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39674&action=3Dedit test case If you have a memcmp call that has const string args but one or both of them are shorter than the constant length given, the builtin expansion machinery will get called to expand the builtin, but the arguments given are reversed= so the result is unexpected. The attached test will provoke this condition. In expand_buildin_memcmp () the following code is where this happens: by_pieces_constfn constfn =3D NULL; const char *src_str =3D c_getstr (arg1); if (src_str =3D=3D NULL) src_str =3D c_getstr (arg2); else std::swap (arg1_rtx, arg2_rtx); /* If SRC is a string constant and block move would be done by pieces, we can avoid loading the string from memory and only stored the computed constants. */ if (src_str && CONST_INT_P (len_rtx) && (unsigned HOST_WIDE_INT) INTVAL (len_rtx) <=3D strlen (src_str) + = 1) constfn =3D builtin_memcpy_read_str; rtx result =3D emit_block_cmp_hints (arg1_rtx, arg2_rtx, len_rtx, TREE_TYPE (len), target, result_eq, constfn, CONST_CAST (char *, src_str)); If you have arg1 a const str, then you get the swap of arg1_rtx and arg2_rt= x. Normally this would be hidden because ccp folding earlier would have evalua= ted the memcmp to a const value since all args are const. However that folding = does not happen when one/both of the strings are shorter than the given length s= ince that is an undefined situation. Thus we come in here and get this swap but = in this case result_eq won't be set. I think the solution might be to only do the swap when result_eq is set. >>From gcc-bugs-return-538314-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 20:58:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 36954 invoked by alias); 23 Sep 2016 20:58:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35369 invoked by uid 48); 23 Sep 2016 20:58:06 -0000 From: "ville.voutilainen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77717] testsuite/21_strings/basic_string_view/operations/compare/char/1.cc makes undefined memcmp call Date: Fri, 23 Sep 2016 20:58:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ville.voutilainen at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01929.txt.bz2 Content-length: 749 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77717 Ville Voutilainen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-23 Assignee|unassigned at gcc dot gnu.org |ville.voutilainen a= t gmail dot com Ever confirmed|0 |1 --- Comment #1 from Ville Voutilainen = --- Ah, Jonathan fixed the problem for std::experimental::string_view in r23860= 9, we need to apply a similar fix to std::string_view's tests. I'll do that. >>From gcc-bugs-return-538315-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 21:01:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 71264 invoked by alias); 23 Sep 2016 21:01:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 69961 invoked by uid 48); 23 Sep 2016 21:01:07 -0000 From: "ian at airs dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77688] [7 Regression] libgo bootstrap broken on mips*-linux-gnu and sparc*-linux-gnu Date: Fri, 23 Sep 2016 21:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ian at airs dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01930.txt.bz2 Content-length: 433 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77688 Ian Lance Taylor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #1 from Ian Lance Taylor --- Should be fixed now. >>From gcc-bugs-return-538316-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 21:17:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 16413 invoked by alias); 23 Sep 2016 21:17:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 16312 invoked by uid 48); 23 Sep 2016 21:17:40 -0000 From: "segher at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/71109] [6 Regression] gcc ICE at -O3 on valid code on x86_64-linux-gnu in "maybe_record_trace_start" Date: Fri, 23 Sep 2016 21:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: segher at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01931.txt.bz2 Content-length: 437 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71109 Segher Boessenkool changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |segher at gcc dot gnu.org --- Comment #6 from Segher Boessenkool --- I wasn't aware of this bug. I'll have a look. >>From gcc-bugs-return-538317-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 23 21:55:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127550 invoked by alias); 23 Sep 2016 21:55:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126625 invoked by uid 48); 23 Sep 2016 21:54:51 -0000 From: "segher at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/71109] [6 Regression] gcc ICE at -O3 on valid code on x86_64-linux-gnu in "maybe_record_trace_start" Date: Fri, 23 Sep 2016 21:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: segher at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01932.txt.bz2 Content-length: 199 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71109 --- Comment #7 from Segher Boessenkool --- It doesn't fail for me, 6.2.1 20160921 nor 7.0.0 20160914 (experimental). >>From gcc-bugs-return-538318-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 03:33:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 124813 invoked by alias); 24 Sep 2016 03:33:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124525 invoked by uid 48); 24 Sep 2016 03:33:11 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug lto/77716] [7 regression] test case gcc.dg/debug/dwarf2/const-2.c fails starting with r240228 Date: Sat, 24 Sep 2016 03:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: lto X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-debug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01933.txt.bz2 Content-length: 353 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77716 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |wrong-debug Target Milestone|--- |7.0 >>From gcc-bugs-return-538319-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 03:38:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2376 invoked by alias); 24 Sep 2016 03:38:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 758 invoked by uid 48); 24 Sep 2016 03:38:15 -0000 From: "kugan at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77677] [7 Regression] ICE at -O1 and above in both 32-bit and 64-bit modes on x86_64-linux-gnu (internal compiler error: in set_value_range, at tree-vrp.c:361) Date: Sat, 24 Sep 2016 03:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kugan at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01934.txt.bz2 Content-length: 1069 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77677 --- Comment #10 from kugan at gcc dot gnu.org --- (In reply to Pat Haugen from comment #9) > (In reply to kugan from comment #8) > > Author: kugan > > Date: Fri Sep 23 10:25:09 2016 > > New Revision: 240420 > >=20 > > URL: https://gcc.gnu.org/viewcvs?rev=3D240420&root=3Dgcc&view=3Drev > > Log: > > Drop TREE_OVERFLOW > >=20 > > gcc/ChangeLog: > >=20 > > 2016-09-23 Kugan Vivekanandarajah > >=20 > > PR ipa/77677 > > * ipa-cp.c (propagate_vr_accross_jump_function): Drop TREE_OVERFLOW > > from constant while creating value range. >=20 >=20 > Unfortunately this does not fix the problem building 176.gcc on powerpc. > Following is reduced testcase. Failure occurs with 'gcc -O2'. >=20 > enum machine_mode { MAX_MACHINE_MODE }; > struct { > int mode : 8 > } a; > b; > static fn1(); > fn2() { fn1(a, a.mode); } >=20 > fn1(x, mode) enum machine_mode mode; > { int c =3D b =3D c; } Sorry for the breakage. Posted a patch at https://gcc.gnu.org/ml/gcc-patches/2016-09/msg01746.html for this. >>From gcc-bugs-return-538320-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 05:47:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 94375 invoked by alias); 24 Sep 2016 05:47:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 94261 invoked by uid 48); 24 Sep 2016 05:47:43 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/65866] Wrong warning when using list-initialization: operation on 'b' may be undefined [-Wsequence-point] Date: Sat, 24 Sep 2016 05:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.1.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01935.txt.bz2 Content-length: 352 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65866 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |diagnostic Target Milestone|6.3 |--- >>From gcc-bugs-return-538321-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 06:17:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 19502 invoked by alias); 24 Sep 2016 06:17:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 18977 invoked by uid 48); 24 Sep 2016 06:17:36 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/65410] "Short local string array" optimization doesn't happen if string has NULs Date: Sat, 24 Sep 2016 06:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 4.7.2 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01936.txt.bz2 Content-length: 369 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65410 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |missed-optimization Severity|normal |enhancement >>From gcc-bugs-return-538322-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 07:12:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 106861 invoked by alias); 24 Sep 2016 07:12:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 105871 invoked by uid 48); 24 Sep 2016 07:11:56 -0000 From: "tkoenig at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77694] ICE in optimize_binop_array_assignment, at fortran/frontend-passes.c:1080 Date: Sat, 24 Sep 2016 07:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: tkoenig at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01937.txt.bz2 Content-length: 963 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77694 Thomas Koenig changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tkoenig at gcc dot gnu.org --- Comment #4 from Thomas Koenig --- Hi Steve, > Index: frontend-passes.c > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- frontend-passes.c (revision 240220) > +++ frontend-passes.c (working copy) > @@ -1076,6 +1076,9 @@ optimize_binop_array_assignment (gfc_cod > { > gfc_expr *e; >=20=20 > + if (!*rhs) > + return false; > + > e =3D *rhs; > if (e->expr_type =3D=3D EXPR_OP) > { OK for trunk (alternatively, obvious :-). Thanks! >>From gcc-bugs-return-538323-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 07:32:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 19533 invoked by alias); 24 Sep 2016 07:32:35 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 19306 invoked by uid 48); 24 Sep 2016 07:32:21 -0000 From: "Joost.VandeVondele at mat dot ethz.ch" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77719] New: [7 Regression] ICE in pp_string, at pretty-print.c:955 Date: Sat, 24 Sep 2016 07:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: Joost.VandeVondele at mat dot ethz.ch X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01938.txt.bz2 Content-length: 3321 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77719 Bug ID: 77719 Summary: [7 Regression] ICE in pp_string, at pretty-print.c:955 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: Joost.VandeVondele at mat dot ethz.ch Target Milestone: --- recent trunk regression: > cat bug.f90 SUBROUTINE urep_egr(erep,derep,surr) INTEGER, PARAMETER :: dp=3D8 REAL(dp), INTENT(inout) :: erep, derep(3) REAL(dp), INTENT(in) :: surr(2) REAL(dp) :: de_z, rz IF (n_urpoly > 0) THEN IF (r < spxr(1,1)) THEN ispg: DO isp =3D 1,spdim ! condition ca) IF (isp /=3D spdim) THEN nsp =3D 5 ! condition cb DO jsp =3D 0,nsp IF( jsp <=3D 3 ) THEN ELSE erep =3D erep + surr(jsp-3)*rz**(jsp) ENDIF END DO END IF END DO ispg END IF END IF END SUBROUTINE urep_egr > gfortran -c -O3 -ffast-math bug.f90 [...] in pp_string, at pretty-print.c:955 0x14506c6 pp_string ../../gcc/gcc/pretty-print.c:955 0x14506c6 pp_string(pretty_printer*, char const*) ../../gcc/gcc/pretty-print.c:953 0x14514e9 pp_format(pretty_printer*, text_info*) ../../gcc/gcc/pretty-print.c:597 0x14445f1 diagnostic_report_diagnostic(diagnostic_context*, diagnostic_info= *) ../../gcc/gcc/diagnostic.c:941 0x1444e48 diagnostic_impl ../../gcc/gcc/diagnostic.c:1064 0x1444f74 internal_error(char const*, ...) ../../gcc/gcc/diagnostic.c:1349 0x9130f8 gimple_check_failed(gimple const*, char const*, int, char const*, gimple_code, tree_code) ../../gcc/gcc/gimple.c:1177 0xd992d7 GIMPLE_CHECK2 ../../gcc/gcc/gimple.h:73 0xd8a037 gimple_phi_arg ../../gcc/gcc/tree-phinodes.h:37 0xd8a037 gimple_phi_arg_imm_use_ptr ../../gcc/gcc/tree-phinodes.h:37 0xd8a037 op_iter_next_use ../../gcc/gcc/ssa-iterators.h:490 0xd8a037 link_use_stmts_after ../../gcc/gcc/ssa-iterators.h:902 0xd8a037 next_imm_use_stmt ../../gcc/gcc/ssa-iterators.h:955 0xd8a037 make_new_ssa_for_def ../../gcc/gcc/tree-ssa-reassoc.c:1167 0xd8d908 make_new_ssa_for_all_defs ../../gcc/gcc/tree-ssa-reassoc.c:1194 0xd8d908 zero_one_operation ../../gcc/gcc/tree-ssa-reassoc.c:1338 0xd95430 undistribute_ops_list ../../gcc/gcc/tree-ssa-reassoc.c:1684 0xd96178 reassociate_bb ../../gcc/gcc/tree-ssa-reassoc.c:5393 0xd95fa7 reassociate_bb ../../gcc/gcc/tree-ssa-reassoc.c:5528 0xd95fa7 reassociate_bb ../../gcc/gcc/tree-ssa-reassoc.c:5528 Please submit a full bug report, > gfortran -v Using built-in specs. COLLECT_GCC=3Dgfortran COLLECT_LTO_WRAPPER=3D/data/vjoost/gnu/gcc_trunk/install/libexec/gcc/x86_64= -pc-linux-gnu/7.0.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: ../gcc/configure --prefix=3D/data/vjoost/gnu/gcc_trunk/ins= tall --enable-languages=3Dc,c++,fortran --disable-multilib --enable-plugins --enable-lto --disable-bootstrap Thread model: posix gcc version 7.0.0 20160924 (experimental) [trunk revision 240461] (GCC) >>From gcc-bugs-return-538324-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 09:40:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 99834 invoked by alias); 24 Sep 2016 09:40:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 99503 invoked by uid 55); 24 Sep 2016 09:39:58 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77490] bit-not (~) on boolean should be warned about Date: Sat, 24 Sep 2016 09:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: enhancement X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01939.txt.bz2 Content-length: 1114 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77490 --- Comment #3 from Marek Polacek --- Author: mpolacek Date: Sat Sep 24 09:39:23 2016 New Revision: 240462 URL: https://gcc.gnu.org/viewcvs?rev=3D240462&root=3Dgcc&view=3Drev Log: PR c/77490 * c.opt (Wbool-operation): New. * c-typeck.c (build_unary_op): Warn about bit not on expressions th= at have boolean value. Warn about ++/-- on booleans. * typeck.c (cp_build_unary_op): Warn about bit not on expressions t= hat have boolean value. * doc/invoke.texi: Document -Wbool-operation. * c-c++-common/Wbool-operation-1.c: New test. * gcc.dg/Wbool-operation-1.c: New test. Added: trunk/gcc/testsuite/c-c++-common/Wbool-operation-1.c trunk/gcc/testsuite/gcc.dg/Wbool-operation-1.c Modified: trunk/gcc/ChangeLog trunk/gcc/c-family/ChangeLog trunk/gcc/c-family/c.opt trunk/gcc/c/ChangeLog trunk/gcc/c/c-typeck.c trunk/gcc/cp/ChangeLog trunk/gcc/cp/typeck.c trunk/gcc/doc/invoke.texi trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538326-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 09:47:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 108058 invoked by alias); 24 Sep 2016 09:47:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 107921 invoked by uid 48); 24 Sep 2016 09:47:18 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77719] [7 Regression] ICE in pp_string, at pretty-print.c:955 Date: Sat, 24 Sep 2016 09:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: priority bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01941.txt.bz2 Content-length: 582 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77719 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P3 |P4 Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-24 Ever confirmed|0 |1 --- Comment #1 from Dominique d'Humieres --- Revision r240271 is OK, r240403 gives the ICE. >>From gcc-bugs-return-538325-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 09:47:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 107036 invoked by alias); 24 Sep 2016 09:47:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 106763 invoked by uid 48); 24 Sep 2016 09:46:49 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77490] bit-not (~) on boolean should be warned about Date: Sat, 24 Sep 2016 09:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: enhancement X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01940.txt.bz2 Content-length: 428 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77490 Marek Polacek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #4 from Marek Polacek --- Done. >>From gcc-bugs-return-538327-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 09:58:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 78930 invoked by alias); 24 Sep 2016 09:58:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 46241 invoked by uid 48); 24 Sep 2016 09:58:04 -0000 From: "Joost.VandeVondele at mat dot ethz.ch" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77719] [7 Regression] ICE in pp_string, at pretty-print.c:955 Date: Sat, 24 Sep 2016 09:58:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: Joost.VandeVondele at mat dot ethz.ch X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01942.txt.bz2 Content-length: 527 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77719 Joost VandeVondele changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |Joost.VandeVondele at mat = dot ethz | |.ch --- Comment #2 from Joost VandeVondele --- why P4, it is a middle end bug on valid code ? >>From gcc-bugs-return-538328-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 10:03:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 68642 invoked by alias); 24 Sep 2016 10:03:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 68256 invoked by uid 48); 24 Sep 2016 10:03:33 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77719] [7 Regression] ICE in pp_string, at pretty-print.c:955 Date: Sat, 24 Sep 2016 10:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: priority Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01943.txt.bz2 Content-length: 572 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77719 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P4 |P3 --- Comment #3 from Dominique d'Humieres --- > why P4, it is a middle end bug on valid code ? Too much time spent on gfortran regressions, reset to P3! BTW as such I don= 't think the code is valid: spdim is an implicit real used uninitialized. >>From gcc-bugs-return-538329-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 10:12:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 81021 invoked by alias); 24 Sep 2016 10:12:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 80187 invoked by uid 48); 24 Sep 2016 10:11:47 -0000 From: "Joost.VandeVondele at mat dot ethz.ch" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77719] [7 Regression] ICE in pp_string, at pretty-print.c:955 Date: Sat, 24 Sep 2016 10:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: Joost.VandeVondele at mat dot ethz.ch X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01944.txt.bz2 Content-length: 345 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77719 --- Comment #4 from Joost VandeVondele --- (In reply to Dominique d'Humieres from comment #3) > I > don't think the code is valid: spdim is an implicit real used uninitializ= ed. yeah, auto-reduced from valid code. but thanks for confirming, BTW! >>From gcc-bugs-return-538330-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 10:34:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 34623 invoked by alias); 24 Sep 2016 10:34:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34503 invoked by uid 48); 24 Sep 2016 10:34:39 -0000 From: "dimhen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77720] New: -Wformat-length= wit -O3 emit warning twice with incorrect linenumbers Date: Sat, 24 Sep 2016 10:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dimhen at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01945.txt.bz2 Content-length: 2771 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77720 Bug ID: 77720 Summary: -Wformat-length=3D wit -O3 emit warning twice with incorrect linenumbers Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end Assignee: unassigned at gcc dot gnu.org Reporter: dimhen at gmail dot com Target Milestone: --- gcc version 7.0.0 20160922 (experimental) [trunk revision 240342] (GCC)=20 -O2 : warning for baz() -O3 : warning for bar() and baz() but lineno twice points to baz() $ cat x.c int snprintf (char*, __SIZE_TYPE__, const char*, ...); void foo(unsigned j, char *p) { if(j > 999) return; snprintf(p, 4, "%3d", j); } void bar(int j, char *p) { const unsigned k =3D (unsigned) j; if(k > 999) return; snprintf(p, 4, "%3u", k); } void baz(int j, char *p) { if((unsigned)j > 999) return; snprintf(p, 4, "%3u", (unsigned)j); } $ gcc -Wall -c -O2 x.c x.c: In function =E2=80=98baz=E2=80=99: x.c:22:21: warning: =E2=80=98%3u=E2=80=99 directive output may be truncated= writing between 3 and 10 bytes into a region of size 4 [-Wformat-length=3D] snprintf(p, 4, "%3u", (unsigned)j); ^~~ x.c:22:20: note: directive argument in the range [0u, 4294967295u] snprintf(p, 4, "%3u", (unsigned)j); ^~~~~ x.c:22:5: note: format output between 4 and 11 bytes into a destination of = size 4 snprintf(p, 4, "%3u", (unsigned)j); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ $ gcc -Wall -c -O3 x.c x.c: In function =E2=80=98bar=E2=80=99: x.c:22:21: warning: =E2=80=98%3u=E2=80=99 directive output may be truncated= writing between 3 and 10 bytes into a region of size 4 [-Wformat-length=3D] snprintf(p, 4, "%3u", (unsigned)j); ^~~ x.c:22:20: note: directive argument in the range [0u, 4294967295u] snprintf(p, 4, "%3u", (unsigned)j); ^~~~~ x.c:22:5: note: format output between 4 and 11 bytes into a destination of = size 4 snprintf(p, 4, "%3u", (unsigned)j); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ x.c: In function =E2=80=98baz=E2=80=99: x.c:22:21: warning: =E2=80=98%3u=E2=80=99 directive output may be truncated= writing between 3 and 10 bytes into a region of size 4 [-Wformat-length=3D] snprintf(p, 4, "%3u", (unsigned)j); ^~~ x.c:22:20: note: directive argument in the range [0u, 4294967295u] snprintf(p, 4, "%3u", (unsigned)j); ^~~~~ x.c:22:5: note: format output between 4 and 11 bytes into a destination of = size 4 snprintf(p, 4, "%3u", (unsigned)j); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >>From gcc-bugs-return-538331-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 10:40:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 40052 invoked by alias); 24 Sep 2016 10:40:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 39842 invoked by uid 48); 24 Sep 2016 10:40:34 -0000 From: "dimhen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77721] New: -Wformat-length not uses arg range for converted vars Date: Sat, 24 Sep 2016 10:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dimhen at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01946.txt.bz2 Content-length: 1381 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77721 Bug ID: 77721 Summary: -Wformat-length not uses arg range for converted vars Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end Assignee: unassigned at gcc dot gnu.org Reporter: dimhen at gmail dot com Target Milestone: --- gcc version 7.0.0 20160922 (experimental) [trunk revision 240342] (GCC) no warns in foo() but warns in bar() $ cat x.c int snprintf (char*, __SIZE_TYPE__, const char*, ...); void foo(unsigned j, char *p) { if(j > 999) return; snprintf(p, 4, "%3u", j); } void bar(int j, char *p) { const unsigned k =3D (unsigned) j; if(k > 999) return; snprintf(p, 4, "%3u", k); } $ gcc -Wall -c -O2 x.c x.c: In function =E2=80=98bar=E2=80=99: x.c:15:21: warning: =E2=80=98%3u=E2=80=99 directive output may be truncated= writing between 3 and 10 bytes into a region of size 4 [-Wformat-length=3D] snprintf(p, 4, "%3u", k); ^~~ x.c:15:20: note: directive argument in the range [0u, 4294967295u] snprintf(p, 4, "%3u", k); ^~~~~ x.c:15:5: note: format output between 4 and 11 bytes into a destination of = size 4 snprintf(p, 4, "%3u", k); ^~~~~~~~~~~~~~~~~~~~~~~~ >>From gcc-bugs-return-538332-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 11:18:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69535 invoked by alias); 24 Sep 2016 11:18:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 69351 invoked by uid 48); 24 Sep 2016 11:18:14 -0000 From: "jamespharvey20 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77722] New: -fsanitize=undefined doesn't give runtime error in function without return value, unless at least 2 instructions Date: Sat, 24 Sep 2016 11:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jamespharvey20 at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01947.txt.bz2 Content-length: 1295 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77722 Bug ID: 77722 Summary: -fsanitize=3Dundefined doesn't give runtime error in function without return value, unless at least 2 instructions Product: gcc Version: 6.2.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: jamespharvey20 at gmail dot com Target Milestone: --- [test.cpp] ---------- int func() { } int main() { func(); } ---------- $ g++ test.cpp -fsanitize=3Dundefined -O0 $ ./a.out (No runtime error) ---------- int func() { int a =3D 5; } ---------- $ ./a.out (No runtime error) ---------- int func() { int a =3D 5; int b =3D 5; } ---------- $ ./a.out test.cpp:1:5: runtime error: execution reached the end of a value-returning function without returning a value I'm not sure what (if any) relation there is in the gcc to clang fsanitize code. But, clang 3.8.1's fsanitize=3Dundefined gives a runtime error on al= l 3 above versions of func(). As a note, -Wreturn-type does issue a warning even for an empty version of func(), so it does catch the situation, but fsanitize=3Dundefined does not. >>From gcc-bugs-return-538333-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 11:36:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 107186 invoked by alias); 24 Sep 2016 11:36:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 107131 invoked by uid 48); 24 Sep 2016 11:36:32 -0000 From: "jamespharvey20 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug preprocessor/77723] New: Macro counts each element within brace-initialization as argument to macro Date: Sat, 24 Sep 2016 11:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: preprocessor X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jamespharvey20 at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01948.txt.bz2 Content-length: 2800 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77723 Bug ID: 77723 Summary: Macro counts each element within brace-initialization as argument to macro Product: gcc Version: 6.2.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: preprocessor Assignee: unassigned at gcc dot gnu.org Reporter: jamespharvey20 at gmail dot com Target Milestone: --- [test.cpp] ---------- #define MAC(arg) arg class foo { public: foo(int a, int b) { }; }; int main() { foo x =3D MAC(foo(1,2)); foo y =3D MAC((foo{1,2})); foo z =3D MAC(foo{1,2}); } ---------- $ g++ -std=3Dc++11 test.cpp test.cpp:11:25: error: macro "MAC" passed 2 arguments, but takes just 1 foo z =3D MAC(foo{5, 7}); ^ test.cpp: In function =E2=80=98int main()=E2=80=99: test.cpp:11:12: error: =E2=80=98MAC=E2=80=99 was not declared in this scope foo z =3D MAC(foo{5, 7}); ^~~ Note the brace-initialization on y and z. The preprocessor appears to know= to not count commas within parentheses, but appears to count them within brace-initialization. Note y compiles because of the additional parentheses that encapsulate the construction. I saw a stackoverflow comment where someone said this is caused because the preprocessor standard was never updated after c++11's brace-initialization,= and isn't aware of whether c++ or c++11 is even being used, so this is a standa= rds issue rather than a compiler issue. I write for two reasons. First, I hope that is wrong, or even if correct, that g++ would fix this. = The additional parentheses prevents a macro from performing expression decomposition, such as within catch (the unit test framework) or lest (anot= her unit test framework), which uses a macro with an argument of an expression,= and is able to output both the text of the expression, and the expression with = the values substituted in. With the parentheses, it sees the whole argument as either true or false, not looking inside. Second, if g++ won't fix unless the standard is updated, clang++ gives a helpful note that g++ doesn't, as shown below, which would be nice to add to g++. FWIW, clang++ also compiles x and y, but fails on z. BUT, it at least give= s a helpful note that g++ doesn't: $ clang++ -std=3Dc++11 test.cpp test.cpp:11:23: error: too many arguments provided to function-like macro invocation foo z =3D MAC(foo{5, 7}); ^ test.cpp:1:9: note: macro 'MAC' defined here #define MAC(arg) arg ^ test.cpp:11:12: note: parentheses are required around macro argument contai= ning braced initializer list foo z =3D MAC(foo{5, 7}); ^ ( ) >>From gcc-bugs-return-538335-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 13:33:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 32876 invoked by alias); 24 Sep 2016 13:33:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 32140 invoked by uid 48); 24 Sep 2016 13:33:36 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/60880] Wrong assert in promote_duplicated_reg in i386.c Date: Sat, 24 Sep 2016 13:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01950.txt.bz2 Content-length: 142 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60880 --- Comment #1 from Andrew Pinski --- Has this been fixed? >>From gcc-bugs-return-538334-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 13:33:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 32141 invoked by alias); 24 Sep 2016 13:33:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 32017 invoked by uid 48); 24 Sep 2016 13:33:23 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/60889] -Os generate much bigger code Date: Sat, 24 Sep 2016 13:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cf_gcctarget component Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01949.txt.bz2 Content-length: 597 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60889 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |missed-optimization Target| |x86_64-*-* Component|middle-end |target --- Comment #1 from Andrew Pinski --- There are now different parameters for SRA if defined but I don't think the= x86 back-end defines them. >>From gcc-bugs-return-538336-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 13:36:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35615 invoked by alias); 24 Sep 2016 13:36:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35415 invoked by uid 48); 24 Sep 2016 13:36:29 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/60888] x86 vector widen multiplication by constant is not replaced with shift and sub Date: Sat, 24 Sep 2016 13:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01951.txt.bz2 Content-length: 300 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60888 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |enhancement >>From gcc-bugs-return-538337-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 13:45:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 60101 invoked by alias); 24 Sep 2016 13:45:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 47730 invoked by uid 48); 24 Sep 2016 13:45:44 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/61064] ARM G++ compiler mis-optimizes safe Abs function Date: Sat, 24 Sep 2016 13:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01952.txt.bz2 Content-length: 473 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61064 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |INVALID --- Comment #2 from Andrew Pinski --- No feedback in over 2 years so closing as invalid. >>From gcc-bugs-return-538338-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 13:51:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76950 invoked by alias); 24 Sep 2016 13:51:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 76813 invoked by uid 48); 24 Sep 2016 13:51:00 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/61171] vectorization fails for a reduction in presence of subtraction Date: Sat, 24 Sep 2016 13:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01953.txt.bz2 Content-length: 300 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61171 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |enhancement >>From gcc-bugs-return-538339-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 14:33:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69773 invoked by alias); 24 Sep 2016 14:33:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 69644 invoked by uid 48); 24 Sep 2016 14:33:33 -0000 From: "edlinger at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/77714] Wrong code generation for gcc.c-torture/execute/pr51447.c Date: Sat, 24 Sep 2016 14:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ra, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: edlinger at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01954.txt.bz2 Content-length: 1496 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77714 Bernd Edlinger changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-24 Ever confirmed|0 |1 --- Comment #2 from Bernd Edlinger --- Maybe you can try this: Index: lra-eliminations.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- lra-eliminations.c (revision 240437) +++ lra-eliminations.c (working copy) @@ -973,11 +973,11 @@ up. */ validate_change (insn, &SET_SRC (old_set), src, 1); validate_change (insn, &SET_DEST (old_set), - ep->from_rtx, 1); + ep->to_rtx, 1); if (! apply_change_group ()) { SET_SRC (old_set) =3D src; - SET_DEST (old_set) =3D ep->from_rtx; + SET_DEST (old_set) =3D ep->to_rtx; } lra_update_insn_recog_data (insn); /* Add offset note for future updates. */ >>From gcc-bugs-return-538340-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 15:39:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 78494 invoked by alias); 24 Sep 2016 15:39:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 78388 invoked by uid 48); 24 Sep 2016 15:38:51 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77724] New: [7 Regression] bootstrap-O3 broken: ICE: in tree_to_uhwi, at tree.c:7330 Date: Sat, 24 Sep 2016 15:39:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01955.txt.bz2 Content-length: 1772 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77724 Bug ID: 77724 Summary: [7 Regression] bootstrap-O3 broken: ICE: in tree_to_uhwi, at tree.c:7330 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: trippels at gcc dot gnu.org Target Milestone: --- markus@x4 libquadmath % cat strtoflt128.i int a[81]; int b, c; __float128 fn1(nptr, endptr, group) int nptr; int endptr; int group; { int d =3D b; for (; c; --c) a[c + d] =3D a[c]; return 0; } markus@x4 libquadmath % gcc -O3 -c strtoflt128.i strtoflt128.i: In function =E2=80=98fn1=E2=80=99: strtoflt128.i:3:12: internal compiler error: in tree_to_uhwi, at tree.c:7330 __float128 fn1(nptr, endptr, group) int nptr; ^~~ 0xe5f30a tree_to_uhwi(tree_node const*) ../../gcc/gcc/tree.c:7330 0xe204a6 create_intersect_range_checks_index ../../gcc/gcc/tree-vect-loop-manip.c:2313 0xe204a6 create_intersect_range_checks ../../gcc/gcc/tree-vect-loop-manip.c:2412 0xe204a6 vect_create_cond_for_alias_checks(_loop_vec_info*, tree_node**) ../../gcc/gcc/tree-vect-loop-manip.c:2500 0xe21b62 vect_loop_versioning(_loop_vec_info*, unsigned int, bool) ../../gcc/gcc/tree-vect-loop-manip.c:2574 0xe11107 vect_transform_loop(_loop_vec_info*) ../../gcc/gcc/tree-vect-loop.c:6780 0xe311e4 vectorize_loops() ../../gcc/gcc/tree-vectorizer.c:585 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See for instructions. >>From gcc-bugs-return-538341-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 15:43:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 103665 invoked by alias); 24 Sep 2016 15:43:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 103510 invoked by uid 48); 24 Sep 2016 15:43:06 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77724] [7 Regression] bootstrap-O3 broken: ICE: in tree_to_uhwi, at tree.c:7330 Date: Sat, 24 Sep 2016 15:43:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build, ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01956.txt.bz2 Content-length: 366 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77724 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |build, ice-on-valid-code Target Milestone|--- |7.0 >>From gcc-bugs-return-538342-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 15:45:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 105763 invoked by alias); 24 Sep 2016 15:45:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 105622 invoked by uid 48); 24 Sep 2016 15:45:07 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77724] [7 Regression] bootstrap-O3 broken: ICE: in tree_to_uhwi, at tree.c:7330 Date: Sat, 24 Sep 2016 15:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build, ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01957.txt.bz2 Content-length: 598 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77724 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-24 Ever confirmed|0 |1 --- Comment #1 from Markus Trippelsdorf --- Cleaned up testcase: int a[81]; int b, c; void fn1() { int d =3D b; for (; c; --c) a[c + d] =3D a[c]; } >>From gcc-bugs-return-538343-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 15:49:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 109429 invoked by alias); 24 Sep 2016 15:49:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 109201 invoked by uid 48); 24 Sep 2016 15:49:26 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77724] [7 Regression] bootstrap-O3 broken: ICE: in tree_to_uhwi, at tree.c:7330 Date: Sat, 24 Sep 2016 15:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build, ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01958.txt.bz2 Content-length: 766 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77724 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |amker at gcc dot gnu.org --- Comment #2 from Markus Trippelsdorf --- Started with r240412: commit 2227160d6674e3e822a8d74c2d24452e3dc7eea1 Author: amker Date: Fri Sep 23 09:47:52 2016 +0000 * tree-vect-loop-manip.c (create_intersect_range_checks_index): New. (create_intersect_range_checks): New. (vect_create_cond_for_alias_checks): Call above function. >>From gcc-bugs-return-538344-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 15:50:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110487 invoked by alias); 24 Sep 2016 15:50:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 110237 invoked by uid 48); 24 Sep 2016 15:49:52 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/60563] FAIL: g++.dg/ext/sync-4.C on *-apple-darwin* Date: Sat, 24 Sep 2016 15:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01959.txt.bz2 Content-length: 1307 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60563 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mrs at gcc dot gnu.org --- Comment #12 from Dominique d'Humieres --- > Filed radr://19802258 and uploaded a standalone test case for the darwin > linker developer to debug with. No progress after more than two years and a half. Is there any objection to submit the following patch? --- ../_clean/gcc/testsuite/g++.dg/ext/sync-4.C 2015-04-30 23:36:40.0000000= 00 +0200 +++ gcc/testsuite/g++.dg/ext/sync-4.C 2016-09-24 17:48:44.000000000 +0200 @@ -2,6 +2,8 @@ /* { dg-require-effective-target sync_long_long_runtime } */ /* { dg-options "-fexceptions -fnon-call-exceptions -O2" } */ /* { dg-additional-options "-march=3Dpentium" { target { { i?86-*-* x86_64= -*-* } && ia32 } } } */ +/* FIXME The following additional option should be removed after the fix f= or radr://19802258. +/* { dg-additional-options "-fno-align-functions" { target { *-*-darwin* }= } } */ /* Verify that the builtin functions are correctly marked as trapping when using -fnon-call-exceptions. */ >>From gcc-bugs-return-538345-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 16:22:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 67204 invoked by alias); 24 Sep 2016 16:22:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 67111 invoked by uid 48); 24 Sep 2016 16:22:21 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug ipa/60674] missed devirtualization in function called by destructor Date: Sat, 24 Sep 2016 16:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: ipa X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01960.txt.bz2 Content-length: 300 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60674 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |enhancement >>From gcc-bugs-return-538346-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 16:25:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 70343 invoked by alias); 24 Sep 2016 16:25:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 69804 invoked by uid 48); 24 Sep 2016 16:24:59 -0000 From: "tulipawn at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/53659] ARM: Using -mcpu=cortex-a9 option results in bad performance for Cortex-A9 processor in C-Ray phoronix benchmark Date: Sat, 24 Sep 2016 16:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: tulipawn at gmail dot com X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01961.txt.bz2 Content-length: 829 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D53659 --- Comment #6 from PeteVine --- Testing different 32-bit codegen options in aarch32 mode on a Cortex A53, s= hows A15 is probably also affected. Full comparison below: $ for i in 8 5 7 9 15 ; do gcc -marm -Ofast -o c-ray-a$i c-ray-mt.c -lm=20 -lpthread -mcpu=3Dcortex-a$i; done $ for i in 8 5 7 9 15 ; do echo Cortex-A$i ; ./c-ray-a$i -t 32 -s 160x120 = -r 8 -i sphfract -o output.ppm ; done Cortex-A8 c-ray-mt v1.1 Rendering took: 1 seconds (1660 milliseconds) Cortex-A5 c-ray-mt v1.1 Rendering took: 1 seconds (1638 milliseconds) Cortex-A7 c-ray-mt v1.1 Rendering took: 1 seconds (1645 milliseconds) Cortex-A9 c-ray-mt v1.1 Rendering took: 2 seconds (2027 milliseconds) Cortex-A15 c-ray-mt v1.1 Rendering took: 1 seconds (1922 milliseconds) >>From gcc-bugs-return-538347-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 16:55:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 59719 invoked by alias); 24 Sep 2016 16:55:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 59585 invoked by uid 48); 24 Sep 2016 16:55:13 -0000 From: "ilaizi at microsoft dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77725] New: An example from the standard regarding member lookup fails to compile Date: Sat, 24 Sep 2016 16:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: ilaizi at microsoft dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01962.txt.bz2 Content-length: 2316 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77725 Bug ID: 77725 Summary: An example from the standard regarding member lookup fails to compile Product: gcc Version: 6.1.0 Status: UNCONFIRMED Severity: major Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: ilaizi at microsoft dot com Target Milestone: --- Example of valid code from the standard (10.2.7 Member name lookup [class.member.lookup]) compiled with command: "g++ -std=3Dc++11 main.cpp && ./a.out" on Linux compiler version: g++ (GCC) 6.1.0 Copyright (C) 2016 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D struct A { int x; }; // S(x,A) =3D { { A::x }, { A } } struct B { float x; }; // S(x,B) =3D { { B::x }, { B } } struct C: public A, public B { }; // S(x,C) =3D { invalid, { A in C, = B in C } } struct D: public virtual C { }; // S(x,D) =3D S(x,C) struct E: public virtual C { char x; }; // S(x,E) =3D { { E::x }, { E } } struct F: public D, public E { }; // S(x,F) =3D S(x,E) int main()=20 { F f; f.x =3D 0; // OK, lookup finds E::x } =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D Error message: main.cpp: In function 'int main()': main.cpp:11:6: error: request for member 'x' is ambiguous f.x =3D 0; // OK, lookup finds E::x ^ main.cpp:2:18: note: candidates are: float B::x struct B { float x; }; // S(x,B) =3D { { B::x }, { B } } ^ main.cpp:1:16: note: int A::x struct A { int x; }; // S(x,A) =3D { { A::x }, { A } } ^ >>From gcc-bugs-return-538348-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 17:23:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 83657 invoked by alias); 24 Sep 2016 17:23:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 83531 invoked by uid 48); 24 Sep 2016 17:23:10 -0000 From: "lh_mouse at 126 dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77726] New: On MinGW targets, user-defined `operator delete(void *)` is not called if the sized-deallocation version is not provided in C++14 mode when libstdc++ is linked dynamically Date: Sat, 24 Sep 2016 17:23:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: lh_mouse at 126 dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01963.txt.bz2 Content-length: 3193 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77726 Bug ID: 77726 Summary: On MinGW targets, user-defined `operator delete(void *)` is not called if the sized-deallocation version is not provided in C++14 mode when libstdc++ is linked dynamically Product: gcc Version: 6.2.1 Status: UNCONFIRMED Severity: major Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: lh_mouse at 126 dot com Target Milestone: --- Testcase: E:\Desktop>cat test.cc void *operator new(__SIZE_TYPE__ cb){ auto p =3D __builtin_malloc(cb); __builtin_printf("%s: %p\n", __PRETTY_FUNCTION__, p); return p; } void operator delete(void *p) noexcept { __builtin_printf("%s: %p\n", __PRETTY_FUNCTION__, p); __builtin_free(p); } #if 0 void operator delete(void *p, __SIZE_TYPE__ cb) noexcept { __builtin_printf("%s: %p, %lu\n", __PRETTY_FUNCTION__, p, (unsigned long)cb); __builtin_free(p); } #endif int main(){ delete new int; } E:\Desktop>g++ test.cc -std=3Dc++14 -Wall -Wextra -pedantic test.cc:6:6: warning: the program should also define 'void operator delete(void*, unsigned int)' [-Wsized-deallocation] void operator delete(void *p) noexcept { ^~~~~~~~ E:\Desktop>a.exe void* operator new(unsigned int): 003F6FA0 E:\Desktop>g++ test.cc -std=3Dc++14 -Wall -Wextra -pedantic -static test.cc:6:6: warning: the program should also define 'void operator delete(void*, unsigned int)' [-Wsized-deallocation] void operator delete(void *p) noexcept { ^~~~~~~~ E:\Desktop>a.exe void* operator new(unsigned int): 007C6CF8 void operator delete(void*): 007C6CF8 E:\Desktop>g++ -v Using built-in specs. COLLECT_GCC=3Dg++ COLLECT_LTO_WRAPPER=3DC:/MinGW/MSYS2/mingw32/lib/gcc/i686-w64-mingw32/6.2.1= /lto-wrapper.exe Target: i686-w64-mingw32 Configured with: ../gcc/configure --prefix=3D/mingw32 --with-local-prefix=3D/mingw32/local --build=3Di686-w64-mingw32 --host=3Di686-w64-mingw32 --target=3Di686-w64-mingw32 --with-native-system-header-dir=3D/mingw 32/i686-w64-mingw32/include --libexecdir=3D/mingw32/lib --enable-bootstrap --with-arch=3Di686 --with-tune=3Dgeneric --enable-languages=3Dc,lto,c++ --enable-shared --enable-static --enable-libatomic --enable-t hreads=3Dmcf --enable-graphite --enable-fully-dynamic-string --enable-libstdcxx-time=3Dyes --disable-libstdcxx-pch --disable-libstdcxx-d= ebug --disable-isl-version-check --enable-lto --enable-libgomp --dis able-multilib --enable-checking=3Drelease --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-libiconv --with-system-zlib --with-gmp=3D/mingw32 --with-mpfr=3D/mi ngw32 --with-mpc=3D/mingw32 --with-isl=3D/mingw32 --with-pkgversion=3D'gcc-= 6-branch HEAD with MCF thread model, built by LH_Mouse.' --with-bugurl=3Dhttp://github.lhmouse.com/ --with-gnu-as --with-gnu-ld --dis able-tls --disable-sjlj-exceptions --with-dwarf2 Thread model: mcf gcc version 6.2.1 20160924 (gcc-6-branch HEAD with MCF thread model, built = by LH_Mouse.) >>From gcc-bugs-return-538349-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 18:52:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 112541 invoked by alias); 24 Sep 2016 18:52:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 112420 invoked by uid 48); 24 Sep 2016 18:52:36 -0000 From: "kugan at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77719] [7 Regression] ICE in pp_string, at pretty-print.c:955 Date: Sat, 24 Sep 2016 18:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kugan at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01964.txt.bz2 Content-length: 3401 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77719 kugan at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kugan at gcc dot gnu.org --- Comment #5 from kugan at gcc dot gnu.org --- (In reply to Joost VandeVondele from comment #0) > recent trunk regression: >=20 > > cat bug.f90 > SUBROUTINE urep_egr(erep,derep,surr) > INTEGER, PARAMETER :: dp=3D8 > REAL(dp), INTENT(inout) :: erep, derep(3) > REAL(dp), INTENT(in) :: surr(2) > REAL(dp) :: de_z, rz > IF (n_urpoly > 0) THEN > IF (r < spxr(1,1)) THEN > ispg: DO isp =3D 1,spdim ! condition ca) > IF (isp /=3D spdim) THEN > nsp =3D 5 ! condition cb > DO jsp =3D 0,nsp > IF( jsp <=3D 3 ) THEN > ELSE > erep =3D erep + surr(jsp-3)*rz**(jsp) > ENDIF > END DO > END IF > END DO ispg > END IF > END IF > END SUBROUTINE urep_egr >=20 > > gfortran -c -O3 -ffast-math bug.f90 > [...] > in pp_string, at pretty-print.c:955 > 0x14506c6 pp_string > ../../gcc/gcc/pretty-print.c:955 > 0x14506c6 pp_string(pretty_printer*, char const*) > ../../gcc/gcc/pretty-print.c:953 > 0x14514e9 pp_format(pretty_printer*, text_info*) > ../../gcc/gcc/pretty-print.c:597 > 0x14445f1 diagnostic_report_diagnostic(diagnostic_context*, diagnostic_in= fo*) > ../../gcc/gcc/diagnostic.c:941 > 0x1444e48 diagnostic_impl > ../../gcc/gcc/diagnostic.c:1064 > 0x1444f74 internal_error(char const*, ...) > ../../gcc/gcc/diagnostic.c:1349 > 0x9130f8 gimple_check_failed(gimple const*, char const*, int, char const*, > gimple_code, tree_code) > ../../gcc/gcc/gimple.c:1177 > 0xd992d7 GIMPLE_CHECK2 > ../../gcc/gcc/gimple.h:73 > 0xd8a037 gimple_phi_arg > ../../gcc/gcc/tree-phinodes.h:37 > 0xd8a037 gimple_phi_arg_imm_use_ptr > ../../gcc/gcc/tree-phinodes.h:37 > 0xd8a037 op_iter_next_use > ../../gcc/gcc/ssa-iterators.h:490 > 0xd8a037 link_use_stmts_after > ../../gcc/gcc/ssa-iterators.h:902 > 0xd8a037 next_imm_use_stmt > ../../gcc/gcc/ssa-iterators.h:955 > 0xd8a037 make_new_ssa_for_def > ../../gcc/gcc/tree-ssa-reassoc.c:1167 > 0xd8d908 make_new_ssa_for_all_defs > ../../gcc/gcc/tree-ssa-reassoc.c:1194 > 0xd8d908 zero_one_operation > ../../gcc/gcc/tree-ssa-reassoc.c:1338 > 0xd95430 undistribute_ops_list > ../../gcc/gcc/tree-ssa-reassoc.c:1684 > 0xd96178 reassociate_bb > ../../gcc/gcc/tree-ssa-reassoc.c:5393 > 0xd95fa7 reassociate_bb > ../../gcc/gcc/tree-ssa-reassoc.c:5528 > 0xd95fa7 reassociate_bb > ../../gcc/gcc/tree-ssa-reassoc.c:5528 > Please submit a full bug report, >=20 > > gfortran -v > Using built-in specs. > COLLECT_GCC=3Dgfortran > COLLECT_LTO_WRAPPER=3D/data/vjoost/gnu/gcc_trunk/install/libexec/gcc/x86_= 64-pc- > linux-gnu/7.0.0/lto-wrapper > Target: x86_64-pc-linux-gnu > Configured with: ../gcc/configure > --prefix=3D/data/vjoost/gnu/gcc_trunk/install --enable-languages=3Dc,c++,= fortran > --disable-multilib --enable-plugins --enable-lto --disable-bootstrap > Thread model: posix > gcc version 7.0.0 20160924 (experimental) [trunk revision 240461] (GCC) Sorry for the breakage. Sent a patch to fix this at https://gcc.gnu.org/ml/gcc-patches/2016-09/msg01760.html. >>From gcc-bugs-return-538350-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 20:13:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 20245 invoked by alias); 24 Sep 2016 20:13:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 20118 invoked by uid 48); 24 Sep 2016 20:13:32 -0000 From: "tomaszkam at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77727] New: Unwrapping std::optional constructor is not working for non-transferable object Date: Sat, 24 Sep 2016 20:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: tomaszkam at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01965.txt.bz2 Content-length: 1334 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77727 Bug ID: 77727 Summary: Unwrapping std::optional constructor is not working for non-transferable object Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: tomaszkam at gmail dot com Target Milestone: --- The following code does not compile: #include struct NonTransferable { NonTransferable(int) {} NonTransferable(NonTransferable&&) =3D delete; NonTransferable& operator=3D(NonTransferable&&) =3D delete; }; int main() { std::optional oi; std::optional ot(std::move(oi)); std::optional oi2(10); std::optional ot2(oi2); } Both the construction of the ot and ot2 shall be well-formed according to specification from http://cplusplus.github.io/LWG/lwg-active.html#2756 and call: optional::optional(optional&&); optional::optional(optional const&); constructors respectively as: is_constructible_v is_constructible_v are true, and the NonTransferable class cannot be constructed/converted from optional. >>From gcc-bugs-return-538351-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 20:55:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 41522 invoked by alias); 24 Sep 2016 20:55:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 40962 invoked by uid 48); 24 Sep 2016 20:54:49 -0000 From: "krichter at posteo dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug other/61439] contrib/download_prerequisites script does not verify integrity of packages Date: Sat, 24 Sep 2016 20:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: other X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: krichter at posteo dot de X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01966.txt.bz2 Content-length: 545 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61439 krichter at posteo dot de changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |krichter at posteo dot de --- Comment #6 from krichter at posteo dot de --- Has this been reviewed/merged yet? It'd be really appreciated. Pinging based on [GCC patch tracking infos](https://gcc.gnu.org/wiki/GCC_Patch_Tracking) which say it's fine to annoy maintainers :) >>From gcc-bugs-return-538352-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 21:11:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 56943 invoked by alias); 24 Sep 2016 21:11:03 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 56758 invoked by uid 48); 24 Sep 2016 21:10:46 -0000 From: "moritz at klammler dot eu" To: gcc-bugs@gcc.gnu.org Subject: [Bug other/61439] contrib/download_prerequisites script does not verify integrity of packages Date: Sat, 24 Sep 2016 21:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: other X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: moritz at klammler dot eu X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01967.txt.bz2 Content-length: 179 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61439 --- Comment #7 from Moritz Klammler --- https://gcc.gnu.org/ml/gcc-patches/2016-09/msg00606.html >>From gcc-bugs-return-538353-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 22:09:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 126196 invoked by alias); 24 Sep 2016 22:09:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126097 invoked by uid 48); 24 Sep 2016 22:09:00 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug lto/65274] Internal compiler error: should die in combat Date: Sat, 24 Sep 2016 22:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: lto X-Bugzilla-Version: 4.9.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01968.txt.bz2 Content-length: 436 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65274 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |INVALID --- Comment #5 from Andrew Pinski --- Closing then. >>From gcc-bugs-return-538354-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 22:14:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 11546 invoked by alias); 24 Sep 2016 22:14:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 129936 invoked by uid 48); 24 Sep 2016 22:14:03 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/65191] keep interesting core files and remove others Date: Sat, 24 Sep 2016 22:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01969.txt.bz2 Content-length: 619 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65191 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |INVALID --- Comment #4 from Andrew Pinski --- I don't think this is a good thing. In fact it is a bad thing as you could= run out of space due to the core file multiples. If you have a failure you can= run it manually to debug it anyways. >>From gcc-bugs-return-538355-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 22:19:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 30316 invoked by alias); 24 Sep 2016 22:19:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30206 invoked by uid 48); 24 Sep 2016 22:19:16 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/64960] Inefficient address pre-computation in PIC mode Date: Sat, 24 Sep 2016 22:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01970.txt.bz2 Content-length: 300 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D64960 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |enhancement >>From gcc-bugs-return-538356-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 22:26:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 43277 invoked by alias); 24 Sep 2016 22:26:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 43159 invoked by uid 48); 24 Sep 2016 22:26:24 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug preprocessor/60961] recipe for target 'doc/cpp.info' failed Date: Sat, 24 Sep 2016 22:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: preprocessor X-Bugzilla-Version: 4.6.2 X-Bugzilla-Keywords: documentation X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status component resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01971.txt.bz2 Content-length: 615 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60961 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |documentation Status|UNCONFIRMED |RESOLVED Component|c++ |preprocessor Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as we won't fix unsupported released any more. >>From gcc-bugs-return-538357-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 22:27:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 44167 invoked by alias); 24 Sep 2016 22:27:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 44046 invoked by uid 48); 24 Sep 2016 22:26:56 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/60962] b+(-2.f)*a generates multiplication instruction while b-2.f*a simplifies to addition&subtraction Date: Sat, 24 Sep 2016 22:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 4.8.1 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01972.txt.bz2 Content-length: 300 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60962 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |enhancement >>From gcc-bugs-return-538358-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 23:44:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 124049 invoked by alias); 24 Sep 2016 23:44:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123830 invoked by uid 48); 24 Sep 2016 23:43:48 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/65084] Lack of type narrowing/widening inhibits good vectorization Date: Sat, 24 Sep 2016 23:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: unknown X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords blocked bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01973.txt.bz2 Content-length: 552 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65084 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |missed-optimization Blocks| |53947 Severity|normal |enhancement Referenced Bugs: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D53947 [Bug 53947] [meta-bug] vectorizer missed-optimizations >>From gcc-bugs-return-538359-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Sep 24 23:45:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125346 invoked by alias); 24 Sep 2016 23:45:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125102 invoked by uid 48); 24 Sep 2016 23:44:52 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/65122] std::vector doesn't honor element alignment Date: Sat, 24 Sep 2016 23:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01974.txt.bz2 Content-length: 181 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65122 --- Comment #17 from Andrew Pinski --- I think this is fixed for GCC 7 with -std=3Dc++17 support. >>From gcc-bugs-return-538360-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 01:33:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 90561 invoked by alias); 25 Sep 2016 01:33:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 90248 invoked by uid 48); 25 Sep 2016 01:33:00 -0000 From: "yyc1992 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77728] New: Miscompilation multiple vector iteration on ARM Date: Sun, 25 Sep 2016 01:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: yyc1992 at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01975.txt.bz2 Content-length: 2482 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77728 Bug ID: 77728 Summary: Miscompilation multiple vector iteration on ARM Product: gcc Version: 6.2.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: yyc1992 at gmail dot com Target Milestone: --- Code to reproduce is at https://gist.github.com/yuyichao/a66edb9d05d18755fb7587b12e021a8a. The two = cpp files are ```c++ #include #include typedef std::vector> DWARFAddressRangesVector; void dumpRanges(const DWARFAddressRangesVector& Ranges) { for (const auto &Range: Ranges) { (void)Range; } } void collectChildrenAddressRanges(DWARFAddressRangesVector& Ranges) { const DWARFAddressRangesVector &DIERanges =3D DWARFAddressRangesVector(= ); Ranges.insert(Ranges.end(), DIERanges.begin(), DIERanges.end()); } ``` ```c++ #include #include typedef std::vector> DWARFAddressRangesVector; void collectAddressRanges(DWARFAddressRangesVector &CURanges, const DWARFAddressRangesVector &CUDIERanges) { CURanges.insert(CURanges.end(), CUDIERanges.begin(), CUDIERanges.end()); } int main() { std::vector> CURanges; std::vector> CUDIERanges{{1, 2}}; collectAddressRanges(CURanges, CUDIERanges); return 0; } ``` Both compiled with `g++ -O2` and linked together. When running the compiled program, it raises an exception in the `insert` ``` terminate called after throwing an instance of 'std::length_error' what(): vector::_M_range_insert ``` which shouldn't happen. The issue seems to be related to merging duplicated code since it is important to put the code into two files and the present of the second .o file is important even though none of the code in it is used.= The iterations also have to be all on the const reference of vector. Removing o= ne of the const also makes the issue go away. The g++ is version 6.2.1 from the ArchLinuxARM armv7h repository. This migh= t be a regression in gcc 5 since other devs using gcc <=3D4.9 doesn't seem to ha= ve this issue and I was able to reproduce this on archlinux on 4-5 different systems with gcc >=3D5. This causes https://github.com/JuliaLang/julia/issues/14550 >>From gcc-bugs-return-538361-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 01:42:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 114474 invoked by alias); 25 Sep 2016 01:42:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 114309 invoked by uid 48); 25 Sep 2016 01:42:20 -0000 From: "jacob.benoit.1 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/65122] std::vector doesn't honor element alignment Date: Sun, 25 Sep 2016 01:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jacob.benoit.1 at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01976.txt.bz2 Content-length: 275 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65122 --- Comment #18 from Benoit Jacob --- (In reply to Andrew Pinski from comment #17) > I think this is fixed for GCC 7 with -std=3Dc++17 support. Thanks for the update, that's great news! >>From gcc-bugs-return-538362-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 06:05:16 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 59961 invoked by alias); 25 Sep 2016 06:05:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 59816 invoked by uid 48); 25 Sep 2016 06:04:57 -0000 From: "edlinger at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/77714] Wrong code generation for gcc.c-torture/execute/pr51447.c Date: Sun, 25 Sep 2016 06:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ra, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: edlinger at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01977.txt.bz2 Content-length: 1667 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77714 --- Comment #3 from Bernd Edlinger --- because a different pattern is choosen for this insn the reg-note is overwritten here: Choosing alt 2 in insn 48: (0) l (1) l (2) lL {*thumb1_addsi3} Creating newreg=3D129, assigning class LO_REGS to r129 48: sfp:SI=3Dr7:SI+r129:SI REG_EQUAL r7:SI+r129:SI Inserting insn reload before: 82: r129:SI=3D0xfffffffffffffff0 but it should be: Choosing alt 2 in insn 48: (0) l (1) l (2) lL {*thumb1_addsi3} Creating newreg=3D129, assigning class LO_REGS to r129 48: sfp:SI=3Dr7:SI+r129:SI REG_EQUAL r7:SI-0x10 Inserting insn reload before: 82: r129:SI=3D0xfffffffffffffff0 and in the next pass this insn is removed because the reg-note is no longer found. The reason is the alias between the reg-note and the SET_SRC. So this would be a more conservative fix: Index: lra-eliminations.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- lra-eliminations.c (revision 240437) +++ lra-eliminations.c (working copy) @@ -981,7 +981,7 @@ eliminate_regs_in_insn (rtx_insn *insn, bool repla } lra_update_insn_recog_data (insn); /* Add offset note for future updates. */ - add_reg_note (insn, REG_EQUAL, src); + add_reg_note (insn, REG_EQUAL, copy_rtx (src)); return; } } >>From gcc-bugs-return-538363-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 07:01:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35604 invoked by alias); 25 Sep 2016 07:01:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34940 invoked by uid 55); 25 Sep 2016 07:00:41 -0000 From: "olegendo at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/51244] [SH] Inefficient conditional branch and code around T bit Date: Sun, 25 Sep 2016 07:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: olegendo at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: olegendo at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01978.txt.bz2 Content-length: 1285 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D51244 --- Comment #87 from Oleg Endo --- Author: olegendo Date: Sun Sep 25 06:59:37 2016 New Revision: 240471 URL: https://gcc.gnu.org/viewcvs?rev=3D240471&root=3Dgcc&view=3Drev Log: This fixes a fallout that actually goes back to 5.0 but went unnoticed. The costs for movt and movrt type of insns were not correctly reported and ifcvt thus made some bad choices for SH. A new cset_zero pattern variant is also required to fix the matching for some recent changes in the middle end. gcc/ PR target/51244 * config/sh/sh.c (sh_movt_set_dest, sh_movrt_set_dest): Add overloa= ds. (sh_rtx_costs): Handle SET of movt and movrt patterns. * cnofig/sh/sh-protos.h (sh_movt_set_dest, sh_movrt_set_dest): Forw= ard declare new overloads. * config/sh/sh.md (*cset_zero): Add variant that takes a treg_set_e= xpr operand. gcc/testsuite/ PR target/51244 * gcc.target/sh/pr51244-11.c: Add more detailed expected insn match= ing. Modified: trunk/gcc/ChangeLog trunk/gcc/config/sh/sh-protos.h trunk/gcc/config/sh/sh.c trunk/gcc/config/sh/sh.md trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/gcc.target/sh/pr51244-11.c >>From gcc-bugs-return-538364-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 07:20:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 54473 invoked by alias); 25 Sep 2016 07:20:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 45569 invoked by uid 48); 25 Sep 2016 07:20:41 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/71767] Endless stream of warnings when using GCC with -Wa,-q and Clang Integrated Assembler Date: Sun, 25 Sep 2016 07:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: assemble-failure X-Bugzilla-Severity: minor X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: iains at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01979.txt.bz2 Content-length: 3619 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71767 --- Comment #24 from Dominique d'Humieres --- The patch in comment 20 (and SDK 10.9) causes the failures of the tests gcc.dg/torture/darwin-cfstring-3.c and g++.dg/torture/darwin-cfstring-3.C w= ith -m32, see https://gcc.gnu.org/ml/gcc-testresults/2016-09/msg02290.html. The= se failures are due to the fact that lC is now emitted instead of LC and are silenced with the following patch --- ../_clean/gcc/testsuite/gcc.dg/torture/darwin-cfstring-3.c 2014-05-10 23:16:48.000000000 +0200 +++ gcc/testsuite/gcc.dg/torture/darwin-cfstring-3.c 2016-09-24 17:03:58.000000000 +0200 @@ -24,7 +24,7 @@ void foo(void) { s0 =3D s1; } -/* { dg-final { scan-assembler "\\.long\[ \\t\]+___CFConstantStringClassReference\n\[ \\t\]*\\.long\[ \\t\]+1992\n\[ \\t\]*\\.long\[ \\t\]+LC.*\n\[ \\t\]*\\.long\[ \\t\]+4\n" { target { *-*-darwin* && { ! lp64 } } } } } */ -/* { dg-final { scan-assembler "\\.long\[ \\t\]+___CFConstantStringClassReference\n\[ \\t\]*\\.long\[ \\t\]+1992\n\[ \\t\]*\\.long\[ \\t\]+LC.*\n\[ \\t\]*\\.long\[ \\t\]+10\n" { target { *-*-darwin* && { ! lp64 } } } } } */ +/* { dg-final { scan-assembler "\\.long\[ \\t\]+___CFConstantStringClassReference\n\[ \\t\]*\\.long\[ \\t\]+1992\n\[ \\t\]*\\.long\[ \\t\]+\[lL\]C.*\n\[ \\t\]*\\.long\[ \\t\]+4\n" { target { *-*-darwin* && { ! lp64 } } } } } */ +/* { dg-final { scan-assembler "\\.long\[ \\t\]+___CFConstantStringClassReference\n\[ \\t\]*\\.long\[ \\t\]+1992\n\[ \\t\]*\\.long\[ \\t\]+\[lL\]C.*\n\[ \\t\]*\\.long\[ \\t\]+10\n" { target { *-*-darwin* && { ! lp64 } } } } } */ /* { dg-final { scan-assembler ".quad\t___CFConstantStringClassReference\n\t.long\t1992\n\t.space 4\n\t.quad\t.*\n\t.quad\t4\n" { target { *-*-darwin* && { lp64 } } } } } */ /* { dg-final { scan-assembler ".quad\t___CFConstantStringClassReference\n\t.long\t1992\n\t.space 4\n\t.quad\t.*\n\t.quad\t10\n" { target { *-*-darwin* && { lp64 } } } } } = */ --- ../_clean/gcc/testsuite/g++.dg/torture/darwin-cfstring-3.C 2014-05-10 23:18:01.000000000 +0200 +++ gcc/testsuite/g++.dg/torture/darwin-cfstring-3.C 2016-09-24 17:02:39.000000000 +0200 @@ -24,7 +24,7 @@ void foo(void) { s0 =3D s1; } -/* { dg-final { scan-assembler "\\.long\[ \\t\]+___CFConstantStringClassReference\n\[ \\t\]*\\.long\[ \\t\]+1992\n\[ \\t\]*\\.long\[ \\t\]+LC.*\n\[ \\t\]*\\.long\[ \\t\]+4\n" { target { *-*-darwin* && { ! lp64 } } } } } */ -/* { dg-final { scan-assembler "\\.long\[ \\t\]+___CFConstantStringClassReference\n\[ \\t\]*\\.long\[ \\t\]+1992\n\[ \\t\]*\\.long\[ \\t\]+LC.*\n\[ \\t\]*\\.long\[ \\t\]+10\n" { target { *-*-darwin* && { ! lp64 } } } } } */ +/* { dg-final { scan-assembler "\\.long\[ \\t\]+___CFConstantStringClassReference\n\[ \\t\]*\\.long\[ \\t\]+1992\n\[ \\t\]*\\.long\[ \\t\]+\[lL\]C.*\n\[ \\t\]*\\.long\[ \\t\]+4\n" { target { *-*-darwin* && { ! lp64 } } } } } */ +/* { dg-final { scan-assembler "\\.long\[ \\t\]+___CFConstantStringClassReference\n\[ \\t\]*\\.long\[ \\t\]+1992\n\[ \\t\]*\\.long\[ \\t\]+\[lL\]C.*\n\[ \\t\]*\\.long\[ \\t\]+10\n" { target { *-*-darwin* && { ! lp64 } } } } } */ /* { dg-final { scan-assembler ".quad\t___CFConstantStringClassReference\n\t.long\t1992\n\t.space 4\n\t.quad\t.*\n\t.quad\t4\n" { target { *-*-darwin* && { lp64 } } } } } */ /* { dg-final { scan-assembler ".quad\t___CFConstantStringClassReference\n\t.long\t1992\n\t.space 4\n\t.quad\t.*\n\t.quad\t10\n" { target { *-*-darwin* && { lp64 } } } } } = */ I don't know if the replacement of LC with lC is really intended and if yes= , a better fix would be to use "-mtarget-linker 85.2". >>From gcc-bugs-return-538365-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 07:42:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 113270 invoked by alias); 25 Sep 2016 07:42:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 113177 invoked by uid 48); 25 Sep 2016 07:42:06 -0000 From: "Joost.VandeVondele at mat dot ethz.ch" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77719] [7 Regression] ICE in pp_string, at pretty-print.c:955 Date: Sun, 25 Sep 2016 07:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: Joost.VandeVondele at mat dot ethz.ch X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01980.txt.bz2 Content-length: 375 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77719 --- Comment #6 from Joost VandeVondele --- (In reply to kugan from comment #5) > Sent a patch to fix this at > https://gcc.gnu.org/ml/gcc-patches/2016-09/msg01760.html. Thanks, add this line before the first IF statement to silence the warnings: INTEGER :: isp,spdim,jsp,nsp >>From gcc-bugs-return-538366-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 08:37:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 105663 invoked by alias); 25 Sep 2016 08:36:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 105507 invoked by uid 48); 25 Sep 2016 08:36:45 -0000 From: "glisse at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/65122] std::vector doesn't honor element alignment Date: Sun, 25 Sep 2016 08:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: glisse at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01981.txt.bz2 Content-length: 542 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65122 --- Comment #19 from Marc Glisse --- (In reply to Andrew Pinski from comment #17) > I think this is fixed for GCC 7 with -std=3Dc++17 support. No, it isn't. new T[10] will give suitably aligned memory, but not std::allocator. Only the core part of alignment support was added in C++= 17, we are expecting a corresponding library part in C++20. On the other hand, providing it as an extension in C++17-mode (gnu++17?) might be ok (requires= a discussion). >>From gcc-bugs-return-538367-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 08:53:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 123596 invoked by alias); 25 Sep 2016 08:53:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123374 invoked by uid 48); 25 Sep 2016 08:52:59 -0000 From: "tamiraviv at mail dot tau.ac.il" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77725] An example from the standard regarding member lookup fails to compile Date: Sun, 25 Sep 2016 08:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: tamiraviv at mail dot tau.ac.il X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01982.txt.bz2 Content-length: 745 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77725 Tamir Aviv changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tamiraviv at mail dot tau.= ac.il --- Comment #1 from Tamir Aviv --- It's important to note that if you switch the order of inheritance in struc= t F=20 ( instead of: "struct F: public D, public E { };" use: "struct F: public E, public F { };"=20 ) this example compiled without an error, even though the standard say that t= he order of derivation is not significant (10.1.2 Multiple base classes [class.mi]) >>From gcc-bugs-return-538368-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 09:09:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31899 invoked by alias); 25 Sep 2016 09:09:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31739 invoked by uid 48); 25 Sep 2016 09:09:35 -0000 From: "vries at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77558] [6/7 regression] c-c++-common/va-arg-va-list-type.c fails for arm/aarch64 Date: Sun, 25 Sep 2016 09:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code, patch X-Bugzilla-Severity: normal X-Bugzilla-Who: vries at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01983.txt.bz2 Content-length: 413 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77558 Tom de Vries changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --- Comment #7 from Tom de Vries --- https://gcc.gnu.org/ml/gcc-patches/2016-09/msg01764.html >>From gcc-bugs-return-538369-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 10:34:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 48863 invoked by alias); 25 Sep 2016 10:34:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 47736 invoked by uid 48); 25 Sep 2016 10:33:51 -0000 From: "olegendo at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/58122] loops are not evaluated at compile time if loop count > 17 Date: Sun, 25 Sep 2016 10:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: olegendo at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01984.txt.bz2 Content-length: 297 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D58122 --- Comment #5 from Oleg Endo --- This issue seems to be working just fine. Not sure what kind of test case = to add for this though... just scanning final assembler code for some expected= hex or dec constant? >>From gcc-bugs-return-538370-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 10:37:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 53912 invoked by alias); 25 Sep 2016 10:37:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 53738 invoked by uid 48); 25 Sep 2016 10:36:57 -0000 From: "olegendo at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/56365] [5 Regression] Missed opportunities for smin/smax standard name patterns when compiling as C++ Date: Sun, 25 Sep 2016 10:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.8.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: olegendo at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01985.txt.bz2 Content-length: 202 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D56365 --- Comment #14 from Oleg Endo --- Richi, if you're not going to backport any patches, maybe close this one as fixed? >>From gcc-bugs-return-538371-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 14:50:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 91187 invoked by alias); 25 Sep 2016 14:50:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 91003 invoked by uid 48); 25 Sep 2016 14:49:49 -0000 From: "jak@jak-linux.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77729] New: aarch64 inserts unneeded uxtb after ldrb, orr ...32 Date: Sun, 25 Sep 2016 14:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jak@jak-linux.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01986.txt.bz2 Content-length: 830 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77729 Bug ID: 77729 Summary: aarch64 inserts unneeded uxtb after ldrb, orr ...32 Product: gcc Version: 6.1.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: jak@jak-linux.org Target Milestone: --- In the attached test case, the aarch64 target inserts a uxtb instruction th= at is not needed: ldrb w1, [x0] orr w1, w1, 32 uxtb w1, w1 cmp w1, 116 The arm backend handles that just fine: ldrb r3, [r0] @ zero_extendqisi2 orr r3, r3, #32 cmp r3, #116 It also works with 33 or 34 instead of 32 for whatever reasons. >>From gcc-bugs-return-538373-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 14:51:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 93800 invoked by alias); 25 Sep 2016 14:51:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 93707 invoked by uid 48); 25 Sep 2016 14:51:32 -0000 From: "jak@jak-linux.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77729] aarch64 inserts unneeded uxtb after ldrb, orr ...32 Date: Sun, 25 Sep 2016 14:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jak@jak-linux.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01988.txt.bz2 Content-length: 240 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77729 --- Comment #2 from Julian Andres Klode --- Created attachment 39676 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39676&action=3Dedit Aarch64 output at -O2 >>From gcc-bugs-return-538372-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 14:51:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 92992 invoked by alias); 25 Sep 2016 14:51:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 92851 invoked by uid 48); 25 Sep 2016 14:51:11 -0000 From: "jak@jak-linux.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77729] aarch64 inserts unneeded uxtb after ldrb, orr ...32 Date: Sun, 25 Sep 2016 14:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jak@jak-linux.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01987.txt.bz2 Content-length: 231 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77729 --- Comment #1 from Julian Andres Klode --- Created attachment 39675 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39675&action=3Dedit C reproducer >>From gcc-bugs-return-538374-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 14:52:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 94714 invoked by alias); 25 Sep 2016 14:52:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 94659 invoked by uid 48); 25 Sep 2016 14:52:01 -0000 From: "jak@jak-linux.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77729] aarch64 inserts unneeded uxtb after ldrb, orr ...32 Date: Sun, 25 Sep 2016 14:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jak@jak-linux.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01989.txt.bz2 Content-length: 245 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77729 --- Comment #3 from Julian Andres Klode --- Created attachment 39677 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39677&action=3Dedit arm (thumb2) output at -O2 >>From gcc-bugs-return-538375-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 14:54:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 6142 invoked by alias); 25 Sep 2016 14:54:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121479 invoked by uid 48); 25 Sep 2016 14:54:40 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77729] aarch64 inserts unneeded uxtb after ldrb, orr ...32 Date: Sun, 25 Sep 2016 14:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01990.txt.bz2 Content-length: 522 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77729 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pinskia at gcc dot gnu.org --- Comment #4 from Andrew Pinski --- Note this testcase needs to be improved as I have a patch which converts a switch with just one case and a default into anew if statement. >>From gcc-bugs-return-538376-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 15:04:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 13775 invoked by alias); 25 Sep 2016 15:04:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 13683 invoked by uid 48); 25 Sep 2016 15:04:37 -0000 From: "jak@jak-linux.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77729] aarch64 inserts unneeded uxtb after ldrb, orr ...32 Date: Sun, 25 Sep 2016 15:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jak@jak-linux.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01991.txt.bz2 Content-length: 555 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77729 --- Comment #5 from Julian Andres Klode --- Created attachment 39678 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39678&action=3Dedit ppc64le Hmm, AFAICT the same seems to happen on powerpc64le: lbz 9,0(3) # Load zero ori 9,9,0x20 # ors in 32 rlwinm 9,9,0,0xff # zero extend value AFAICT cmpwi 7,9,116 So far tested: good: mipsel, x86_64, armhf (thumb2) bad: aarch64, powerpc64le >>From gcc-bugs-return-538377-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 15:09:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 16345 invoked by alias); 25 Sep 2016 15:09:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 16137 invoked by uid 48); 25 Sep 2016 15:09:33 -0000 From: "jak@jak-linux.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77729] aarch64 inserts unneeded uxtb after ldrb, orr ...32 Date: Sun, 25 Sep 2016 15:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jak@jak-linux.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01992.txt.bz2 Content-length: 608 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77729 --- Comment #6 from Julian Andres Klode --- (In reply to Andrew Pinski from comment #4) > Note this testcase needs to be improved as I have a patch which converts a > switch with just one case and a default into anew if statement. FWIW, The issue is exactly the same with if statements, like in: int TrieCase3(const char *string) { if((string[0] | 32) =3D=3D 't') { if((string[1] | 32) =3D=3D 'a') { if((string[2] | 32) =3D=3D 'g') { return 42; } } } return -1; } >>From gcc-bugs-return-538378-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 15:12:08 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 18121 invoked by alias); 25 Sep 2016 15:12:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 17815 invoked by uid 48); 25 Sep 2016 15:11:54 -0000 From: "fw at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77729] aarch64 inserts unneeded uxtb after ldrb, orr ...32 Date: Sun, 25 Sep 2016 15:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: fw at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01993.txt.bz2 Content-length: 705 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77729 Florian Weimer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fw at gcc dot gnu.org --- Comment #7 from Florian Weimer --- Something similar happens on x86_64 with -Os. The OR instruction operates = on %eax instead of %al: 0000000000000000 : 0: 8a 07 mov (%rdi),%al 2: 83 c8 20 or $0x20,%eax 5: 3c 74 cmp $0x74,%al (Byte-wise OR would be 0x0c 0x20, one byte shorter.) >>From gcc-bugs-return-538379-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 15:12:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 19545 invoked by alias); 25 Sep 2016 15:12:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 19308 invoked by uid 55); 25 Sep 2016 15:12:38 -0000 From: "edlinger at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77411] object-size-9.c -fpic -m32 failure Date: Sun, 25 Sep 2016 15:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: patch X-Bugzilla-Severity: normal X-Bugzilla-Who: edlinger at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01994.txt.bz2 Content-length: 713 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77411 --- Comment #4 from Bernd Edlinger --- Author: edlinger Date: Sun Sep 25 15:12:05 2016 New Revision: 240472 URL: https://gcc.gnu.org/viewcvs?rev=3D240472&root=3Dgcc&view=3Drev Log: 2016-09-25 Bernd Edlinger backport from mainline 2016-09-23 Bernd Edlinger Tom de Vries PR testsuite/77411 * c-c++-common/ubsan/object-size-9.c: Call __builtin_exit in C++. Modified: branches/gcc-6-branch/gcc/testsuite/ChangeLog branches/gcc-6-branch/gcc/testsuite/c-c++-common/ubsan/object-size-9.c >>From gcc-bugs-return-538380-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 15:16:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23933 invoked by alias); 25 Sep 2016 15:16:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23704 invoked by uid 48); 25 Sep 2016 15:15:59 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77729] aarch64 inserts unneeded uxtb after ldrb, orr ...32 Date: Sun, 25 Sep 2016 15:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01995.txt.bz2 Content-length: 228 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77729 --- Comment #8 from Andrew Pinski --- This looks like missing removal of casts. Note in C, char_var|32 is really the same as ((int)char_var)|32 >>From gcc-bugs-return-538381-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 15:19:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27108 invoked by alias); 25 Sep 2016 15:19:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 26968 invoked by uid 48); 25 Sep 2016 15:19:01 -0000 From: "jak@jak-linux.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77729] aarch64 inserts unneeded uxtb after ldrb, orr ...32 Date: Sun, 25 Sep 2016 15:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jak@jak-linux.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01996.txt.bz2 Content-length: 401 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77729 --- Comment #9 from Julian Andres Klode --- (In reply to Andrew Pinski from comment #8) > This looks like missing removal of casts. >=20 > Note in C, char_var|32 is really the same as ((int)char_var)|32 Well. The loads of the byte are already zero-extend loads. The current code= is like saying: (int) ((int)char|32) :) >>From gcc-bugs-return-538382-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 15:21:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 29088 invoked by alias); 25 Sep 2016 15:21:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29005 invoked by uid 48); 25 Sep 2016 15:21:28 -0000 From: "tulipawn at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77730] New: Fortran performance on aarch64 (6/7 regression heads-up) Date: Sun, 25 Sep 2016 15:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: tulipawn at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01997.txt.bz2 Content-length: 573 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77730 Bug ID: 77730 Summary: Fortran performance on aarch64 (6/7 regression heads-up) Product: gcc Version: 6.2.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end Assignee: unassigned at gcc dot gnu.org Reporter: tulipawn at gmail dot com Target Milestone: --- Not sure if it's serious enough, just a quick alert: http://openbenchmarking.org/result/1609257-LO-FORTRANAA01 >>From gcc-bugs-return-538383-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 15:24:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 44928 invoked by alias); 25 Sep 2016 15:24:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 40476 invoked by uid 48); 25 Sep 2016 15:24:35 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77730] Fortran performance on aarch64 (6/7 regression heads-up) Date: Sun, 25 Sep 2016 15:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01998.txt.bz2 Content-length: 297 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77730 --- Comment #1 from Andrew Pinski --- One thing I noticed is the generic vector cost model sucks for almost all cores. It causes to emit ld2/ld3 in cases where it would be more expensive = than if doing it scalar. >>From gcc-bugs-return-538384-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 15:26:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69531 invoked by alias); 25 Sep 2016 15:26:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 69372 invoked by uid 48); 25 Sep 2016 15:26:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77730] Fortran performance on aarch64 (6/7 regression heads-up) Date: Sun, 25 Sep 2016 15:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg01999.txt.bz2 Content-length: 550 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77730 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Component|middle-end |target --- Comment #2 from Andrew Pinski --- If someone is running on cortex-a57, please run with -mcpu=3Dcortex-a57. Or= if running on thunderx, -mcpu=3Dthunderx . Or -mcpu=3Dnative. Basically I don= 't think this is a true bug. >>From gcc-bugs-return-538385-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 15:42:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 85668 invoked by alias); 25 Sep 2016 15:42:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 85572 invoked by uid 48); 25 Sep 2016 15:42:05 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77729] aarch64 inserts unneeded uxtb after ldrb, orr ...32 Date: Sun, 25 Sep 2016 15:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02000.txt.bz2 Content-length: 1563 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77729 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |missed-optimization Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-25 Ever confirmed|0 |1 Severity|normal |enhancement --- Comment #10 from Andrew Pinski --- This is how we expand it on aarch64: (insn 10 9 11 (set (reg:QI 81) (mem:QI (reg/v/f:DI 80 [ string ]) [0 *string_9(D)+0 S1 A8])) t.c:4= -1 (nil)) (insn 11 10 12 (set (reg:SI 82) (ior:SI (subreg:SI (reg:QI 81) 0) (const_int 32 [0x20]))) t.c:4 -1 (nil)) (insn 12 11 13 (set (reg:SI 83) (zero_extend:SI (subreg:QI (reg:SI 82) 0))) t.c:4 -1 (nil)) (insn 13 12 14 (set (reg:CC 66 cc) (compare:CC (reg:SI 83) (const_int 116 [0x74]))) t.c:4 -1 (nil)) ----- (set (reg:SI 83) (ior:SI (and:SI (subreg:SI (mem:QI (reg/v/f:DI 80 [ string ]) [0 *string_9(D)+0 S1 A8]) 0) (const_int 223 [0xdf])) (const_int 32 [0x20]))) Notice how the and there is 223, but really that can be still a zero_extend= .=20 Basically combine is going funny. ---- CUT ---- Note for 33, orr does not accept 33 so combine does not see 33 and does not change the and part around the subreg. >>From gcc-bugs-return-538386-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 17:08:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 74927 invoked by alias); 25 Sep 2016 17:08:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 74830 invoked by uid 55); 25 Sep 2016 17:08:14 -0000 From: "uros at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77621] [6 Regression] Internal compiler error for mtune=atom + msse2 Date: Sun, 25 Sep 2016 17:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: uros at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02001.txt.bz2 Content-length: 1810 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77621 --- Comment #22 from uros at gcc dot gnu.org --- Author: uros Date: Sun Sep 25 17:07:37 2016 New Revision: 240475 URL: https://gcc.gnu.org/viewcvs?rev=3D240475&root=3Dgcc&view=3Drev Log: Backport from mainline 2016-09-21 Richard Biener Jakub Jelinek PR tree-optimization/77621 * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Split group at non-vectorizable stmts. Backport from mainline 2016-09-20 Uros Bizjak PR target/77621 * config/i386/i386.c (ix86_preferred_simd_mode) : Don't return word_mode for !TARGET_VECTORIZE_DOUBLE. (ix86_add_stmt_cost): Penalize DFmode vector operations for !TARGET_VECTORIZE_DOUBLE. testsuite/ChangeLog: Backport from mainline 2016-09-21 Richard Biener Jakub Jelinek PR tree-optimization/77621 * gcc.dg/pr77621.c: New testcase. Backport from mainline 2016-09-20 Uros Bizjak PR target/77621 * gcc.target/i386/pr77621.c: New test. * gcc.target/i386/vect-double-2.c: Update scan-tree-dump-times pattern, loop should vectorize with -mtune=3Datom. Added: branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr77621.c branches/gcc-6-branch/gcc/testsuite/gcc.target/i386/pr77621.c Modified: branches/gcc-6-branch/gcc/ChangeLog branches/gcc-6-branch/gcc/config/i386/i386.c branches/gcc-6-branch/gcc/testsuite/ChangeLog branches/gcc-6-branch/gcc/testsuite/gcc.target/i386/vect-double-2.c branches/gcc-6-branch/gcc/tree-vect-data-refs.c >>From gcc-bugs-return-538387-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 17:09:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76436 invoked by alias); 25 Sep 2016 17:09:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 76236 invoked by uid 48); 25 Sep 2016 17:09:40 -0000 From: "ubizjak at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77621] [6 Regression] Internal compiler error for mtune=atom + msse2 Date: Sun, 25 Sep 2016 17:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ubizjak at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02002.txt.bz2 Content-length: 442 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77621 Uro=C5=A1 Bizjak changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #23 from Uro=C5=A1 Bizjak --- Fixed for gcc-6.3+ >>From gcc-bugs-return-538388-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 17:18:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 84888 invoked by alias); 25 Sep 2016 17:18:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 84720 invoked by uid 48); 25 Sep 2016 17:17:56 -0000 From: "tulipawn at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77730] Fortran performance on aarch64 (6/7 regression heads-up) Date: Sun, 25 Sep 2016 17:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: tulipawn at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02003.txt.bz2 Content-length: 192 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77730 --- Comment #3 from PeteVine --- What about ARMv7? http://openbenchmarking.org/result/1609253-LO-MERGE859124 >>From gcc-bugs-return-538389-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 17:22:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 90437 invoked by alias); 25 Sep 2016 17:22:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 90359 invoked by uid 48); 25 Sep 2016 17:21:50 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77730] Fortran performance on aarch64 (6/7 regression heads-up) Date: Sun, 25 Sep 2016 17:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02004.txt.bz2 Content-length: 389 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77730 --- Comment #4 from Andrew Pinski --- (In reply to PeteVine from comment #3) > What about ARMv7? >=20 > http://openbenchmarking.org/result/1609253-LO-MERGE859124 Similar point there. I have seen cortex-a7 and a9 acting way different.=20 Also without a testcase it is hard to figure out what is going on. >>From gcc-bugs-return-538390-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 17:27:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 120482 invoked by alias); 25 Sep 2016 17:27:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 120327 invoked by uid 48); 25 Sep 2016 17:27:32 -0000 From: "iains at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/71767] Endless stream of warnings when using GCC with -Wa,-q and Clang Integrated Assembler Date: Sun, 25 Sep 2016 17:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: assemble-failure X-Bugzilla-Severity: minor X-Bugzilla-Who: iains at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: iains at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02005.txt.bz2 Content-length: 1628 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71767 --- Comment #25 from Iain Sandoe --- (In reply to Dominique d'Humieres from comment #24) > The patch in comment 20 (and SDK 10.9) causes the failures of the tests > gcc.dg/torture/darwin-cfstring-3.c and g++.dg/torture/darwin-cfstring-3.C > with -m32, see https://gcc.gnu.org/ml/gcc-testresults/2016-09/msg02290.ht= ml. > These failures are due to the fact that lC is now emitted instead of LC a= nd > are silenced with the following patch >=20 > --- ../_clean/gcc/testsuite/gcc.dg/torture/darwin-cfstring-3.c 2014-05-10 > 23:16:48.000000000 +0200 > +++ gcc/testsuite/gcc.dg/torture/darwin-cfstring-3.c 2016-09-24 > 17:03:58.000000000 +0200 thanks. \n\t.quad\t.*\n\t.quad\t10\n" { target { *-*-darwin* && { lp64 } } } } } */ >=20 > I don't know if the replacement of LC with lC is really intended and if y= es, > a better fix would be to use "-mtarget-linker 85.2". Yes, that's the intention of the patch (to make the some of the internal la= bels visible to the linker - but not public); that's what using "l" instead of "= L" does. There are almost certainly other instances that need to be fixed up (I didn= 't yet review all the test-suite output). As for using "-mtarget-linker 85.2" It would be better to test the most com= mon configurations in use (or both cases). So I'd suggest your patch is a bett= er solution than the changing the target linker. However, we should probably have at least one test somewhere that checks we don't regress for older toolchains (so maybe add one for legacy toolchains, with -mtarget-linker 85.2). >>From gcc-bugs-return-538391-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 17:31:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 124893 invoked by alias); 25 Sep 2016 17:31:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124725 invoked by uid 55); 25 Sep 2016 17:31:01 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77694] ICE in optimize_binop_array_assignment, at fortran/frontend-passes.c:1080 Date: Sun, 25 Sep 2016 17:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02006.txt.bz2 Content-length: 706 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77694 --- Comment #5 from kargl at gcc dot gnu.org --- Author: kargl Date: Sun Sep 25 17:30:27 2016 New Revision: 240476 URL: https://gcc.gnu.org/viewcvs?rev=3D240476&root=3Dgcc&view=3Drev Log: 2016-09-22 Steven G. Kargl PR fortran/77694 * frontend-passes.c (optimize_binop_array_assignment): Check pointer for NULL. 2016-09-22 Steven G. Kargl PR fortran/77694 * gfortran.dg/pr77694.f90: New test. Added: trunk/gcc/testsuite/gfortran.dg/pr77694.f90 Modified: trunk/gcc/fortran/ChangeLog trunk/gcc/fortran/frontend-passes.c trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538392-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 17:44:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 28891 invoked by alias); 25 Sep 2016 17:44:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 28704 invoked by uid 48); 25 Sep 2016 17:43:51 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77694] ICE in optimize_binop_array_assignment, at fortran/frontend-passes.c:1080 Date: Sun, 25 Sep 2016 17:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02007.txt.bz2 Content-length: 483 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77694 kargl at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED Assignee|unassigned at gcc dot gnu.org |kargl at gcc dot gn= u.org --- Comment #6 from kargl at gcc dot gnu.org --- Fixed on trunk. >>From gcc-bugs-return-538393-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 18:20:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 95447 invoked by alias); 25 Sep 2016 18:20:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 95140 invoked by uid 48); 25 Sep 2016 18:20:00 -0000 From: "danglin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/76957] FAIL: gcc.dg/graphite/scop-dsyr2k.c scan-tree-dump-times graphite "number of SCoPs Date: Sun, 25 Sep 2016 18:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: danglin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02008.txt.bz2 Content-length: 253 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D76957 --- Comment #4 from John David Anglin --- Similar fail on hppa-unknown-linux-gnu: FAIL: gcc.dg/graphite/scop-dsyrk.c scan-tree-dump-times graphite "number of SCoPs: 1" 1 >>From gcc-bugs-return-538394-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 18:47:15 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27115 invoked by alias); 25 Sep 2016 18:47:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 26762 invoked by uid 55); 25 Sep 2016 18:47:01 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77429] ICE in gfc_check_dependency, at fortran/dependency.c:1261 Date: Sun, 25 Sep 2016 18:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02009.txt.bz2 Content-length: 750 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77429 --- Comment #3 from kargl at gcc dot gnu.org --- Author: kargl Date: Sun Sep 25 18:46:28 2016 New Revision: 240477 URL: https://gcc.gnu.org/viewcvs?rev=3D240477&root=3Dgcc&view=3Drev Log: 2016-09-25 Steven G. Kargl PR fortran/77429=20 * dependency.c (gfc_check_dependency): Convert gcc_assert() to a conditional and possible call to gfc_internal_error(). 2016-09-25 Steven G. Kargl PR fortran/77429=20 * gfortran.dg/pr77429.f90: New test. Added: trunk/gcc/testsuite/gfortran.dg/pr77429.f90 Modified: trunk/gcc/fortran/ChangeLog trunk/gcc/fortran/dependency.c trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538395-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 18:48:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 30633 invoked by alias); 25 Sep 2016 18:48:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30415 invoked by uid 48); 25 Sep 2016 18:48:23 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77429] ICE in gfc_check_dependency, at fortran/dependency.c:1261 Date: Sun, 25 Sep 2016 18:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02010.txt.bz2 Content-length: 483 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77429 kargl at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED Assignee|unassigned at gcc dot gnu.org |kargl at gcc dot gn= u.org --- Comment #4 from kargl at gcc dot gnu.org --- fixed on trunk. >>From gcc-bugs-return-538396-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 19:04:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69025 invoked by alias); 25 Sep 2016 19:04:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 68863 invoked by uid 48); 25 Sep 2016 19:03:57 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77593] [7 Regression] Bootstrap failure with configure-target-libgfortran " cygwin64 Windows 10 anniversary Date: Sun, 25 Sep 2016 19:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02011.txt.bz2 Content-length: 1121 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77593 --- Comment #9 from Jerry DeLisle --- (In reply to tprince from comment #8) > I show my configure parameters in my test results posts. At some time in > the past, each of them has been important. I don't know if the parameters > quoted by cygwin release pertain to cross compiling. As the parameters I > use have been successful again last week on win8.1 I don't see how they > might pertain to the f951 bootstrap failure on win10. When I get back to > the win10 box I will compare with disable bootstrap. Tim, using your parameters I was able to build. I proceeded to do a regres= sion hunt and confirmed that it was at the DTIO patch on 8/31/2016. In this patch we added two new functions to libgfortran and set the symbol versioning. I modified the library by inserting a printf("ping\n") in the c= ode path for a simple program. print *, "hello" end The ping does not show which means the wrong library is being used at run t= ime. I am trying various config and bath settings to see if I can sort it out. No luck so far. >>From gcc-bugs-return-538397-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 19:26:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 101033 invoked by alias); 25 Sep 2016 19:26:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 100892 invoked by uid 55); 25 Sep 2016 19:26:46 -0000 From: "n8tm at aol dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77593] [7 Regression] Bootstrap failure with configure-target-libgfortran " cygwin64 Windows 10 anniversary Date: Sun, 25 Sep 2016 19:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: n8tm at aol dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02012.txt.bz2 Content-length: 1834 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77593 --- Comment #10 from n8tm at aol dot com --- Jerry , Thanks for the efforts and apparent progress. I will return to wired intern= et territory and the win10 box next weekend. I have the win8.1 laptop here. Sent via the ASUS PadFone X mini, an AT&T 4G LTE smartphone -------- Original Message -------- From:"jvdelisle at gcc dot gnu.org" Sent:Sun, 25 Sep 2016 15:03:55 -0400 To:tprince@computer.org Subject:[Bug bootstrap/77593] [7 Regression] Bootstrap failure with configure-target-libgfortran " cygwin64 Windows 10 anniversary >https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77593 > >--- Comment #9 from Jerry DeLisle --- >(In reply to tprince from comment #8) >> I show my configure parameters in my test results posts. At some time in >> the past, each of them has been important. I don't know if the paramete= rs >> quoted by cygwin release pertain to cross compiling. As the parameters I >> use have been successful again last week on win8.1 I don't see how they >> might pertain to the f951 bootstrap failure on win10. When I get back to >> the win10 box I will compare with disable bootstrap. > >Tim, using your parameters I was able to build. I proceeded to do a regre= ssion >hunt and confirmed that it was at the DTIO patch on 8/31/2016. > >In this patch we added two new functions to libgfortran and set the symbol >versioning. I modified the library by inserting a printf("ping\n") in the = code >path for a simple program. > >print *, "hello" >end > >The ping does not show which means the wrong library is being used at run = time. > >I am trying various config and bath settings to see if I can sort it out. = No >luck so far. > >--=20 >You are receiving this mail because: >You reported the bug. >>From gcc-bugs-return-538398-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 19:40:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 117051 invoked by alias); 25 Sep 2016 19:40:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116880 invoked by uid 48); 25 Sep 2016 19:40:17 -0000 From: "michele.caini at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77731] New: Parameter pack expansion doesn't work when used to define argument list Date: Sun, 25 Sep 2016 19:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: michele.caini at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02013.txt.bz2 Content-length: 1434 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77731 Bug ID: 77731 Summary: Parameter pack expansion doesn't work when used to define argument list Product: gcc Version: 6.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: michele.caini at gmail dot com Target Milestone: --- I refer to there questions on SO: * http://stackoverflow.com/questions/39690166/can-i-expand-a-parameters-pack-= and-define-an-arguments-list-with-it * http://stackoverflow.com/questions/39665300/gcc-vs-clang-variadic-template-= and-pointers-to-member-methods In particular, GCC fails to compile the following snippets, but it should w= ork according with [temp.variadic]: // Snippet 1 template struct S { template void m() {} }; int main() { S s; s.m<0, 'c'>(); // This works, but it shouldn't instead s.m<>(); } // Snippet 2 struct S { void f() { } }; struct T { void f() { } }; template struct U: M... { template void g() { } void f() { g<&M::f...>(); } }; int main() { U u; u.f(); } The same applies to GCC v7. >>From gcc-bugs-return-538399-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 20:05:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 91430 invoked by alias); 25 Sep 2016 20:05:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 91340 invoked by uid 48); 25 Sep 2016 20:05:21 -0000 From: "danglin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug ipa/77732] New: FAIL: gcc.dg/ipa/ipcp-cstagg-7.c scan-ipa-dump-times cp "Discovered an indirect call to a known target" 3 Date: Sun, 25 Sep 2016 20:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: ipa X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: danglin at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcchost cf_gcctarget cf_gccbuild attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02014.txt.bz2 Content-length: 2278 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77732 Bug ID: 77732 Summary: FAIL: gcc.dg/ipa/ipcp-cstagg-7.c scan-ipa-dump-times cp "Discovered an indirect call to a known target" 3 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: ipa Assignee: unassigned at gcc dot gnu.org Reporter: danglin at gcc dot gnu.org Target Milestone: --- Host: hppa-unknown-linux-gnu Target: hppa-unknown-linux-gnu Build: hppa-unknown-linux-gnu Created attachment 39679 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39679&action=3Dedit ipa dump Executing on host: /home/dave/gnu/gcc/objdir/gcc/xgcc -B/home/dave/gnu/gcc/objdi r/gcc/ /home/dave/gnu/gcc/gcc/gcc/testsuite/gcc.dg/ipa/ipcp-cstagg-7.c=20= =20=20 -fno-d iagnostics-show-caret -fdiagnostics-color=3Dnever -O3 -fdump-ipa-cp-detai= ls -S - o ipcp-cstagg-7.s (timeout =3D 300) spawn -ignore SIGHUP /home/dave/gnu/gcc/objdir/gcc/xgcc -B/home/dave/gnu/gcc/obj dir/gcc/ /home/dave/gnu/gcc/gcc/gcc/testsuite/gcc.dg/ipa/ipcp-cstagg-7.c -fno-di agnostics-show-caret -fdiagnostics-color=3Dnever -O3 -fdump-ipa-cp-details = -S -o i pcp-cstagg-7.s PASS: gcc.dg/ipa/ipcp-cstagg-7.c (test for excess errors) FAIL: gcc.dg/ipa/ipcp-cstagg-7.c scan-ipa-dump-times cp "Discovered an indi= rect=20 call to a known target" 3 Possibly, this is a test issue: Jump functions of caller foo/0: indirect simple callsite, calling param -1, offset 0, for stmt x_13 =3D= _3 (x_11); param 0: UNKNOWN Unknown alignment value: 0x0, mask: 0xffffffffffffffffffffffffffffffffffffffffffffff= ff Unknown VR indirect simple callsite, calling param -1, offset 0, for stmt x_11 =3D= _2 (x_9); param 0: UNKNOWN Unknown alignment value: 0x0, mask: 0xffffffffffffffffffffffffffffffffffffffffffffff= ff Unknown VR indirect simple callsite, calling param -1, offset 0, for stmt x_9 =3D = _1 (x_7 (D)); param 0: PASS THROUGH: 1, op nop_expr Unknown alignment value: 0x0, mask: 0xffffffffffffffffffffffffffffffffffffffffffffff= ff Unknown VR >>From gcc-bugs-return-538400-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 20:12:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 115446 invoked by alias); 25 Sep 2016 20:12:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 115373 invoked by uid 48); 25 Sep 2016 20:12:41 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77733] New: Add fixit hint suggesting to use std::move Date: Sun, 25 Sep 2016 20:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02015.txt.bz2 Content-length: 991 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77733 Bug ID: 77733 Summary: Add fixit hint suggesting to use std::move Product: gcc Version: 7.0 Status: UNCONFIRMED Keywords: diagnostic Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: redi at gcc dot gnu.org Target Milestone: --- struct X { }; struct Y { void foo(); void foo(X&&); void foo(int, const X&); void foo(int, X&&); }; int main() { X x; Y y; y.foo(x); } Produces the error: move.cc: In function =E2=80=98int main()=E2=80=99: move.cc:14:10: error: cannot bind rvalue reference of type =E2=80=98X&&=E2= =80=99 to lvalue of type =E2=80=98X=E2=80=99 y.foo(x); ^ move.cc:5:8: note: initializing argument 1 of =E2=80=98void Y::foo(X&&)= =E2=80=99 void foo(X&&); ^~~ It would be useful to suggest using std::move(x) instead. >>From gcc-bugs-return-538402-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 20:22:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 10461 invoked by alias); 25 Sep 2016 20:22:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 10339 invoked by uid 48); 25 Sep 2016 20:22:21 -0000 From: "danglin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77734] New: FAIL: gcc.dg/plugin/must-tail-call-1.c -fplugin=./must_tail_call_plugin.so (test for excess errors) Date: Sun, 25 Sep 2016 20:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: danglin at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcchost cf_gcctarget cf_gccbuild Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02017.txt.bz2 Content-length: 1923 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77734 Bug ID: 77734 Summary: FAIL: gcc.dg/plugin/must-tail-call-1.c -fplugin=3D./must_tail_call_plugin.so (test for excess errors) Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: testsuite Assignee: unassigned at gcc dot gnu.org Reporter: danglin at gcc dot gnu.org Target Milestone: --- Host: hppa-unknown-linux-gnu Target: hppa-unknown-linux-gnu Build: hppa-unknown-linux-gnu Executing on host: /home/dave/gnu/gcc/objdir/gcc/xgcc -B/home/dave/gnu/gcc/objdi r/gcc/ /home/dave/gnu/gcc/gcc/gcc/testsuite/gcc.dg/plugin/must-tail-call-1.= c=20=20=20 -fno-diagnostics-show-caret -fdiagnostics-color=3Dnever=20 -fplugin=3D./must_tail_call_plugin.so -ansi -pedantic-errors -S -o must-tail-call-1.s (timeout =3D 300) spawn -ignore SIGHUP /home/dave/gnu/gcc/objdir/gcc/xgcc -B/home/dave/gnu/gcc/obj dir/gcc/ /home/dave/gnu/gcc/gcc/gcc/testsuite/gcc.dg/plugin/must-tail-call-= 1.c -fno-diagnostics-show-caret -fdiagnostics-color=3Dnever -fplugin=3D./must_tail_call_plugin.so -ansi -pedantic-errors -S -o must-tail-call-1.s/home/dave/gnu/gcc/gcc/gcc/testsuite/gcc.dg/plugin/must-t= ail-call-1.c: In functi on 'caller':/home/dave/gnu/gcc/gcc/gcc/testsuite/gcc.dg/plugin/must-tail-call-= 1.c:12:10: error: cannot tail-call: target is not able to optimize the call into a sib= ling call compiler exited with status 1 FAIL: gcc.dg/plugin/must-tail-call-1.c -fplugin=3D./must_tail_call_plugin.so (test for excess errors)Excess errors: /home/dave/gnu/gcc/gcc/gcc/testsuite/gcc.dg/plugin/must-tail-call-1.c:12:10: error: cannot tail-call: target is not able to optimize the call into a sib= ling call Target has only limited capability to do sibling calls. >>From gcc-bugs-return-538401-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 20:22:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 10449 invoked by alias); 25 Sep 2016 20:22:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 10312 invoked by uid 48); 25 Sep 2016 20:22:17 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77733] Add fixit hint suggesting to use std::move Date: Sun, 25 Sep 2016 20:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02016.txt.bz2 Content-length: 2014 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77733 --- Comment #1 from Jonathan Wakely --- When template argument deduction is involved and the list of candidates is displayed, the fixit becomes more useful, as the relevant function can get = lost in the list of failed overload resolution candidates: struct X { }; struct Y { void foo(); void foo(X&&); void foo(int, const X&); template void foo(T, X&&); }; int main() { X x; Y y; y.foo(x); } move.cc: In function =E2=80=98int main()=E2=80=99: move.cc:14:10: error: no matching function for call to =E2=80=98Y::foo(X&)= =E2=80=99 y.foo(x); ^ move.cc:5:8: note: candidate: void Y::foo(X&&) void foo(X&&); ^~~ move.cc:5:8: note: conversion of argument 1 would be ill-formed: move.cc:14:10: error: cannot bind rvalue reference of type =E2=80=98X&&=E2= =80=99 to lvalue of type =E2=80=98X=E2=80=99 y.foo(x); ^ move.cc:4:8: note: candidate: void Y::foo() void foo(); ^~~ move.cc:4:8: note: candidate expects 0 arguments, 1 provided move.cc:6:8: note: candidate: void Y::foo(int, const X&) void foo(int, const X&); ^~~ move.cc:6:8: note: candidate expects 2 arguments, 1 provided move.cc:7:29: note: candidate: template void Y::foo(T, X&&) template void foo(T, X&&); ^~~ move.cc:7:29: note: template argument deduction/substitution failed: move.cc:14:10: note: candidate expects 2 arguments, 1 provided y.foo(x); ^ As well as a fixit hint suggesting to use std::move it might be useful to display the "" text in colour so it stands out. This example was reduced from: #include int main() { std::set::node_type x; std::set y; y.insert(x); } Which produces 48 lines of output (and they're long lines, so fill two page= s at 80 columns) so highlighting the and adding a fixit hint would = make a big difference. >>From gcc-bugs-return-538403-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 20:35:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 29492 invoked by alias); 25 Sep 2016 20:35:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29397 invoked by uid 48); 25 Sep 2016 20:35:15 -0000 From: "danglin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77735] New: FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-1.c (test for warnings, line 358) Date: Sun, 25 Sep 2016 20:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: danglin at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcchost cf_gcctarget cf_gccbuild attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02018.txt.bz2 Content-length: 739 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77735 Bug ID: 77735 Summary: FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-1.c (test for warnings, line 358) Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: testsuite Assignee: unassigned at gcc dot gnu.org Reporter: danglin at gcc dot gnu.org Target Milestone: --- Host: hppa-unknown-linux-gnu Target: hppa-unknown-linux-gnu Build: hppa-unknown-linux-gnu Created attachment 39680 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39680&action=3Dedit Test log. Attached test log. >>From gcc-bugs-return-538404-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 20:37:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31256 invoked by alias); 25 Sep 2016 20:37:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31151 invoked by uid 48); 25 Sep 2016 20:37:29 -0000 From: "tulipawn at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77730] Fortran performance on aarch64 (6/7 regression heads-up) Date: Sun, 25 Sep 2016 20:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: tulipawn at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02019.txt.bz2 Content-length: 335 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77730 --- Comment #5 from PeteVine --- OK, I hacked the last two to use -mcpu=3Dcortex-a53 (the first one got swit= ched to -mtune) and the result looks like this: http://openbenchmarking.org/result/1609258-LO-FORTRANAA63 Not exactly the original issues :) >>From gcc-bugs-return-538405-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 21:19:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 11246 invoked by alias); 25 Sep 2016 21:19:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 11069 invoked by uid 48); 25 Sep 2016 21:19:19 -0000 From: "danglin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77736] New: FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-2.c (test for warnings, line 50) Date: Sun, 25 Sep 2016 21:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: danglin at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcchost cf_gcctarget cf_gccbuild attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02020.txt.bz2 Content-length: 742 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77736 Bug ID: 77736 Summary: FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-2.c (test for warnings, line 50) Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: testsuite Assignee: unassigned at gcc dot gnu.org Reporter: danglin at gcc dot gnu.org Target Milestone: --- Host: hppa-unknown-linux-gnu Target: hppa-unknown-linux-gnu Build: hppa-unknown-linux-gnu Created attachment 39681 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39681&action=3Dedit Test log. Attached log for test. >>From gcc-bugs-return-538406-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 21:37:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 37835 invoked by alias); 25 Sep 2016 21:37:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 37720 invoked by uid 48); 25 Sep 2016 21:37:09 -0000 From: "danglin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77737] New: FAIL: gcc.dg/tree-ssa/scev-5.c scan-tree-dump-times optimized "&a" 1 Date: Sun, 25 Sep 2016 21:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: danglin at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcchost cf_gcctarget cf_gccbuild attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02021.txt.bz2 Content-length: 1399 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77737 Bug ID: 77737 Summary: FAIL: gcc.dg/tree-ssa/scev-5.c scan-tree-dump-times optimized "&a" 1 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: danglin at gcc dot gnu.org Target Milestone: --- Host: hppa-unknown-linux-gnu Target: hppa-unknown-linux-gnu Build: hppa-unknown-linux-gnu Created attachment 39682 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39682&action=3Dedit Tree dump Executing on host: /home/dave/gnu/gcc/objdir/gcc/xgcc -B/home/dave/gnu/gcc/objdi r/gcc/ /home/dave/gnu/gcc/gcc/gcc/testsuite/gcc.dg/tree-ssa/scev-5.c=20=20= =20=20 -fno-di agnostics-show-caret -fdiagnostics-color=3Dnever -O2 -fdump-tree-optimize= d -S -o scev-5.s (timeout =3D 300) spawn -ignore SIGHUP /home/dave/gnu/gcc/objdir/gcc/xgcc -B/home/dave/gnu/gcc/obj dir/gcc/ /home/dave/gnu/gcc/gcc/gcc/testsuite/gcc.dg/tree-ssa/scev-5.c -fno-diag nostics-show-caret -fdiagnostics-color=3Dnever -O2 -fdump-tree-optimized -S= -o sce v-5.s PASS: gcc.dg/tree-ssa/scev-5.c (test for excess errors) FAIL: gcc.dg/tree-ssa/scev-5.c scan-tree-dump-times optimized "&a" 1 Number is 2. >>From gcc-bugs-return-538407-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 22:36:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 105946 invoked by alias); 25 Sep 2016 22:36:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 105803 invoked by uid 48); 25 Sep 2016 22:35:47 -0000 From: "schwab@linux-m68k.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77738] New: Invalid initialisation of ar.lc register Date: Sun, 25 Sep 2016 22:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: schwab@linux-m68k.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone cf_gcctarget Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02022.txt.bz2 Content-length: 822 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77738 Bug ID: 77738 Summary: Invalid initialisation of ar.lc register Product: gcc Version: 7.0 Status: UNCONFIRMED Keywords: wrong-code Severity: normal Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: schwab@linux-m68k.org Target Milestone: --- Target: ia64-*-* The doloop pass miscalculates the initial value of the ar.lc register if the loop variable is narrower than 64 bit and the loop count is bigger then INT_MAX. int main (void) { unsigned int t =3D 0x80000001; while (--t) {} } movl r14 =3D -2147483648 ;; mov ar.lc =3D r14 .L2: ;; br.cloop.sptk.few .L2 >>From gcc-bugs-return-538408-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Sep 25 23:57:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 62022 invoked by alias); 25 Sep 2016 23:57:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 61856 invoked by uid 48); 25 Sep 2016 23:56:50 -0000 From: "danglin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/68733] [6/7 Regression] FAIL: libgomp.c/target-29.c (internal compiler error) Date: Sun, 25 Sep 2016 23:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: danglin at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02023.txt.bz2 Content-length: 733 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D68733 --- Comment #10 from John David Anglin --- Similar fails: FAIL: c-c++-common/gomp/clauses-2.c (test for errors, line 51) FAIL: c-c++-common/gomp/clauses-2.c (test for excess errors) FAIL: c-c++-common/gomp/clauses-2.c -std=3Dc++98 (test for errors, line 5= 1) FAIL: c-c++-common/gomp/clauses-2.c -std=3Dc++98 (test for excess errors) FAIL: c-c++-common/gomp/clauses-2.c -std=3Dc++11 (test for errors, line 5= 1) FAIL: c-c++-common/gomp/clauses-2.c -std=3Dc++11 (test for excess errors) FAIL: c-c++-common/gomp/clauses-2.c -std=3Dc++14 (test for errors, line 5= 1) FAIL: c-c++-common/gomp/clauses-2.c -std=3Dc++14 (test for excess errors) >>From gcc-bugs-return-538409-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 00:32:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 89477 invoked by alias); 26 Sep 2016 00:32:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 89319 invoked by uid 48); 26 Sep 2016 00:32:30 -0000 From: "ville.voutilainen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77727] Unwrapping std::optional constructor is not working for non-transferable object Date: Mon, 26 Sep 2016 00:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ville.voutilainen at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc assigned_to everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02024.txt.bz2 Content-length: 687 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77727 Ville Voutilainen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-26 CC| |ville.voutilainen at gmail= dot com Assignee|unassigned at gcc dot gnu.org |ville.voutilainen a= t gmail dot com Ever confirmed|0 |1 --- Comment #1 from Ville Voutilainen = --- Mine. >>From gcc-bugs-return-538410-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 00:33:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 90749 invoked by alias); 26 Sep 2016 00:33:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 90258 invoked by uid 48); 26 Sep 2016 00:32:49 -0000 From: "ville.voutilainen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77727] Unwrapping std::optional constructor is not working for non-transferable object Date: Mon, 26 Sep 2016 00:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ville.voutilainen at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02025.txt.bz2 Content-length: 209 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77727 --- Comment #2 from Ville Voutilainen = --- Patch available: https://gcc.gnu.org/ml/gcc-patches/2016-09/msg01777.html >>From gcc-bugs-return-538411-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 00:59:15 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 55548 invoked by alias); 26 Sep 2016 00:59:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 55281 invoked by uid 48); 26 Sep 2016 00:59:02 -0000 From: "anton at samba dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/71509] Bitfield causes load hit store with larger store than load Date: Mon, 26 Sep 2016 00:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: anton at samba dot org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02026.txt.bz2 Content-length: 1072 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71509 --- Comment #4 from Anton Blanchard --- Created attachment 39683 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39683&action=3Dedit Another bitop LHS test case Here's another issue found in the Linux kernel. Seems like this should be a single lwz/stw since the union of counter and the bitops completely overlap. The half word store followed by word load is going to prevent it from store forwarding. 0000000000000000 : 0: 00 00 03 81 lwz r8,0(r3) 4: 20 00 89 78 clrldi r9,r4,32 8: c2 0f 2a 79 rldicl r10,r9,33,31 c: 00 f8 48 51 rlwimi r8,r10,31,0,0 10: 5e 00 2a 55 rlwinm r10,r9,0,1,15 14: 00 00 03 91 stw r8,0(r3) 18: 00 00 83 b0 sth r4,0(r3) 1c: 00 00 42 60 ori r2,r2,0 20: 00 00 23 81 lwz r9,0(r3) 24: 00 04 29 55 rlwinm r9,r9,0,16,0 28: 78 53 29 7d or r9,r9,r10 2c: 00 00 23 91 stw r9,0(r3) 30: 20 00 80 4e blr >>From gcc-bugs-return-538412-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 05:34:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 34209 invoked by alias); 26 Sep 2016 05:34:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 32171 invoked by uid 48); 26 Sep 2016 05:31:35 -0000 From: "vcato1701 at yahoo dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77739] New: internal compiler error: in create_tmp_var, at gimple-expr.c:524 Date: Mon, 26 Sep 2016 05:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: vcato1701 at yahoo dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02027.txt.bz2 Content-length: 1112 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77739 Bug ID: 77739 Summary: internal compiler error: in create_tmp_var, at gimple-expr.c:524 Product: gcc Version: 5.4.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: vcato1701 at yahoo dot com Target Milestone: --- gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.2)=20 Command: g++ -c -std=3Dc++14 ice.cpp Output: ice.cpp: In member function =E2=80=98auto B::g(Args&& ...) [with Args =3D {= A, const char (&)[1]}]=E2=80=99: ice.cpp:15:41: internal compiler error: in create_tmp_var, at gimple-expr.c= :524 return [=3D](){ return f(args...); }; ice.cpp: template struct A { A() { } A(const A &) { } }; struct B { B(); template auto g(Args&&... args) { return [=3D](){ return f(args...); }; } void f(A,const char*) { } }; B::B() { g(A(),""); } >>From gcc-bugs-return-538413-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 06:00:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 77529 invoked by alias); 26 Sep 2016 06:00:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 77247 invoked by uid 48); 26 Sep 2016 06:00:30 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77739] internal compiler error: in create_tmp_var, at gimple-expr.c:524 Date: Mon, 26 Sep 2016 06:00:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02028.txt.bz2 Content-length: 2990 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77739 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-26 CC| |trippels at gcc dot gnu.org Ever confirmed|0 |1 Known to fail| |5.4.0, 6.2.0, 7.0 --- Comment #1 from Markus Trippelsdorf --- Confirmed. All supported gcc versions are affected. markus@x4 /tmp % cat ice.ii struct A { A(); A(const A &); }; struct B { B(); template auto g(Args &&... p1) { return [=3D] { f(p1...); }; } void f(A, const char *); }; B::B() { g(A(), ""); } markus@x4 /tmp % g++ -c ice.ii ice.ii: In member function =E2=80=98auto B::g(Args&& ...) [with Args =3D {A= , const char (&)[1]}]=E2=80=99: ice.ii:8:28: internal compiler error: in create_tmp_var, at gimple-expr.c:4= 73 return [=3D] { f(p1...); }; ^ 0xafcb20 create_tmp_var(tree_node*, char const*) ../../gcc/gcc/gimple-expr.c:473 0xb2f384 create_tmp_from_val ../../gcc/gcc/gimplify.c:500 0xb2f384 lookup_tmp_var ../../gcc/gcc/gimplify.c:521 0xb2f384 internal_get_tmp_var ../../gcc/gcc/gimplify.c:574 0xb26cc1 gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*= ), int) ../../gcc/gcc/gimplify.c:11483 0xb2ab27 gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*= ), int) ../../gcc/gcc/gimplify.c:10701 0xb301a6 gimplify_compound_lval ../../gcc/gcc/gimplify.c:2195 0xb27165 gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*= ), int) ../../gcc/gcc/gimplify.c:10495 0xb3a6cf gimplify_modify_expr ../../gcc/gcc/gimplify.c:4824 0xb29008 gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*= ), int) ../../gcc/gcc/gimplify.c:10543 0xb2c407 gimplify_stmt(tree_node**, gimple**) ../../gcc/gcc/gimplify.c:5805 0xb2c5e8 gimplify_and_add(tree_node*, gimple**) ../../gcc/gcc/gimplify.c:427 0xb2c5e8 gimplify_init_ctor_eval ../../gcc/gcc/gimplify.c:3799 0xb32e9f gimplify_init_constructor ../../gcc/gcc/gimplify.c:4171 0xb33d17 gimplify_modify_expr_rhs ../../gcc/gcc/gimplify.c:4432 0xb3a4d0 gimplify_modify_expr ../../gcc/gcc/gimplify.c:4769 0xb29008 gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*= ), int) ../../gcc/gcc/gimplify.c:10543 0xb2c407 gimplify_stmt(tree_node**, gimple**) ../../gcc/gcc/gimplify.c:5805 0xb28116 gimplify_and_add(tree_node*, gimple**) ../../gcc/gcc/gimplify.c:427 0xb28116 gimplify_return_expr ../../gcc/gcc/gimplify.c:1371 >>From gcc-bugs-return-538414-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 06:41:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 128070 invoked by alias); 26 Sep 2016 06:41:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 115380 invoked by uid 48); 26 Sep 2016 06:41:16 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/77692] [7 regression] gcc.dg/debug/dwarf2/const-2b.c FAILs Date: Mon, 26 Sep 2016 06:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02029.txt.bz2 Content-length: 826 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77692 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #4 from Jakub Jelinek --- (In reply to Richard Biener from comment #3) > So -- is it worth trying to handle this special case where we know a vari= able > is readonly by means of nothing referencing it? Then the following fixes= it: It is certainly worth it, at least as long as the initializer isn't huge (b= ut that is dwarf2out.c business to decide that). Even if the variable is optimized out, people might want to ask about its value in the debugger (and often do). >>From gcc-bugs-return-538415-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 07:14:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 115283 invoked by alias); 26 Sep 2016 07:14:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 104624 invoked by uid 48); 26 Sep 2016 07:14:43 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77739] [5/6/7 Regression] internal compiler error: in create_tmp_var, at gimple-expr.c:524 Date: Mon, 26 Sep 2016 07:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc target_milestone short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02030.txt.bz2 Content-length: 807 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77739 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org, | |jason at gcc dot gnu.org Target Milestone|--- |5.5 Summary|internal compiler error: in |[5/6/7 Regression] internal |create_tmp_var, at |compiler error: in |gimple-expr.c:524 |create_tmp_var, at | |gimple-expr.c:524 --- Comment #2 from Jakub Jelinek --- Started with r202605. >>From gcc-bugs-return-538416-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 07:27:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 48150 invoked by alias); 26 Sep 2016 07:27:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 47936 invoked by uid 48); 26 Sep 2016 07:27:40 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/60962] b+(-2.f)*a generates multiplication instruction while b-2.f*a simplifies to addition&subtraction Date: Mon, 26 Sep 2016 07:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 4.8.1 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02031.txt.bz2 Content-length: 579 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60962 --- Comment #2 from Richard Biener --- Of course the inconsistency with /* We want to canonicalize to positive real constants. Pretend that only negative ones can be easily negated. */ is that we don't transform x + -2.*y to x - 2.*y (which in this case would also pessimize code, but well...). IMHO we should canonicalize here in some way and either always prefering PLUS or positive constants should do the job. The code generation issue is something for the RTL expander. >>From gcc-bugs-return-538417-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 07:29:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 50983 invoked by alias); 26 Sep 2016 07:29:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 50658 invoked by uid 48); 26 Sep 2016 07:29:42 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/56365] [5 Regression] Missed opportunities for smin/smax standard name patterns when compiling as C++ Date: Mon, 26 Sep 2016 07:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.8.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02032.txt.bz2 Content-length: 214 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D56365 --- Comment #15 from Richard Biener --- Keeping it open as it is a regression and to mark the last GCC 5 release as known-to-fail. >>From gcc-bugs-return-538418-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 07:31:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 61645 invoked by alias); 26 Sep 2016 07:31:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 57264 invoked by uid 48); 26 Sep 2016 07:30:53 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/77692] [7 regression] gcc.dg/debug/dwarf2/const-2b.c FAILs Date: Mon, 26 Sep 2016 07:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02033.txt.bz2 Content-length: 455 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77692 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |seurer at linux dot vnet.i= bm.com --- Comment #5 from Richard Biener --- *** Bug 77716 has been marked as a duplicate of this bug. *** >>From gcc-bugs-return-538419-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 07:31:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 61661 invoked by alias); 26 Sep 2016 07:31:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 57162 invoked by uid 48); 26 Sep 2016 07:30:52 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug lto/77716] [7 regression] test case gcc.dg/debug/dwarf2/const-2.c fails starting with r240228 Date: Mon, 26 Sep 2016 07:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: lto X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-debug X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02034.txt.bz2 Content-length: 510 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77716 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |DUPLICATE --- Comment #1 from Richard Biener --- It is the same issue. *** This bug has been marked as a duplicate of bug 77692 *** >>From gcc-bugs-return-538421-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 07:34:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 67963 invoked by alias); 26 Sep 2016 07:34:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 67704 invoked by uid 55); 26 Sep 2016 07:34:05 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/77692] [7 regression] gcc.dg/debug/dwarf2/const-2b.c FAILs Date: Mon, 26 Sep 2016 07:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02036.txt.bz2 Content-length: 564 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77692 --- Comment #7 from Richard Biener --- Author: rguenth Date: Mon Sep 26 07:33:33 2016 New Revision: 240483 URL: https://gcc.gnu.org/viewcvs?rev=3D240483&root=3Dgcc&view=3Drev Log: 2016-09-26 Richard Biener PR debug/77692 * cgraphunit.c (analyze_functions): Before early removing global vars calls the late_global_decl debug handler mark the variable as readonly. Modified: trunk/gcc/ChangeLog trunk/gcc/cgraphunit.c >>From gcc-bugs-return-538420-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 07:34:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 67946 invoked by alias); 26 Sep 2016 07:34:16 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 67490 invoked by uid 48); 26 Sep 2016 07:34:02 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/77692] [7 regression] gcc.dg/debug/dwarf2/const-2b.c FAILs Date: Mon, 26 Sep 2016 07:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02035.txt.bz2 Content-length: 429 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77692 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #6 from Richard Biener --- Fixed. >>From gcc-bugs-return-538422-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 08:04:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 71858 invoked by alias); 26 Sep 2016 08:04:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 71701 invoked by uid 48); 26 Sep 2016 08:04:37 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77722] -fsanitize=undefined doesn't give runtime error in function without return value, unless at least 2 instructions Date: Mon, 26 Sep 2016 08:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02037.txt.bz2 Content-length: 689 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77722 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-26 Assignee|unassigned at gcc dot gnu.org |jakub at gcc dot gn= u.org Ever confirmed|0 |1 --- Comment #1 from Jakub Jelinek --- Created attachment 39684 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39684&action=3Dedit gcc7-pr77722.patch Untested fix. >>From gcc-bugs-return-538423-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 08:15:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 64896 invoked by alias); 26 Sep 2016 08:15:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 64808 invoked by uid 48); 26 Sep 2016 08:15:17 -0000 From: "dimhen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77720] -Wformat-length= wit -O3 emit warning twice with incorrect linenumbers Date: Mon, 26 Sep 2016 08:15:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dimhen at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02038.txt.bz2 Content-length: 439 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77720 Dmitry G. Dyachenko changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #1 from Dmitry G. Dyachenko --- r240462 PASS >>From gcc-bugs-return-538424-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 08:20:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 94560 invoked by alias); 26 Sep 2016 08:20:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 94414 invoked by uid 48); 26 Sep 2016 08:20:35 -0000 From: "dimhen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77720] -Wformat-length= wit -O3 emit warning twice with incorrect linenumbers Date: Mon, 26 Sep 2016 08:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dimhen at gmail dot com X-Bugzilla-Status: CLOSED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02039.txt.bz2 Content-length: 955 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77720 Dmitry G. Dyachenko changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #2 from Dmitry G. Dyachenko --- r240462 PASS : print diagnostique one time $ gcc -Wall -c -O3 x.c x.c: In function =E2=80=98bar=E2=80=99: x.c:15:21: warning: =E2=80=98%3u=E2=80=99 directive output may be truncated= writing between 3 and 10 bytes into a region of size 4 [-Wformat-length=3D] snprintf(p, 4, "%3u", k); ^~~ x.c:15:20: note: directive argument in the range [0u, 4294967295u] snprintf(p, 4, "%3u", k); ^~~~~ x.c:15:5: note: format output between 4 and 11 bytes into a destination of = size 4 snprintf(p, 4, "%3u", k); ^~~~~~~~~~~~~~~~~~~~~~~~ >>From gcc-bugs-return-538425-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 08:29:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23436 invoked by alias); 26 Sep 2016 08:29:47 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22360 invoked by uid 48); 26 Sep 2016 08:29:34 -0000 From: "gerald at pfeifer dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77740] New: [7 regression] internal compiler error: in format_floating, at gimple-ssa-sprintf.c:1165 Date: Mon, 26 Sep 2016 08:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gerald at pfeifer dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02040.txt.bz2 Content-length: 1638 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77740 Bug ID: 77740 Summary: [7 regression] internal compiler error: in format_floating, at gimple-ssa-sprintf.c:1165 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end Assignee: unassigned at gcc dot gnu.org Reporter: gerald at pfeifer dot com Target Milestone: --- Created attachment 39685 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39685&action=3Dedit Preprocessed input file (generated with -save-temps) About four, five days ago, I started to see Wine fail to build with my daily builds of GCC on i?86-unknown-freebsd10: gmake[1]: Entering directory '/home/gerald/wine/dlls/msvcr100' /home/gerald/gcc-ref10-i386/bin/gcc -c -o math.o ../msvcrt/math.c -I. -I../msvcrt -I../../include -D__WINESRC__ -D_MT \ -D_MSVCR_VER=3D100 -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement \ -Wduplicated-cond -Wempty-body -Wignored-qualifiers -Wshift-overflow=3D2 -Wstrict-prototypes \ -Wtype-limits -Wunused-but-set-parameter -Wno-unused-const-variable -Wvla -Wwrite-strings \ -Wpointer-arith -Wlogical-op -gdwarf-2 -gstrict-dwarf -fno-omit-frame-poi= nter \ -I/home/gerald/10-i386/include -g -O2 ../msvcrt/math.c: In function =E2=80=98MSVCRT__ecvt=E2=80=99: ../msvcrt/math.c:1370:14: internal compiler error: in format_floating, at gimple-ssa-sprintf.c:1165 char * CDECL MSVCRT__ecvt( double number, int ndigits, int *decpt, int *si= gn ) ^~~~~~~~~~~~ >>From gcc-bugs-return-538426-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 08:39:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 49068 invoked by alias); 26 Sep 2016 08:39:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 48573 invoked by uid 48); 26 Sep 2016 08:39:09 -0000 From: "akrzemi1 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77741] New: Add a warning about inadvertent converting constructor Date: Mon, 26 Sep 2016 08:39:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: akrzemi1 at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02041.txt.bz2 Content-length: 2035 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77741 Bug ID: 77741 Summary: Add a warning about inadvertent converting constructor Product: gcc Version: 6.1.1 Status: UNCONFIRMED Severity: enhancement Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: akrzemi1 at gmail dot com Target Milestone: --- PROBLEM DESCRIPTION: It is a known C++ gotcha: you declare a one-argument non-explicit construct= or, even though you never intend it to participate in any conversion. This later causes bugs in code due to the inadvertent conversion being silently used. Everyone agrees that it would be better if C++ reversed the defaults: "a constructor is by default explicit, if you want it in conversions define it= as /converting/". This cannot be done due to compatibility reasons, but a comp= iler can achieve a similar effect by adding a new attribute and a warning. THE FEATURE REQUEST: Add a new attribute: [[converting]]. You can apply it to any non-explicit constructor. Its purpose is to control warning messages. Add a new warning -Wconverting (or some such) it causes a warning message in two situations: 1. A constructor that could in C++ be used in conversions (single-argument = or one where a second argument has a default value) that is not a copy or move constructor declared without attribute [[converting]]. 2. An explicit constructor declared with attribute [[converting]]. As an illustration, the following code would trigger a number of -Wconverti= ng warnings: ``` class X { public: X (); // no warning X (X const&); // no warning: copy ctor X (int); // warning: either add `explicit` or [[converting]] X (bool, bool =3D true); // warning: either add `explicit` or [[convertin= g]]=20 explicit X(string); // no warning X (double) [[converting]]; // no warning explicit X(unsigned) [[converting]]; // warning either remove `explicit` = or [[converting]] }; ``` >>From gcc-bugs-return-538427-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 08:52:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 9014 invoked by alias); 26 Sep 2016 08:52:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2999 invoked by uid 48); 26 Sep 2016 08:52:38 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77741] Add a warning about inadvertent converting constructor Date: Mon, 26 Sep 2016 08:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02042.txt.bz2 Content-length: 256 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77741 --- Comment #1 from Jonathan Wakely --- Without giving any other opinion, non-standard attributes must be scoped, s= o it would have to be gnu::converting not just converting. >>From gcc-bugs-return-538428-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 08:56:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 21490 invoked by alias); 26 Sep 2016 08:56:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 21230 invoked by uid 48); 26 Sep 2016 08:56:15 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/65122] std::vector doesn't honor element alignment Date: Mon, 26 Sep 2016 08:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02043.txt.bz2 Content-length: 751 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65122 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-26 Ever confirmed|0 |1 --- Comment #20 from Jonathan Wakely --- In C++17 std::allocator no longer says "It is implementation-defined whether over-aligned types are supported" and is no longer required to call operator new(size_t), it is supposed to use the over-aligned form as appropriate. We should do that when __cpp_aligned_new is defined. >>From gcc-bugs-return-538429-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 08:57:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23147 invoked by alias); 26 Sep 2016 08:57:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23036 invoked by uid 48); 26 Sep 2016 08:57:08 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/77714] [7 Regression] Wrong code generation for gcc.c-torture/execute/pr51447.c Date: Mon, 26 Sep 2016 08:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ra, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: target_milestone short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02044.txt.bz2 Content-length: 563 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77714 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |7.0 Summary|Wrong code generation for |[7 Regression] Wrong code |gcc.c-torture/execute/pr514 |generation for |47.c |gcc.c-torture/execute/pr514 | |47.c >>From gcc-bugs-return-538431-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:03:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63697 invoked by alias); 26 Sep 2016 09:03:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 63387 invoked by uid 48); 26 Sep 2016 09:03:32 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77719] [7 Regression] ICE in pp_string, at pretty-print.c:955 Date: Mon, 26 Sep 2016 09:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02046.txt.bz2 Content-length: 293 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77719 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |7.0 >>From gcc-bugs-return-538430-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:03:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63450 invoked by alias); 26 Sep 2016 09:03:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 63325 invoked by uid 48); 26 Sep 2016 09:03:26 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77718] [7 Regression] expand_builtin_memcmp swaps args Date: Mon, 26 Sep 2016 09:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on target_milestone short_desc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02045.txt.bz2 Content-length: 824 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77718 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |wrong-code Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-26 Target Milestone|--- |7.0 Summary|expand_builtin_memcmp swaps |[7 Regression] |args |expand_builtin_memcmp swaps | |args Ever confirmed|0 |1 --- Comment #1 from Richard Biener --- Confirmed - we may only swap if result_eq. >>From gcc-bugs-return-538433-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:08:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 82592 invoked by alias); 26 Sep 2016 09:08:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 82487 invoked by uid 48); 26 Sep 2016 09:08:45 -0000 From: "gerald at pfeifer dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77740] [7 regression] internal compiler error: in format_floating, at gimple-ssa-sprintf.c:1165 Date: Mon, 26 Sep 2016 09:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gerald at pfeifer dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02048.txt.bz2 Content-length: 257 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77740 --- Comment #1 from Gerald Pfeifer --- The minimum invocation to reproduce the issue is /some/where/gcc -c math.i -Wall -O1 Both warnings _and_ at least -O1 are required. >>From gcc-bugs-return-538432-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:08:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 81352 invoked by alias); 26 Sep 2016 09:08:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 81214 invoked by uid 48); 26 Sep 2016 09:08:08 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77728] [5/6/7 Regression] Miscompilation multiple vector iteration on ARM Date: Mon, 26 Sep 2016 09:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cf_gcctarget cf_known_to_work target_milestone short_desc cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02047.txt.bz2 Content-length: 737 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77728 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |wrong-code Target| |arm Known to work| |4.9.4 Target Milestone|--- |5.5 Summary|Miscompilation multiple |[5/6/7 Regression] |vector iteration on ARM |Miscompilation multiple | |vector iteration on ARM Known to fail| |5.1.0, 6.2.0 >>From gcc-bugs-return-538434-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:11:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 85410 invoked by alias); 26 Sep 2016 09:11:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 85228 invoked by uid 48); 26 Sep 2016 09:11:40 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77740] [7 regression] internal compiler error: in format_floating, at gimple-ssa-sprintf.c:1165 Date: Mon, 26 Sep 2016 09:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02049.txt.bz2 Content-length: 428 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77740 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |diagnostic CC| |msebor at gcc dot gnu.org Target Milestone|--- |7.0 >>From gcc-bugs-return-538435-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:24:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 115060 invoked by alias); 26 Sep 2016 09:24:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 114807 invoked by uid 48); 26 Sep 2016 09:23:57 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Mon, 26 Sep 2016 09:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02050.txt.bz2 Content-length: 663 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #5 from Richard Biener --- This can only uncover another pre-existing issue as it is a 100% obvious fi= x.=20 I do not have a good way to run anything on arm so please help me spot the wrong-code in the assembler output. TBAA issues are also often exposed by scheduling so please try -fno-schedule-insns[2] or -fstrict-aliasing with -O1. -Updating SSA information for statement MEM[(struct function *)&D.43856 + 4= B] =3D __f$__dummy_a; +Updating SSA information for statement MEM[(struct __lambda0 *)&D.43856] = =3D=20 this might also very well be a C++ FE issue. >>From gcc-bugs-return-538436-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:31:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 12254 invoked by alias); 26 Sep 2016 09:31:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 11594 invoked by uid 48); 26 Sep 2016 09:31:21 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77742] New: Warning about placement new for over-aligned type Date: Mon, 26 Sep 2016 09:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter cc target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02051.txt.bz2 Content-length: 2073 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77742 Bug ID: 77742 Summary: Warning about placement new for over-aligned type Product: gcc Version: 7.0 Status: UNCONFIRMED Keywords: diagnostic Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: redi at gcc dot gnu.org CC: jason at gcc dot gnu.org Target Milestone: --- #include struct X { alignas(2*__STDCPP_DEFAULT_NEW_ALIGNMENT__) int i; }; int main() { alignas(alignof(X)) char buf[sizeof(X)]; ::new((void*)buf) X{1}; } al.cc: In function =E2=80=98int main()=E2=80=99: al.cc:11:24: warning: =E2=80=98new=E2=80=99 of type =E2=80=98X=E2=80=99 wit= h extended alignment 32 [-Waligned-new=3D] ::new((void*)buf) X{1}; ^ al.cc:11:24: note: uses =E2=80=98void* operator new(std::size_t, void*)=E2= =80=99, which does not have an alignment parameter al.cc:11:24: note: use =E2=80=98-faligned-new=E2=80=99 to enable C++17 over= -aligned new support tmp$ g++17 al.cc -faligned-new al.cc: In function =E2=80=98int main()=E2=80=99: al.cc:11:24: warning: =E2=80=98new=E2=80=99 of type =E2=80=98X=E2=80=99 wit= h extended alignment 32 [-Waligned-new=3D] ::new((void*)buf) X{1}; ^ al.cc:11:24: note: uses =E2=80=98void* operator new(std::size_t, void*)=E2= =80=99, which does not have an alignment parameter al.cc:11:24: note: use =E2=80=98-faligned-new=E2=80=99 to enable C++17 over= -aligned new support Should this warning only be given for the non-placement forms of operator n= ew? That means trusting the programmer to have obtained suitably-aligned memory, but that's always the case even for types with a fundamental alignment. The code won't even compile without either -faligned-new or C++17, so the f= inal note is not helpful. Also, if the new-expression occurs in a system header then you still get all the notes but not the warning (unless you use -Wsystem-headers). >>From gcc-bugs-return-538437-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:34:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39646 invoked by alias); 26 Sep 2016 09:34:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 39511 invoked by uid 48); 26 Sep 2016 09:34:13 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/65122] std::vector doesn't honor element alignment Date: Mon, 26 Sep 2016 09:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02052.txt.bz2 Content-length: 345 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65122 --- Comment #21 from Jonathan Wakely --- Created attachment 39686 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39686&action=3Dedit Make new_allocator support types with new-extended alignment This works, but currently produces a warning due to PR 77742. >>From gcc-bugs-return-538438-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:34:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 40587 invoked by alias); 26 Sep 2016 09:34:35 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 40369 invoked by uid 48); 26 Sep 2016 09:34:31 -0000 From: "ktkachov at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Mon, 26 Sep 2016 09:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: ktkachov at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02053.txt.bz2 Content-length: 786 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #6 from ktkachov at gcc dot gnu.org --- (In reply to Richard Biener from comment #5) > This can only uncover another pre-existing issue as it is a 100% obvious > fix. I do not have a good way to run anything on arm so please help me s= pot > the wrong-code in the assembler output. >=20 > TBAA issues are also often exposed by scheduling so please try > -fno-schedule-insns[2] or -fstrict-aliasing with -O1. >=20 You're right. -fno-schedule-insns2 makes the testcase pass at -O2 > -Updating SSA information for statement MEM[(struct function *)&D.43856 + > 4B] =3D __f$__dummy_a; > +Updating SSA information for statement MEM[(struct __lambda0 *)&D.43856]= =3D=20 >=20 > this might also very well be a C++ FE issue. >>From gcc-bugs-return-538439-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:37:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 52639 invoked by alias); 26 Sep 2016 09:37:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 49440 invoked by uid 48); 26 Sep 2016 09:37:32 -0000 From: "thopre01 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/77714] [7 Regression] Wrong code generation for gcc.c-torture/execute/pr51447.c Date: Mon, 26 Sep 2016 09:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ra, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: thopre01 at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02054.txt.bz2 Content-length: 293 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77714 --- Comment #4 from Thomas Preud'homme --- Hi Bernd & Peter, Yes the code is still failing on today's trunk. I tested both patch you pro= pose Bernd and both seems to work. Thanks a lot for such a quick fix! >>From gcc-bugs-return-538440-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:39:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 102624 invoked by alias); 26 Sep 2016 09:39:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 101542 invoked by uid 48); 26 Sep 2016 09:39:40 -0000 From: "glisse at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/65122] std::vector doesn't honor element alignment Date: Mon, 26 Sep 2016 09:39:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: glisse at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02055.txt.bz2 Content-length: 695 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65122 --- Comment #22 from Marc Glisse --- (In reply to Jonathan Wakely from comment #20) > In C++17 std::allocator no longer says "It is implementation-defined whet= her > over-aligned types are supported" and is no longer required to call opera= tor > new(size_t), it is supposed to use the over-aligned form as appropriate. Ah, I had missed those last few lines of p0035r4 (they were not in r2). Tha= t's great news! I remember discussions and polls about the fact that the propos= al wasn't handling the library part, is there still anything missing (postpone= d?) or did the last couple revisions add everything? >>From gcc-bugs-return-538441-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:40:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 106021 invoked by alias); 26 Sep 2016 09:40:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 105659 invoked by uid 48); 26 Sep 2016 09:40:22 -0000 From: "amodra at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77743] New: bogus -Wformat-length sprintf warnings Date: Mon, 26 Sep 2016 09:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: amodra at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02056.txt.bz2 Content-length: 1203 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77743 Bug ID: 77743 Summary: bogus -Wformat-length sprintf warnings Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: amodra at gmail dot com Target Milestone: --- Found during build of current binutils. bfd/ihex.c:222:19: error: '%03o' directive writing between 3 and 11 bytes i= nto a region of size 9 [-Werror=3Dformat-length=3D] sprintf (buf, "\\%03o", (unsigned int) c & 0xff); Should not assume full range of unsigned int. bfd/coff-rs6000.c:3453:4: note: format output between 5 and 11 bytes into a destination of size 10 sprintf (reloc_type_name, "0x%02x", rel->r_type); r_type is an unsigned short. Again seems to assume full range of unsigned = int. bfd/coff-rs6000.c:1659:23: error: '%ld' directive writing between 1 and 20 bytes into a region of size 12 [-Werror=3Dformat-length=3D] sprintf (hdr.size, "%ld", (long) (4 + orl_count * 4 + stridx)); Another case where range info says the %ld value is at most 11 bytes. >>From gcc-bugs-return-538442-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:44:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 114220 invoked by alias); 26 Sep 2016 09:44:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 113367 invoked by uid 48); 26 Sep 2016 09:44:18 -0000 From: "ktkachov at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Mon, 26 Sep 2016 09:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: ktkachov at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02057.txt.bz2 Content-length: 1602 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 ktkachov at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC|kyrylo.tkachov at arm dot com | --- Comment #7 from ktkachov at gcc dot gnu.org --- As snippet of the assembly output without scheduling (-fno-schedule-insns2): .LEHE0: add r3, sp, #32 str r5, [sp, #32] <-------- I1 add ip, sp, #8 str r5, [sp, #36] <-------- I2 add r4, sp, #16 ldm r3, {r0, r1} <---------I3 add lr, sp, #4 str r5, [sp, #16] mov r2, #3 str lr, [sp, #20] movw r5, #:lower16: stm ip, {r0, r1} movt r5, #:upper16: ldm r4, {r0, r1} movw lr, #:lower16: str r5, [sp, #40] The same region with scheduling: .LEHE0: add r3, sp, #32 add ip, sp, #8 add r4, sp, #16 ldm r3, {r0, r1} <---------- I3 add lr, sp, #4 str r5, [sp, #16] mov r2, #3 str lr, [sp, #20] movw lr, #:lower16: stm ip, {r0, r1} movt lr, #:upper16: ldm r4, {r0, r1} str r5, [sp, #32] <---------- I1 str r5, [sp, #36] <---------- I2 The stores I1 and I2 were moved past the load I3 that loads from SP + 32 If I manually move those two stores back before I3 the program doesn't abort >>From gcc-bugs-return-538443-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:45:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 115630 invoked by alias); 26 Sep 2016 09:45:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 115286 invoked by uid 48); 26 Sep 2016 09:45:00 -0000 From: "thopre01 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77710] FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-4.c Date: Mon, 26 Sep 2016 09:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: thopre01 at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02058.txt.bz2 Content-length: 461 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77710 --- Comment #2 from Thomas Preud'homme --- (In reply to Martin Sebor from comment #1) > I think this failure may have been inadvertently introduced in r240434. = The > failure should be gone now that r240442 has been checked in to adjust the > test. Hi Martin, Sadly no, I've checked revision 240484 (last commit I could grab) and the failure is still there. Best regards. >>From gcc-bugs-return-538445-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:47:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 118775 invoked by alias); 26 Sep 2016 09:47:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 118623 invoked by uid 48); 26 Sep 2016 09:46:59 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/7652] -Wswitch-break : Warn if a switch case falls through Date: Mon, 26 Sep 2016 09:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: unknown X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: enhancement X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02060.txt.bz2 Content-length: 475 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D7652 Marek Polacek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #61 from Marek Polacek --- The -Wimplicit-fallthrough patch has been committed. >>From gcc-bugs-return-538444-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:47:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 118764 invoked by alias); 26 Sep 2016 09:47:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 118416 invoked by uid 55); 26 Sep 2016 09:46:53 -0000 From: "ville at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77717] testsuite/21_strings/basic_string_view/operations/compare/char/1.cc makes undefined memcmp call Date: Mon, 26 Sep 2016 09:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ville at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02059.txt.bz2 Content-length: 531 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77717 --- Comment #2 from ville at gcc dot gnu.org --- Author: ville Date: Mon Sep 26 09:46:19 2016 New Revision: 240486 URL: https://gcc.gnu.org/viewcvs?rev=3D240486&root=3Dgcc&view=3Drev Log: PR libstdc++/77717 * testsuite/21_strings/basic_string_view/operations/compare/char/1.= cc: Fix an out-of-bounds access. Modified: trunk/libstdc++-v3/ChangeLog =20=20=20 trunk/libstdc++-v3/testsuite/21_strings/basic_string_view/operations/compar= e/char/1.cc >>From gcc-bugs-return-538446-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:51:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 13543 invoked by alias); 26 Sep 2016 09:51:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 12482 invoked by uid 48); 26 Sep 2016 09:50:59 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77742] Warning about placement new for over-aligned type Date: Mon, 26 Sep 2016 09:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02061.txt.bz2 Content-length: 292 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77742 --- Comment #1 from Richard Biener --- As placement new has no control over the memory alignment the warning looks useless to me. In this particular case we even know statically the memory = is well-aligned. >>From gcc-bugs-return-538447-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 09:53:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 128402 invoked by alias); 26 Sep 2016 09:53:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 128235 invoked by uid 48); 26 Sep 2016 09:53:09 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/65122] std::vector doesn't honor element alignment Date: Mon, 26 Sep 2016 09:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02062.txt.bz2 Content-length: 185 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65122 --- Comment #23 from Jonathan Wakely --- I think it's supposed to be cover everything, but I'm not sure. >>From gcc-bugs-return-538448-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 10:13:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3948 invoked by alias); 26 Sep 2016 10:13:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3808 invoked by uid 48); 26 Sep 2016 10:12:53 -0000 From: "thopre01 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77713] gcc.dg/tree-ssa/builtin-sprintf.c compilation failed to produce executable Date: Mon, 26 Sep 2016 10:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: thopre01 at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02063.txt.bz2 Content-length: 2207 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77713 --- Comment #3 from Thomas Preud'homme --- Test now builds but execution shows a few FAIL: FAIL: test_d_i:266: "%hhi" expected result for "-16657" doesn't match funct= ion call return value: 6 not in [1, 4] FAIL: test_d_i:267: "%hhu" expected result for "48879" doesn't match functi= on call return value: 5 not in [1, 3] FAIL: test_x:314: "%2hhx" expected result for "dead" doesn't match function call return value: 4 !=3D 2 FAIL: test_x:315: "%02hhx" expected result for "dead" doesn't match function call return value: 4 !=3D 2 FAIL: test_x:316: "%#05hhx" expected result for "0xdead" doesn't match func= tion call return value: 6 !=3D 5 FAIL: test_x:318: "%2hhx" expected result for "beef" doesn't match function call return value: 4 !=3D 2 FAIL: test_x:319: "%02hhx" expected result for "beef" doesn't match function call return value: 4 !=3D 2 FAIL: test_x:320: "%#05hhx" expected result for "0xbeef" doesn't match func= tion call return value: 6 !=3D 5 FAIL: test_a_double:364: "%a" expected result for "a" doesn't match function call return value: 1 !=3D 6 FAIL: test_a_double:365: "%a" expected result for "a" doesn't match function call return value: 1 !=3D 6 FAIL: test_a_double:366: "%a" expected result for "a" doesn't match function call return value: 1 !=3D 6 FAIL: test_a_double:368: "%.1a" expected result for "a" doesn't match funct= ion call return value: 1 !=3D 8 FAIL: test_a_double:369: "%.2a" expected result for "a" doesn't match funct= ion call return value: 1 !=3D 9 FAIL: test_a_long_double:375: "%La" expected result for "a" doesn't match function call return value: 1 !=3D 6 FAIL: test_a_long_double:376: "%La" expected result for "a" doesn't match function call return value: 1 !=3D 6 FAIL: test_a_long_double:377: "%La" expected result for "a" doesn't match function call return value: 1 !=3D 6 FAIL: test_a_long_double:379: "%.1La" expected result for "a" doesn't match function call return value: 1 !=3D 8 FAIL: test_a_long_double:380: "%.2La" expected result for "a" doesn't match function call return value: 1 !=3D 9 Do you want me to open a separate ticket for that? Best regards. >>From gcc-bugs-return-538449-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 10:31:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 45140 invoked by alias); 26 Sep 2016 10:31:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 40104 invoked by uid 48); 26 Sep 2016 10:31:18 -0000 From: "ville.voutilainen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77717] testsuite/21_strings/basic_string_view/operations/compare/char/1.cc makes undefined memcmp call Date: Mon, 26 Sep 2016 10:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ville.voutilainen at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02064.txt.bz2 Content-length: 453 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77717 Ville Voutilainen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #3 from Ville Voutilainen = --- Fixed. >>From gcc-bugs-return-538450-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 10:37:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 61042 invoked by alias); 26 Sep 2016 10:37:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 60219 invoked by uid 48); 26 Sep 2016 10:37:11 -0000 From: "edlinger at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/77714] [7 Regression] Wrong code generation for gcc.c-torture/execute/pr51447.c Date: Mon, 26 Sep 2016 10:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ra, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: edlinger at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02065.txt.bz2 Content-length: 881 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77714 --- Comment #5 from Bernd Edlinger --- (In reply to Thomas Preud'homme from comment #4) > Hi Bernd & Peter, >=20 > Yes the code is still failing on today's trunk. I tested both patch you > propose Bernd and both seems to work. Thanks a lot for such a quick fix! OK, thanks for the confirmation. The problem with the first patch is, that the offset from HFP to SFP may change in a later iteration, but if I change the destination register in the first iteration that instruction wont be fixed up again. However, there are no test cases where that happens. The second patch is correct in itself. But because src !=3D dst register, the chosen thumb1 instruction is less efficient as it was before r240065. In the moment I would think that is no big problem, as it only affects non-local jumps. >>From gcc-bugs-return-538451-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 11:05:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25279 invoked by alias); 26 Sep 2016 11:05:03 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 16284 invoked by uid 55); 26 Sep 2016 11:04:51 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/23332] FIXME in tree-profile.c: tree_gen_const_delta_profiler not implemented Date: Mon, 26 Sep 2016 11:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: FIXME X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02066.txt.bz2 Content-length: 907 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D23332 --- Comment #2 from Martin Li=C5=A1ka --- Author: marxin Date: Mon Sep 26 11:04:18 2016 New Revision: 240492 URL: https://gcc.gnu.org/viewcvs?rev=3D240492&root=3Dgcc&view=3Drev Log: Remove HIST_TYPE_CONST_DELTA counter type (PR gcov-profile/23332) PR gcov-profile/23332 * profile.c (instrument_values): Do not handle HIST_TYPE_CONST_DELTA. * tree-profile.c (gimple_gen_const_delta_profiler): Remove. * value-prof.c (dump_histogram_value): Do not handle HIST_TYPE_CONST_DELTA. (stream_in_histogram_value): Likewise. (gimple_find_values_to_profile): Likewise. * value-prof.h (enum hist_type): Likewise. Modified: trunk/gcc/ChangeLog trunk/gcc/profile.c trunk/gcc/tree-profile.c trunk/gcc/value-prof.c trunk/gcc/value-prof.h >>From gcc-bugs-return-538452-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 11:05:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26430 invoked by alias); 26 Sep 2016 11:05:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 26217 invoked by uid 48); 26 Sep 2016 11:05:19 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/23332] FIXME in tree-profile.c: tree_gen_const_delta_profiler not implemented Date: Mon, 26 Sep 2016 11:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: FIXME X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02067.txt.bz2 Content-length: 442 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D23332 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #3 from Martin Li=C5=A1ka --- Fixed on trunk. >>From gcc-bugs-return-538454-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 11:16:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 49867 invoked by alias); 26 Sep 2016 11:16:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 49571 invoked by uid 48); 26 Sep 2016 11:16:17 -0000 From: "var at schellong dot biz" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/27077] [x86, 4.1] builtin strlen poor performance Date: Mon, 26 Sep 2016 11:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: var at schellong dot biz X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02069.txt.bz2 Content-length: 5257 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27077 Helmut Schellong changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |var at schellong dot biz --- Comment #6 from Helmut Schellong --- gcc 6.2 ....... builtin strlen: 137.787 ns libc strlen: 12.562 ns (-fno-builtin-strlen) About 12 times faster! See table below. The slow functions match in the use of string instructions. E.g. libc: memcmp.S (assembler) and so on. Especially compare functions return early at most on the first .. third cha= r! memcmp/memcmp_F 38.198 2.707 [ns] ta/tb =3D 14.11 Bem.: abcd, AbcD, 2 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp_F 42.712 4.211 [ns] ta/tb =3D 10.14 Bem.: abcd, abcD, 5 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp_F 52.509 8.725 [ns] ta/tb =3D 6.02 Bem.: a-h, a-H, 9 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp_F 27.335 18.058 [ns] ta/tb =3D 1.51 Bem.: a-z, a-Z, 27 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp_F 47.842 33.706 [ns] ta/tb =3D 1.42 Bem.: a-z, a-Z, 53 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp_F 67.691 71.879 [ns] ta/tb =3D 0.94 Bem.: a-z, a-Z, 105 Core2Duo3333/FreeBSD_10.1 memset/memset8 27.088 7.521 [ns] ta/tb =3D 3.60 | = 10 memset/memset8 58.958 8.421 [ns] ta/tb =3D 7.00 | = 20 memset/memset8 35.186 6.863 [ns] ta/tb =3D 5.13 | = 30 memset/memset8 58.961 10.830 [ns] ta/tb =3D 5.44 | = 50 memset/memset8 58.980 17.449 [ns] ta/tb =3D 3.38 | = 100 memset/memset8 39.655 24.378 [ns] ta/tb =3D 1.63 | = 256 memset/memset8 76.700 53.598 [ns] ta/tb =3D 1.43 | = 1000 memset/memset8 228.024 204.360 [ns] ta/tb =3D 1.12 | = 5000 memset/memset8 415.862 391.599 [ns] ta/tb =3D 1.06 | = 10000 memset/memset8 5675.480 5859.560 [ns] ta/tb =3D 0.97 | = 100000 memset/memset8 5667.370 5993.000 [ns] ta/tb =3D 0.95 Bem.: arr+3, 100000 Core2Duo3333/FreeBSD_10.1 memcpy/memcpy8 50568.300 47217.600 [ns] ta/tb =3D 1.07 Bem.: arr+3, arr+1, 100000 Core2Duo3333/FreeBSD_10.1 memcpy/memcpy8 50603.000 8896.300 [ns] ta/tb =3D 5.69 Bem.: arr+3, arr+3, 100000 Core2Duo3333/FreeBSD_10.1 memcpy/memcpy8 9231.980 9028.020 [ns] ta/tb =3D 1.02 Bem.: arr+0, arr+0, 100000 Core2Duo3333/FreeBSD_10.1 memcpy/memcpy8 15.343 17.753 [ns] ta/tb =3D 0.86 Bem.: arr+3, arr+1, 10 Core2Duo3333/FreeBSD_10.1 memcpy/memcpy8 42.720 27.385 [ns] ta/tb =3D 1.56 Bem.: arr+3, arr+1, 20 Core2Duo3333/FreeBSD_10.1 memcpy/memcpy8 25.781 37.901 [ns] ta/tb =3D 0.68 Bem.: arr+3, arr+1, 50 Core2Duo3333/FreeBSD_10.1 memcpy/memcpy8 78.229 64.093 [ns] ta/tb =3D 1.22 Bem.: arr+3, arr+1, 100 Core2Duo3333/FreeBSD_10.1 memcpy/memcpy8 75.217 18.964 [ns] ta/tb =3D 3.97 Bem.: arr+3, arr+3, 100 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp8 37.584 3.309 [ns] ta/tb =3D 11.36 Bem.: arr+0, arr+0, 2 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp8 42.121 5.506 [ns] ta/tb =3D 7.65 Bem.: arr+0, arr+0, 5 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp8 43.927 7.518 [ns] ta/tb =3D 5.84 Bem.: arr+0, arr+0, 27 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp8 49.618 11.421 [ns] ta/tb =3D 4.34 Bem.: arr+0, arr+0, 53 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp8 67.068 20.441 [ns] ta/tb =3D 3.28 Bem.: arr+0, arr+0, 105 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp8 67.700 25.281 [ns] ta/tb =3D 2.68 Bem.: arr+3, arr+0, 105 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp8 71.608 25.272 [ns] ta/tb =3D 2.83 Bem.: arr+3, arr+1, 105 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp8 15088.468 10363.376 [ns] ta/tb =3D 1.46 Bem.: arr+0, arr+0, 100002 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp8 151610.600 104768.150 [ns] ta/tb =3D 1.45 Bem.: arr+0, arr+0, 1000002 Core2Duo3333/FreeBSD_10.1 memcmp/memcmp8 13964.650 10280.200 [ns] ta/tb =3D 1.36 Bem.: arr+0, arr+0, 100002 Core2Duo3333/FreeBSD_10.1 strlen/strlen_F 11648.990 38192.520 [ns] ta/tb =3D 0.31 Bem.: string 100000 Core2Duo3333/FreeBSD_10.1 strlen/strlen_F 137.787 46.930 [ns] ta/tb =3D 2.94 Bem.: string 100; builtin rep scasb Core2Duo3333/FreeBSD_10.1 strlen/strlen_F 12.562 43.338 [ns] ta/tb =3D 0.29 Bem.: string 100 Core2Duo3333/FreeBSD_10.1 strlen/strlen_F 5.323 12.635 [ns] ta/tb =3D 0.42 Bem.: string 20 Core2Duo3333/FreeBSD_10.1 Mathematical method: t =3D 2t+L - (t+L) ; L=3Dlooptime >>From gcc-bugs-return-538453-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 11:16:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 48685 invoked by alias); 26 Sep 2016 11:16:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 47875 invoked by uid 55); 26 Sep 2016 11:16:00 -0000 From: "pault at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/48298] [F03] User-Defined Derived-Type IO (DTIO) Date: Mon, 26 Sep 2016 11:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 4.7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pault at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02068.txt.bz2 Content-length: 568 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D48298 --- Comment #25 from Paul Thomas --- Author: pault Date: Mon Sep 26 11:15:23 2016 New Revision: 240493 URL: https://gcc.gnu.org/viewcvs?rev=3D240493&root=3Dgcc&view=3Drev Log: 2016-09-26 Paul Thomas PR fortran/48298 * interface.c (gfc_find_specific_dtio_proc) : Return NULL if the derived type is broken, as indicated by a flavor other than FL_DERIVED. Modified: trunk/gcc/fortran/ChangeLog trunk/gcc/fortran/interface.c >>From gcc-bugs-return-538455-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 11:33:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 103223 invoked by alias); 26 Sep 2016 11:33:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 82155 invoked by uid 48); 26 Sep 2016 11:33:08 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Mon, 26 Sep 2016 11:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02070.txt.bz2 Content-length: 1272 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #8 from Richard Biener --- (In reply to ktkachov from comment #7) > As snippet of the assembly output without scheduling (-fno-schedule-insns= 2): > .LEHE0: > add r3, sp, #32 > str r5, [sp, #32] <-------- I1 > add ip, sp, #8 > str r5, [sp, #36] <-------- I2 > add r4, sp, #16 > ldm r3, {r0, r1} <---------I3 > add lr, sp, #4 > str r5, [sp, #16] > mov r2, #3 > str lr, [sp, #20] > movw r5, #:lower16: > stm ip, {r0, r1} > movt r5, #:upper16: > ldm r4, {r0, r1} > movw lr, #:lower16: > str r5, [sp, #40] > >=20 > The same region with scheduling: > .LEHE0: > add r3, sp, #32 > add ip, sp, #8 > add r4, sp, #16 > ldm r3, {r0, r1} <---------- I3 > add lr, sp, #4 > str r5, [sp, #16] > mov r2, #3 > str lr, [sp, #20] > movw lr, #:lower16: > stm ip, {r0, r1} > movt lr, #:upper16: > ldm r4, {r0, r1} > str r5, [sp, #32] <---------- I1 > str r5, [sp, #36] <---------- I2 >=20 > The stores I1 and I2 were moved past the load I3 that loads from SP + 32 > If I manually move those two stores back before I3 the program doesn't ab= ort which function is the above in? Also can you please attach preprocessed source? >>From gcc-bugs-return-538456-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 11:51:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42140 invoked by alias); 26 Sep 2016 11:51:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 40189 invoked by uid 48); 26 Sep 2016 11:51:40 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug sanitizer/69539] ICE in expand_UBSAN_NULL, at internal-fn.c:202 Date: Mon, 26 Sep 2016 11:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: sanitizer X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02071.txt.bz2 Content-length: 384 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D69539 --- Comment #7 from Jakub Jelinek --- Seems to be related to PR69254, either we should force in some flag_sanitize flag whenever we stream in IFN_UBSAN_* builtins (perhaps depending on which option that was), or throw away the IFN_UBSAN_* calls if corresponding flag_sanitize isn't enabled at LTO time. >>From gcc-bugs-return-538457-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 12:02:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 102572 invoked by alias); 26 Sep 2016 12:02:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 102456 invoked by uid 48); 26 Sep 2016 12:02:07 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/42015] gcov reports incorrect branches executed Date: Mon, 26 Sep 2016 12:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02072.txt.bz2 Content-length: 1872 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D42015 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #3 from Martin Li=C5=A1ka --- Ok, after code inspection, I came to observation that the output is correct. Let's assume following example: $ cat pr42015.c.gcov -: 0:Source:pr42015.c -: 0:Graph:pr42015.gcno -: 0:Data:pr42015.gcda -: 0:Runs:1 -: 0:Programs:1 -: 1:#include -: 2: 1: 3:int main (void) -: 4:{ -: 5: int i, total; -: 6: 1: 7: total =3D 0; -: 8: 11: 9: for (i =3D 0; i < 10; i++) 10: 10: total +=3D i; -: 11: 1: 12: if (total !=3D 1111) 1: 13: return 0; -: 14: #####: 15: if (total !=3D 45) #####: 16: printf ("Failure\n"); -: 17: else #####: 18: printf ("Success\n"); #####: 19: return 0; -: 20:} $ gcov pr42015.c -b File 'pr42015.c' Lines executed:60.00% of 10 Branches executed:66.67% of 6 Taken at least once:50.00% of 6 Calls executed:0.00% of 2 Creating 'pr42015.c.gcov' 'Branches executed' means a number of branches whose condition was at least once evaluated (and obviously one branch is taken). Thus, as the condition on line 15 is never executed we have 2 branches that were not executed. On the other hand, 'Taken at least once' equal to 3 means execution of both branches of 'for' statement and 1 for 'i= f' on the line 12. Hope it's now clear, closing the PR as invalid. >>From gcc-bugs-return-538458-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 12:16:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 51220 invoked by alias); 26 Sep 2016 12:16:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 49579 invoked by uid 48); 26 Sep 2016 12:16:09 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/62267] disable fprofile-use at coverage-mismatch Date: Mon, 26 Sep 2016 12:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.9.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02073.txt.bz2 Content-length: 570 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D62267 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marxin at gcc dot gnu.org --- Comment #2 from Martin Li=C5=A1ka --- I've just talked to Honza, who's been building libreoffice with PGO and he can't see profile mismatch. Is it still issue? If so, I can probably take a look at a new option for that. >>From gcc-bugs-return-538459-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 12:16:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 53014 invoked by alias); 26 Sep 2016 12:16:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 51959 invoked by uid 48); 26 Sep 2016 12:16:29 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/62267] disable fprofile-use at coverage-mismatch Date: Mon, 26 Sep 2016 12:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.9.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02074.txt.bz2 Content-length: 410 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D62267 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |WAITING Last reconfirmed| |2016-09-26 Ever confirmed|0 |1 >>From gcc-bugs-return-538460-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 12:30:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 109065 invoked by alias); 26 Sep 2016 12:30:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 108727 invoked by uid 48); 26 Sep 2016 12:29:49 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/69833] Warning during bootstrap of --with-build-config=bootstrap-asan Date: Mon, 26 Sep 2016 12:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02075.txt.bz2 Content-length: 481 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D69833 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |INVALID --- Comment #8 from Martin Li=C5=A1ka --- Can't reproduce that any longer, closing as invalid. >>From gcc-bugs-return-538461-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 12:32:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121159 invoked by alias); 26 Sep 2016 12:32:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121117 invoked by uid 48); 26 Sep 2016 12:32:54 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/68080] gcov returns negative counts Date: Mon, 26 Sep 2016 12:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02076.txt.bz2 Content-length: 624 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D68080 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #4 from Martin Li=C5=A1ka --- OK, couple weeks ago, I added new option -fprofile-update=3Datomic which pr= events profile corruption. Warning about not joining threads is mentioned in documentation, I'm closing the PR as fixed. >>From gcc-bugs-return-538462-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 12:44:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27770 invoked by alias); 26 Sep 2016 12:44:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27623 invoked by uid 48); 26 Sep 2016 12:43:59 -0000 From: "morandidodo at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgomp/77744] New: Data race on std::regex_iterator using openmp Date: Mon, 26 Sep 2016 12:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgomp X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: morandidodo at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02077.txt.bz2 Content-length: 1627 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77744 Bug ID: 77744 Summary: Data race on std::regex_iterator using openmp Product: gcc Version: 6.2.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libgomp Assignee: unassigned at gcc dot gnu.org Reporter: morandidodo at gmail dot com CC: jakub at gcc dot gnu.org Target Milestone: --- Created attachment 39687 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39687&action=3Dedit Output of the test program with thread sanitizer Here this simple piece of code: #include #include int main() { const std::string test =3D "this is a test"; const std::regex reTest("[ths]"); auto f =3D [&test, &reTest]() { std::sregex_iterator iter(std::begin(test), std::end(test), reTest); }; #pragma omp parallel for for(unsigned i =3D 0; i < 10; ++i) f(); } If run with thread sanitizer, it will warn about some data races (see attachment). A similar example using std::threads... #include #include #include int main() { const std::string test =3D "this is a test"; const std::regex reTest("[ths]"); std::vector threads; auto f =3D [&test, &reTest]() { std::sregex_iterator iter(std::begin(test), std::end(test), reTest); }; for(unsigned i =3D 0; i < 10; ++i) threads.emplace_back(f); for(std::thread& curThread : threads) curThread.join(); } ...will not trigger any data race. >>From gcc-bugs-return-538463-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 12:50:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 10816 invoked by alias); 26 Sep 2016 12:50:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 7927 invoked by uid 48); 26 Sep 2016 12:50:30 -0000 From: "ktkachov at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Mon, 26 Sep 2016 12:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: ktkachov at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02078.txt.bz2 Content-length: 404 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #9 from ktkachov at gcc dot gnu.org --- Created attachment 39688 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39688&action=3Dedit Preprocessed source Attaching the preprocessed source. The function in question is: _ZN1C4doCbEv This is compiled with -std=3Dgnu++14 -O2 -march=3Darmv7-a -mfpu=3Dvfpv3-d= 16 -mfloat-abi=3Dhard >>From gcc-bugs-return-538464-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 12:52:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 15798 invoked by alias); 26 Sep 2016 12:52:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 15630 invoked by uid 48); 26 Sep 2016 12:52:21 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77744] Data race on std::regex_iterator using openmp Date: Mon, 26 Sep 2016 12:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02079.txt.bz2 Content-length: 477 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77744 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- Component|libgomp |libstdc++ --- Comment #1 from Jakub Jelinek --- If the C++ standards allows these to be used without locking, then it is li= kely a bug in libstdc++, not libgomp. >>From gcc-bugs-return-538465-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 12:53:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 20033 invoked by alias); 26 Sep 2016 12:53:03 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 18324 invoked by uid 48); 26 Sep 2016 12:52:58 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77537] [6 Regression] pair constructors do not properly SFINAE Date: Mon, 26 Sep 2016 12:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: REOPENED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_known_to_work target_milestone short_desc cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02080.txt.bz2 Content-length: 888 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77537 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Known to work| |5.4.0 Target Milestone|--- |6.3 Summary|pair constructors do not |[6 Regression] pair |properly SFINAE |constructors do not | |properly SFINAE Known to fail| |6.2.0 --- Comment #8 from Jonathan Wakely --- With 5.4 only one of assertions failed: pair.cc:11:1: error: static assertion failed: FAIL static_assert(!std::is_constructible, int, moveonly&>::value, "FAIL"); ^ So I'm marking this as a regression. >>From gcc-bugs-return-538466-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 12:54:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 21717 invoked by alias); 26 Sep 2016 12:54:03 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 21164 invoked by uid 48); 26 Sep 2016 12:53:50 -0000 From: "morandidodo at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77744] Data race on std::regex_iterator using openmp Date: Mon, 26 Sep 2016 12:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: morandidodo at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02081.txt.bz2 Content-length: 288 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77744 --- Comment #2 from morandidodo at gmail dot com --- (In reply to Jakub Jelinek from comment #1) > If the C++ standards allows these to be used without locking, then it is > likely a bug in libstdc++, not libgomp. Sorry, my fault ;) >>From gcc-bugs-return-538467-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 13:45:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 98039 invoked by alias); 26 Sep 2016 13:45:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 97827 invoked by uid 48); 26 Sep 2016 13:45:28 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77744] Data race on std::regex_iterator using openmp Date: Mon, 26 Sep 2016 13:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02082.txt.bz2 Content-length: 619 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77744 --- Comment #3 from Jonathan Wakely --- The std::thread example is similar, but not the same. The OpenMP version sh= ares f, so is equivalent to creating the std::thread objects with std::ref(f). More importantly, the OpenMP version does not wait for the loop to finish (= or at least, I see "#pragma omp for nowait" in the GIMPLE dump), so there is no happens-before relation between the loop body and the reTest destructor. I see the same races using: for(unsigned i =3D 0; i < 10; ++i) std::thread{std::ref(f)}.detach(); >>From gcc-bugs-return-538468-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 13:45:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 98050 invoked by alias); 26 Sep 2016 13:45:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 97838 invoked by uid 48); 26 Sep 2016 13:45:29 -0000 From: "bernds at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77718] [7 Regression] expand_builtin_memcmp swaps args Date: Mon, 26 Sep 2016 13:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: bernds at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02083.txt.bz2 Content-length: 283 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77718 --- Comment #2 from Bernd Schmidt --- Over here the testcase seems not to arrive in this function, and it prints = the same value (-5) twice, which I think is supposed to be expected? Please clarify. >>From gcc-bugs-return-538469-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 13:59:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 108947 invoked by alias); 26 Sep 2016 13:59:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 108658 invoked by uid 48); 26 Sep 2016 13:59:04 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77744] Data race on std::regex_iterator using openmp Date: Mon, 26 Sep 2016 13:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02084.txt.bz2 Content-length: 718 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77744 --- Comment #4 from Jonathan Wakely --- This shows the same race, without any library components: struct regex { struct regex_impl { int i; int size() const { return i; } }; regex_impl* p; regex() : p(new regex_impl{42}) { } ~regex() { delete p; } int size() const { return p->size(); } void f(int) const { } }; struct regex_iterator { regex_iterator(const regex& re) { for (int i =3D 0; i < re.size(); ++i) re.f(i); } }; int main() { const regex reTest; auto f =3D [&reTest]() { regex_iterator iter(reTest); }; #pragma omp parallel for for(unsigned i =3D 0; i < 10; ++i) f(); } >>From gcc-bugs-return-538470-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 14:01:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121422 invoked by alias); 26 Sep 2016 14:01:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121170 invoked by uid 48); 26 Sep 2016 14:01:27 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77744] Data race on std::regex_iterator using openmp Date: Mon, 26 Sep 2016 14:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02085.txt.bz2 Content-length: 467 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77744 --- Comment #5 from Jakub Jelinek --- Pedantically this isn't valid, because you are mixing C++11 features (lambd= as) with OpenMP, which doesn't support C++11 even in 4.5, so it is all unspecif= ied behavior. Also, have you built libgomp with -fsanitize=3Dthread after configuring it = with --disable-linux-futex (otherwise libtsan doesn't understand the barriers et= c. in libgomp)? >>From gcc-bugs-return-538471-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 14:18:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 59817 invoked by alias); 26 Sep 2016 14:18:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 58209 invoked by uid 48); 26 Sep 2016 14:17:56 -0000 From: "morandidodo at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77744] Data race on std::regex_iterator using openmp Date: Mon, 26 Sep 2016 14:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: morandidodo at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02086.txt.bz2 Content-length: 1031 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77744 --- Comment #6 from morandidodo at gmail dot com --- (In reply to Jakub Jelinek from comment #5) > Pedantically this isn't valid, because you are mixing C++11 features > (lambdas) with OpenMP, which doesn't support C++11 even in 4.5, so it is = all > unspecified behavior. >=20 > Also, have you built libgomp with -fsanitize=3Dthread after configuring it > with --disable-linux-futex (otherwise libtsan doesn't understand the > barriers etc. in libgomp)? I was not aware of possible issues between OpenMP and C++11/14 lambda featu= res. However, in this case, the content of f can be inlined inside the loop, and= the result is the same. Furthermore, you can try to construct other kind of object, but I am only getting this data race when using std::regex_iterator (however the empty constructor works fine). If you try with other "simpler" objects that allocates memory on the heap (= just a simple std::vector(10, "test") ), the data race is not triggered. >>From gcc-bugs-return-538472-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 14:21:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 53731 invoked by alias); 26 Sep 2016 14:21:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 53509 invoked by uid 48); 26 Sep 2016 14:21:33 -0000 From: "amonakov at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77745] New: Inconsistent application of aliasing rules Date: Mon, 26 Sep 2016 14:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: amonakov at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02087.txt.bz2 Content-length: 1518 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77745 Bug ID: 77745 Summary: Inconsistent application of aliasing rules Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: amonakov at gcc dot gnu.org Target Milestone: --- For the following C++ testcase: #include long foo(char *c1, char *c2) { long *p1 =3D new(c1) long; *p1 =3D 100; long long *p2 =3D new(c2) long long; *p2 =3D 200; long *p3 =3D new(c2) long; *p3 =3D 200; return *p1; } GCC generates on x86-64: movq $100, (%rdi) movl $100, %eax movq $200, (%rsi) ret i.e. the routine returns 100 unconditionally, regardless of whether c1 and = c2 point to the same storage. However, changing '*p3 =3D 200' to e.g. '*p3 =3D= 300' (another constant), or using a 32-bit target (so the types are no longer sa= me size) suppresses the optimization. Since this source code is either well-defined or not regardless of the last constant value, or "bitness" of the target, there's an internal inconsisten= cy in GCC: either it performed a misoptimization in the above output, or misses the same optimization in other circumstances. I see the propagation happening in fre1 pass. GCC 4.5 didn't perform this transformation, so if it's invalid, that's a regression. >>From gcc-bugs-return-538473-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 14:48:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 6871 invoked by alias); 26 Sep 2016 14:48:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 6674 invoked by uid 48); 26 Sep 2016 14:48:08 -0000 From: "ioctl at yandex dot ru" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/62267] disable fprofile-use at coverage-mismatch Date: Mon, 26 Sep 2016 14:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.9.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ioctl at yandex dot ru X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02088.txt.bz2 Content-length: 139 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D62267 --- Comment #3 from ioctl at yandex dot ru --- Unfortunatelly I cannot check it now. >>From gcc-bugs-return-538474-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 15:01:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 52238 invoked by alias); 26 Sep 2016 15:01:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 52013 invoked by uid 48); 26 Sep 2016 15:01:26 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/62267] disable fprofile-use at coverage-mismatch Date: Mon, 26 Sep 2016 15:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.9.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02089.txt.bz2 Content-length: 538 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D62267 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WONTFIX Severity|normal |enhancement --- Comment #4 from Martin Li=C5=A1ka --- Ok, please reopen the issue if it's still valid. >>From gcc-bugs-return-538475-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 15:20:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 29590 invoked by alias); 26 Sep 2016 15:20:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 28899 invoked by uid 48); 26 Sep 2016 15:20:12 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77666] ICE in gfc_omp_clause_default_ctor, at fortran/trans-openmp.c:471 Date: Mon, 26 Sep 2016 15:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: openmp X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02090.txt.bz2 Content-length: 578 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77666 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |jakub at gcc dot gn= u.org --- Comment #2 from Jakub Jelinek --- Created attachment 39689 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39689&action=3Dedit gcc7-pr77666.patch Untested fix. >>From gcc-bugs-return-538476-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 15:24:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 103810 invoked by alias); 26 Sep 2016 15:24:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 98879 invoked by uid 48); 26 Sep 2016 15:24:32 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/57115] Cannot merge separate single counters for function Date: Mon, 26 Sep 2016 15:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02091.txt.bz2 Content-length: 491 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D57115 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #2 from Martin Li=C5=A1ka --- -fprofile-update=3Datomic option was added, closing as resolved. >>From gcc-bugs-return-538477-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 15:26:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 106886 invoked by alias); 26 Sep 2016 15:26:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 106626 invoked by uid 48); 26 Sep 2016 15:26:19 -0000 From: "vladimir.fuka at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77746] New: [5 Regression] Wrong subroutine called, clash of specific procedure name and binding-name Date: Mon, 26 Sep 2016 15:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: vladimir.fuka at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02092.txt.bz2 Content-length: 1537 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77746 Bug ID: 77746 Summary: [5 Regression] Wrong subroutine called, clash of specific procedure name and binding-name Product: gcc Version: 5.3.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: vladimir.fuka at gmail dot com Target Milestone: --- This program finishes successfully with 4.9 and crashes with 5.3.1 The generic resolution selects wrong procedure. The calling procedure happe= ns to have the same binding-name as the name of the correct specific procedure= and gets called recursively instead of the correct one. See also similar: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D66695 (I h= ave already 15 still open bugs in gfortran and this is the 16th!) Output: > gfortran-5 bug1.F90=20 > ./a.out=20 Segmentation fault > gfortran-5 -fcheck=3Dall bug1.F90=20 > ./a.out=20 At line 22 of file bug1.F90 Fortran runtime error: Recursive call to nonrecursive procedure 'p_execute' module first private public execute interface execute module procedure random_name end interface contains subroutine random_name() end subroutine end module module test use first implicit none contains subroutine p_execute(i) bind(C, name=3D"random_name") integer :: i call execute() end subroutine end module use test call p_execute(1) end >>From gcc-bugs-return-538478-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 15:28:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 112160 invoked by alias); 26 Sep 2016 15:28:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 112074 invoked by uid 48); 26 Sep 2016 15:28:27 -0000 From: "acsawdey at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77718] [7 Regression] expand_builtin_memcmp swaps args Date: Mon, 26 Sep 2016 15:28:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: acsawdey at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02093.txt.bz2 Content-length: 634 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77718 --- Comment #3 from acsawdey at gcc dot gnu.org --- Bernd, I identified the problem on powerpc64le. I think it may not show up on x8= 6_64 because of differences in how builtin memcmp gets expanded. Normally this is hidden because if both strings are constant, this gets handled by folding. = It only shows up in the test case because the length given is longer than the string length, which prevents folding (undefined behavior). It seems clear to me that it is only legitimate to swap the args in the result_eq case because otherwise you are changing the sign of the result. >>From gcc-bugs-return-538479-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 15:29:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 115071 invoked by alias); 26 Sep 2016 15:29:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 114988 invoked by uid 48); 26 Sep 2016 15:29:29 -0000 From: "vladimir.fuka at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77746] [5 Regression] Wrong subroutine called, clash of specific procedure name and binding-name Date: Mon, 26 Sep 2016 15:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: vladimir.fuka at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02094.txt.bz2 Content-length: 576 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77746 --- Comment #1 from Vladimir Fuka --- -fdump-tree-original random_name () { } p_execute (integer(kind=3D4) & restrict i) { p_execute (); } MAIN__ () { { static integer(kind=3D4) C.3388 =3D 1; p_execute (&C.3388); } } main (integer(kind=3D4) argc, character(kind=3D1) * * argv) { static integer(kind=3D4) options.0[9] =3D {68, 1023, 0, 0, 1, 1, 0, 0, 31= }; _gfortran_set_args (argc, argv); _gfortran_set_options (9, &options.0[0]); MAIN__ (); return 0; } >>From gcc-bugs-return-538480-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 15:30:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 116992 invoked by alias); 26 Sep 2016 15:30:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116841 invoked by uid 48); 26 Sep 2016 15:30:43 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77745] Inconsistent application of aliasing rules Date: Mon, 26 Sep 2016 15:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02095.txt.bz2 Content-length: 792 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77745 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |trippels at gcc dot gnu.org --- Comment #1 from Markus Trippelsdorf --- Runtime example, e.g.: #include long foo(char *c1, char *c2) { long *p1 =3D new (c1) long; *p1 =3D 100; long long *p2 =3D new (c2) long long; *p2 =3D 200; long *p3 =3D new (c2) long; *p3 =3D 200; return *p1; } int main() { char c[128]; if (foo(c, c) =3D=3D 100) __builtin_abort(); } gcc hits the abort with -O2, all other compilers (clang, icc, visual c++) n= ot. >>From gcc-bugs-return-538481-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 15:35:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 44341 invoked by alias); 26 Sep 2016 15:35:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 44239 invoked by uid 48); 26 Sep 2016 15:35:32 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/48361] gcov freezes when using --all-blocks (-a) flag. Date: Mon, 26 Sep 2016 15:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.3.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WORKSFORME X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02096.txt.bz2 Content-length: 464 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D48361 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WORKSFORME --- Comment #7 from Martin Li=C5=A1ka --- No reply, closing as WORKSFORME. >>From gcc-bugs-return-538482-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 15:36:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 45307 invoked by alias); 26 Sep 2016 15:36:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 45207 invoked by uid 48); 26 Sep 2016 15:36:14 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/50228] Incorrect line execution count. Date: Mon, 26 Sep 2016 15:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.6.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WORKSFORME X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02097.txt.bz2 Content-length: 484 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D50228 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WORKSFORME --- Comment #2 from Martin Li=C5=A1ka --- No reply, the PR is quite old, closing as WORKFORME. >>From gcc-bugs-return-538483-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 15:40:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73097 invoked by alias); 26 Sep 2016 15:40:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 72681 invoked by uid 48); 26 Sep 2016 15:40:32 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77745] Inconsistent application of aliasing rules Date: Mon, 26 Sep 2016 15:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02098.txt.bz2 Content-length: 245 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77745 --- Comment #2 from Andrew Pinski --- This is all due to life time of objects rather than aliasing. If c1=3D=3Dc2= , the lifetime of p1 ends at the operator new. >>From gcc-bugs-return-538484-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 16:02:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 64083 invoked by alias); 26 Sep 2016 16:02:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 63738 invoked by uid 48); 26 Sep 2016 16:02:01 -0000 From: "glisse at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77745] Inconsistent application of aliasing rules Date: Mon, 26 Sep 2016 16:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: glisse at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02099.txt.bz2 Content-length: 458 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77745 --- Comment #3 from Marc Glisse --- I think the issue is with Deleted redundant store MEM[(long int *)c2_7(D)] =3D 200; It is considered as redundant with MEM[(long long int *)c2_7(D)] =3D 200; but they do not define the same dynamic type, so it seems that we cannot re= move this store. In this case we could remove the other one, but of course that's harder in general. >>From gcc-bugs-return-538485-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 16:11:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 80723 invoked by alias); 26 Sep 2016 16:11:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 80318 invoked by uid 48); 26 Sep 2016 16:11:28 -0000 From: "law at redhat dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77689] Missing vectorization lead to huge performance loss Date: Mon, 26 Sep 2016 16:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: law at redhat dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02100.txt.bz2 Content-length: 892 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77689 Jeffrey A. Law changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |law at redhat dot com --- Comment #12 from Jeffrey A. Law --- WRT c#5. Rather than jump threading this seems more suited to the erroneous path isolation code. I suspect the reason that code does not fire is the shape of the CFG. If= the PHI for iftmp.2_40 were in BB 8, then I'd expect the erroneous path optimiz= er to catch this. It's a known limitation. To catch it, the erroneous path optimizer would have to do block duplicatio= n in a manner similar to what jump threading does for join blocks (or the backwa= rds threader does for regions with embedded control flow). >>From gcc-bugs-return-538486-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 16:12:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 92546 invoked by alias); 26 Sep 2016 16:12:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 92341 invoked by uid 48); 26 Sep 2016 16:12:45 -0000 From: "mrs at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/60563] FAIL: g++.dg/ext/sync-4.C on *-apple-darwin* Date: Mon, 26 Sep 2016 16:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mrs at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02101.txt.bz2 Content-length: 555 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60563 --- Comment #13 from mrs at gcc dot gnu.org --- The change in c12 is ok if you'd like to do that. The only problem with it= is that then we will not be able to discover when radr://19802258 is fixed. W= hen people notice that that bug is fixed, we should revert the c12 patch.=20 Essentially, we allow the test case to track any _other_ issue that prevents things from just working (to catch any regressions), so that when ld64 is fixed, the test case will remain working. >>From gcc-bugs-return-538487-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 16:37:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 58273 invoked by alias); 26 Sep 2016 16:37:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 58021 invoked by uid 48); 26 Sep 2016 16:36:53 -0000 From: "tkoenig at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/27077] [x86, 4.1] builtin strlen poor performance Date: Mon, 26 Sep 2016 16:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: tkoenig at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc resolution everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02102.txt.bz2 Content-length: 1090 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27077 Thomas Koenig changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |WAITING Last reconfirmed| |2016-09-26 CC| |tkoenig at gcc dot gnu.org Resolution|INVALID |--- Ever confirmed|0 |1 --- Comment #7 from Thomas Koenig --- (In reply to Helmut Schellong from comment #6) > gcc 6.2 > ....... > builtin strlen: 137.787 ns > libc strlen: 12.562 ns (-fno-builtin-strlen) > About 12 times faster! > See table below. In general, it is better to write a new bug report than to reopen a 10-year old one. Can you provide - your test case, including the test harness - Architecture (which CPU are you running this on, exactly) - Which version of gcc you are reporting against - The assembly output (with -S) >>From gcc-bugs-return-538488-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 16:50:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 99087 invoked by alias); 26 Sep 2016 16:50:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 98859 invoked by uid 48); 26 Sep 2016 16:50:19 -0000 From: "ktkachov at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77728] [5/6/7 Regression] Miscompilation multiple vector iteration on ARM Date: Mon, 26 Sep 2016 16:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: ktkachov at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02103.txt.bz2 Content-length: 561 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77728 ktkachov at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-26 CC| |ktkachov at gcc dot gnu.org Ever confirmed|0 |1 --- Comment #1 from ktkachov at gcc dot gnu.org --- Confirmed the exception on GCC 5 and later >>From gcc-bugs-return-538489-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 16:53:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 118667 invoked by alias); 26 Sep 2016 16:53:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 117767 invoked by uid 48); 26 Sep 2016 16:53:25 -0000 From: "yyc1992 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77728] [5/6/7 Regression] Miscompilation multiple vector iteration on ARM Date: Mon, 26 Sep 2016 16:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: yyc1992 at gmail dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02104.txt.bz2 Content-length: 313 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77728 --- Comment #2 from Yichao Yu --- I should add that turning on lto works around the issue both in the simple = code attached and for the original issue I was having in julia (i.e. compiling l= lvm with LTO makes the issue go away). >>From gcc-bugs-return-538490-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 16:56:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 21498 invoked by alias); 26 Sep 2016 16:56:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 11755 invoked by uid 48); 26 Sep 2016 16:56:35 -0000 From: "doko at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/71709] powerpc64le: argument to strcpy() optimised out Date: Mon, 26 Sep 2016 16:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: patch X-Bugzilla-Severity: normal X-Bugzilla-Who: doko at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: amodra at gmail dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02105.txt.bz2 Content-length: 473 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71709 Matthias Klose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |doko at gcc dot gnu.org --- Comment #10 from Matthias Klose --- https://bugs.debian.org/838892 reports this for the gcc-6 branch too; could that be backported? >>From gcc-bugs-return-538491-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 17:03:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39745 invoked by alias); 26 Sep 2016 17:03:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 38532 invoked by uid 48); 26 Sep 2016 17:02:52 -0000 From: "vasek.potocek at post dot cz" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77747] New: GCC allows inheriting constructors from indirect base Date: Mon, 26 Sep 2016 17:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: vasek.potocek at post dot cz X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02106.txt.bz2 Content-length: 2145 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77747 Bug ID: 77747 Summary: GCC allows inheriting constructors from indirect base Product: gcc Version: 6.2.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: vasek.potocek at post dot cz Target Milestone: --- Created attachment 39690 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39690&action=3Dedit Minimal test case (preprocessed file) According to the standard ([namespace.udecl] =C2=A73), it should only be po= ssible to inherit constructors from a direct base class. The following example shows a good example why this is important: class X { public: X() { std::cout << "Default" << std::endl; } X(int a) { std::cout << a << std::endl; } }; class Y : public X { }; class Z : public Y { using X::X; }; int main() { Z instance{3}; // how is Y constructed? } G++ accepts this code even with strictest warning level settings with the following result: Y is default-constructed, default-constructing X on its w= ay, and the parameter provided in the last line is silently ignored. System version: Target: x86_64-redhat-linux Configured with: ../configure --enable-bootstrap --enable-languages=3Dc,c++,objc,obj-c++,fortran,ada,go,lto --prefix=3D/usr --mandir=3D/usr/share/man --infodir=3D/usr/share/info --with-bugurl=3Dhttp://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=3Dposix --enable-checking=3Drelease --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=3Dgnu --enable-plugin --enable-initfini-array --disable-libgcj --with-isl --enable-libmpx --enable-gnu-indirect-function --with-tune=3Dgeneric --with-arch_32=3Di686 --build=3Dx86_64-redhat-linux Thread model: posix gcc version 6.2.1 20160916 (Red Hat 6.2.1-2) (GCC)=20 Command line: g++ -Weffc++ -Wall -Wextra -pedantic -fno-diagnostics-show-caret -save-temps skip.cpp -o skip Compiler output: none >>From gcc-bugs-return-538492-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 17:26:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 83012 invoked by alias); 26 Sep 2016 17:26:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 81673 invoked by uid 48); 26 Sep 2016 17:26:46 -0000 From: "dje at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77715] go-system.h includes C++ header files before GCC system.h Date: Mon, 26 Sep 2016 17:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dje at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02107.txt.bz2 Content-length: 981 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77715 David Edelsohn changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-26 CC| |tony.reix at atos dot net Ever confirmed|0 |1 --- Comment #1 from David Edelsohn --- Confirmed. Note that GCC system.h currently does not include hooks for all of the C++ headers used by go-system.h. The detailed problem is the inclusion of the C++ headers inhibit the defini= tion of PRIx64 and PRIu64 on AIX. One could include specific code in go-system.= h to define those macros for AIX, but that has not been the solution used in oth= er parts of the compiler that wish to utilize standard C++ header file feature= s. >>From gcc-bugs-return-538493-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 18:17:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 72895 invoked by alias); 26 Sep 2016 18:17:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 72723 invoked by uid 55); 26 Sep 2016 18:16:56 -0000 From: "kugan at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77719] [7 Regression] ICE in pp_string, at pretty-print.c:955 Date: Mon, 26 Sep 2016 18:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kugan at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02108.txt.bz2 Content-length: 823 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77719 --- Comment #7 from kugan at gcc dot gnu.org --- Author: kugan Date: Mon Sep 26 18:16:23 2016 New Revision: 240505 URL: https://gcc.gnu.org/viewcvs?rev=3D240505&root=3Dgcc&view=3Drev Log: Fix PR77719 gcc/testsuite/ChangeLog: 2016-09-26 Kugan Vivekanandarajah PR middle-end/77719 * gfortran.dg/pr77719.f90: New test. gcc/ChangeLog: 2016-09-26 Kugan Vivekanandarajah PR middle-end/77719 * tree-ssa-reassoc.c (make_new_ssa_for_def): Use gimple_get_lhs to = get lhs instead of gimple_assign_lhs as stmt can be builtins too. Added: trunk/gcc/testsuite/gfortran.dg/pr77719.f90 Modified: trunk/gcc/ChangeLog trunk/gcc/testsuite/ChangeLog trunk/gcc/tree-ssa-reassoc.c >>From gcc-bugs-return-538494-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 18:45:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 12670 invoked by alias); 26 Sep 2016 18:45:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 6853 invoked by uid 55); 26 Sep 2016 18:45:09 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77420] [5/6/7 Regression] gfortran and equivalence produces internal compiler error Date: Mon, 26 Sep 2016 18:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: REOPENED X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02109.txt.bz2 Content-length: 1042 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77420 --- Comment #6 from kargl at gcc dot gnu.org --- Author: kargl Date: Mon Sep 26 18:44:36 2016 New Revision: 240506 URL: https://gcc.gnu.org/viewcvs?rev=3D240506&root=3Dgcc&view=3Drev Log: 2016-09-26 Steven G. Kargl PR fortran/77420 * trans-common.c: Handle array elements in equivalence when the lower and upper bounds of array spec are NULL. 2016-09-26 Steven G. Kargl PR fortran/77420 * gfortran.dg/pr77420_1.f90: New test. * gfortran.dg/pr77420_2.f90: Ditto. * gfortran.dg/pr77420_3.f90: New test. Requires ... * gfortran.dg/pr77420_4.f90: this file. Added: trunk/gcc/testsuite/gfortran.dg/pr77420_1.f90 trunk/gcc/testsuite/gfortran.dg/pr77420_2.f90 trunk/gcc/testsuite/gfortran.dg/pr77420_3.f90 trunk/gcc/testsuite/gfortran.dg/pr77420_4.f90 Modified: trunk/gcc/fortran/ChangeLog trunk/gcc/fortran/trans-common.c trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538495-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 18:46:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 15512 invoked by alias); 26 Sep 2016 18:46:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 15278 invoked by uid 48); 26 Sep 2016 18:46:37 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77420] [5/6/7 Regression] gfortran and equivalence produces internal compiler error Date: Mon, 26 Sep 2016 18:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02110.txt.bz2 Content-length: 406 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77420 kargl at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution|--- |FIXED --- Comment #7 from kargl at gcc dot gnu.org --- Let's try this again. >>From gcc-bugs-return-538496-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 19:57:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 13823 invoked by alias); 26 Sep 2016 19:56:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 13551 invoked by uid 55); 26 Sep 2016 19:56:47 -0000 From: "ville at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77537] [6 Regression] pair constructors do not properly SFINAE Date: Mon, 26 Sep 2016 19:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: ville at gcc dot gnu.org X-Bugzilla-Status: REOPENED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02111.txt.bz2 Content-length: 1378 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77537 --- Comment #9 from ville at gcc dot gnu.org --- Author: ville Date: Mon Sep 26 19:56:14 2016 New Revision: 240507 URL: https://gcc.gnu.org/viewcvs?rev=3D240507&root=3Dgcc&view=3Drev Log: Backport from mainline 2016-09-21 Ville Voutilainen PR libstdc++/77537 Implement LWG 2729 for pair. * include/bits/stl_pair.h (_PCC): New. (_ConstructiblePair, _ImplicitlyConvertiblePair): Turn into static member functions of _PCC. (_MoveConstructiblePair, _ImplicitlyMoveConvertiblePair): Likewise. (_PCCP): New. (pair(const _T1&, const _T2&)): Adjust. (_PCCFP): New. (pair(const pair<_U1, _U2>&)): Adjust. (pair(_U1&&, const _T2&)): Likewise. (pair(const _T1&, _U2&&)): Likewise. (pair(_U1&&, _U2&&)): Likewise. (pair(pair<_U1, _U2>&&)): Likewise. (operator=3D(const pair&)): Make conditionally deleted. (operator=3D(pair&&)): Make conditionally suppressed. (operator=3D(const pair<_U1, _U2>&)): Constrain. (operator=3D(pair<_U1, _U2>&&): Likewise. * include/std/type_traits (__nonesuch): New. * testsuite/20_util/pair/traits.cc: New. Added: branches/gcc-6-branch/libstdc++-v3/testsuite/20_util/pair/traits.cc Modified: branches/gcc-6-branch/libstdc++-v3/ChangeLog branches/gcc-6-branch/libstdc++-v3/include/bits/stl_pair.h branches/gcc-6-branch/libstdc++-v3/include/std/type_traits >>From gcc-bugs-return-538497-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 20:02:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 84474 invoked by alias); 26 Sep 2016 20:02:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 84278 invoked by uid 48); 26 Sep 2016 20:01:53 -0000 From: "ville.voutilainen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77537] [6 Regression] pair constructors do not properly SFINAE Date: Mon, 26 Sep 2016 20:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: ville.voutilainen at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02112.txt.bz2 Content-length: 481 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77537 Ville Voutilainen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution|--- |FIXED --- Comment #10 from Ville Voutilainen = --- Fixed on gcc-6 branch, thus done. >>From gcc-bugs-return-538498-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 20:11:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 19917 invoked by alias); 26 Sep 2016 20:11:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 19657 invoked by uid 48); 26 Sep 2016 20:11:36 -0000 From: "Casey at Carter dot net" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77537] [6 Regression] pair constructors do not properly SFINAE Date: Mon, 26 Sep 2016 20:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: Casey at Carter dot net X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02113.txt.bz2 Content-length: 169 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77537 --- Comment #11 from Casey Carter --- Thanks again Ville - I owe you a beer in Issaquah. >>From gcc-bugs-return-538499-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 20:22:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 71857 invoked by alias); 26 Sep 2016 20:22:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 71743 invoked by uid 48); 26 Sep 2016 20:22:18 -0000 From: "eric.niebler at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77537] [6 Regression] pair constructors do not properly SFINAE Date: Mon, 26 Sep 2016 20:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: eric.niebler at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02114.txt.bz2 Content-length: 133 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77537 --- Comment #12 from Eric Niebler --- Likewise >>From gcc-bugs-return-538501-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 20:52:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25370 invoked by alias); 26 Sep 2016 20:52:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25255 invoked by uid 48); 26 Sep 2016 20:52:39 -0000 From: "ville.voutilainen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77727] Unwrapping std::optional constructor is not working for non-transferable object Date: Mon, 26 Sep 2016 20:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ville.voutilainen at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02116.txt.bz2 Content-length: 453 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77727 Ville Voutilainen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #4 from Ville Voutilainen = --- Fixed. >>From gcc-bugs-return-538500-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 20:52:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24583 invoked by alias); 26 Sep 2016 20:52:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24459 invoked by uid 55); 26 Sep 2016 20:52:14 -0000 From: "ville at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77727] Unwrapping std::optional constructor is not working for non-transferable object Date: Mon, 26 Sep 2016 20:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ville at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02115.txt.bz2 Content-length: 631 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77727 --- Comment #3 from ville at gcc dot gnu.org --- Author: ville Date: Mon Sep 26 20:51:42 2016 New Revision: 240511 URL: https://gcc.gnu.org/viewcvs?rev=3D240511&root=3Dgcc&view=3Drev Log: PR libstdc++/77727 * include/std/optional (optional(const optional<_Up>&)): Default-initialize the base and use emplace. (optional(optional<_Up>&&)): Likewise. * testsuite/20_util/optional/cons/77727.cc: New. Added: trunk/libstdc++-v3/testsuite/20_util/optional/cons/77727.cc Modified: trunk/libstdc++-v3/ChangeLog trunk/libstdc++-v3/include/std/optional >>From gcc-bugs-return-538502-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 21:35:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 104743 invoked by alias); 26 Sep 2016 21:35:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 88175 invoked by uid 48); 26 Sep 2016 21:35:11 -0000 From: "var at schellong dot biz" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/27077] [x86, 4.1] builtin strlen poor performance Date: Mon, 26 Sep 2016 21:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: var at schellong dot biz X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02117.txt.bz2 Content-length: 9627 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27077 --- Comment #8 from Helmut Schellong --- Test case is a special measurement program. See assembler code below: strlen / repnz scasb clock_gettime gcc6 + gcc5 The exact gcc version is not critical. Each gcc that injects an intel string instruction injects slow code (on many cpus). Practical experience (use) is important. CPU: Intel(R) Core(TM)2 Duo CPU E8600 @ 3.33GHz (3333.40-MHz K8-class = CPU) Origin =3D "GenuineIntel" Id =3D 0x1067a Family =3D 0x6 Model =3D 0x17 = Stepping =3D 10 Features=3D0xbfebfbff Features2=3D0xc08e3fd AMD Features=3D0x20100800 AMD Features2=3D0x1 VT-x: HLT,PAUSE TSC: P-state invariant, performance statistics gcc6 -v Using built-in specs. COLLECT_GCC=3Dgcc6 COLLECT_LTO_WRAPPER=3D/usr/local/libexec/gcc6/gcc/x86_64-portbld-freebsd10.= 1/6.2.0/lto-wrapper Target: x86_64-portbld-freebsd10.1 Configured with: ... Thread model: posix gcc version 6.2.0 (FreeBSD Ports Collection)=20 gcc5 -v Using built-in specs. COLLECT_GCC=3Dgcc5 COLLECT_LTO_WRAPPER=3D/usr/local/libexec/gcc5/gcc/x86_64-portbld-freebsd10.= 0/5.0.0/lto-wrapper Target: x86_64-portbld-freebsd10.0 Configured with: ... Thread model: posix gcc version 5.0.0 20140921 (experimental) (FreeBSD Ports Collection)=20 gcc6 -O1 -static -s -opt -fno-builtin-strlen -DSTRLENF pt.c ptf.o =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D lea rsi, [rsp+32] #, mov edi, 1 #, call clock_gettime # mov ebx, DWORD PTR CntA[rip] # is, CntA .p2align 2 .L10: mov edi, OFFSET FLAT:DA #, call strlen # mov QWORD PTR [rsp+112], rax # L, _80 sub ebx, 1 # is, test ebx, ebx # is jg .L10 #, lea rsi, [rsp+64] # tmp273, mov edi, 1 #, call clock_gettime # imul rax, QWORD PTR [rsp+64], 1000000000 # tmp216, cb[0].tv_= sec, add rax, QWORD PTR [rsp+72] # tmp218, cb[0].tv_nsec imul rdx, QWORD PTR [rsp+32], 1000000000 # tmp220, ca[0].tv_= sec, add rdx, QWORD PTR [rsp+40] # tmp222, ca[0].tv_nsec sub rax, rdx # tmp224, tmp222 pxor xmm7, xmm7 # _94 cvtsi2sdq xmm7, rax # _94, tmp224 movsd QWORD PTR [rsp+8], xmm7 # %sfp, _94 mov rsi, QWORD PTR [rsp+112] # L.7_105, L mov edi, OFFSET FLAT:.LC3 #, mov eax, 0 #, call printf # lea rsi, [rsp+32] #, mov edi, 1 #, call clock_gettime # mov ebx, DWORD PTR CntA[rip] # is, CntA .p2align 2 .L11: mov edi, OFFSET FLAT:DA #, call strlen # mov QWORD PTR [rsp+112], rax # L, _112 mov edi, OFFSET FLAT:DA #, call strlen # mov QWORD PTR [rsp+112], rax # L, _115 sub ebx, 1 # is, test ebx, ebx # is jg .L11 #, lea rsi, [rsp+64] # tmp275, mov edi, 1 #, call clock_gettime # =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D gcc6 -O1 -static -s -opt -DSTRLENF pt.c ptf.o =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D lea rsi, [rsp+32] #, mov edi, 1 #, call clock_gettime # mov edx, DWORD PTR CntA[rip] # is, CntA mov rsi, -1 # tmp225, mov eax, 0 # tmp226, .p2align 2 .L10: mov edi, OFFSET FLAT:DA # tmp224, mov rcx, rsi # tmp222, tmp225 repnz scasb not rcx # tmp223 sub rcx, 1 # _80, mov QWORD PTR [rsp+112], rcx # L, _80 sub edx, 1 # is, test edx, edx # is jg .L10 #, lea rsi, [rsp+64] # tmp299, mov edi, 1 #, call clock_gettime # imul rax, QWORD PTR [rsp+64], 1000000000 # tmp228, cb[0].tv_= sec, add rax, QWORD PTR [rsp+72] # tmp230, cb[0].tv_nsec imul rdx, QWORD PTR [rsp+32], 1000000000 # tmp232, ca[0].tv_= sec, add rdx, QWORD PTR [rsp+40] # tmp234, ca[0].tv_nsec sub rax, rdx # tmp236, tmp234 pxor xmm7, xmm7 # _94 cvtsi2sdq xmm7, rax # _94, tmp236 movsd QWORD PTR [rsp+8], xmm7 # %sfp, _94 mov rsi, QWORD PTR [rsp+112] # L.7_105, L mov edi, OFFSET FLAT:.LC3 #, mov eax, 0 #, call printf # lea rsi, [rsp+32] #, mov edi, 1 #, call clock_gettime # mov edx, DWORD PTR CntA[rip] # is, CntA mov rsi, -1 # tmp242, mov eax, 0 # tmp243, .p2align 2 .L11: mov edi, OFFSET FLAT:DA # tmp241, mov rcx, rsi # tmp239, tmp242 repnz scasb not rcx # tmp240 sub rcx, 1 # _112, mov QWORD PTR [rsp+112], rcx # L, _112 mov edi, OFFSET FLAT:DA # tmp247, mov rcx, rsi # tmp245, tmp242 repnz scasb not rcx # tmp246 sub rcx, 1 # _115, mov QWORD PTR [rsp+112], rcx # L, _115 sub edx, 1 # is, test edx, edx # is jg .L11 #, lea rsi, [rsp+64] # tmp303, mov edi, 1 #, call clock_gettime # =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D gcc5 -O1 -static -s -opt -DSTRLENF pt.c ptf.o =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D lea rsi, [rsp+32] #, mov edi, 1 #, call clock_gettime # mov esi, DWORD PTR CntA[rip] # is, CntA mov r8, -1 # tmp286, mov eax, 0 # tmp287, .p2align 2 .L10: mov edi, OFFSET FLAT:DA # tmp221, mov rcx, r8 # tmp219, tmp286 repnz scasb not rcx # tmp220 mov rdx, rcx # tmp220, tmp220 sub rdx, 1 # D.3715, mov QWORD PTR [rsp+112], rdx # L, D.3715 sub esi, 1 # is, test esi, esi # is jg .L10 #, lea rsi, [rsp+64] # tmp296, mov edi, 1 #, call clock_gettime # imul rax, QWORD PTR [rsp+64], 1000000000 # D.3716, cb[0].tv_= sec, add rax, QWORD PTR [rsp+72] # D.3716, cb[0].tv_nsec mov rdx, rax # D.3716, D.3716 imul rax, QWORD PTR [rsp+32], -1000000000 # D.3716, ca[0].tv_= sec, sub rax, QWORD PTR [rsp+40] # D.3716, ca[0].tv_nsec add rax, rdx # D.3716, D.3716 pxor xmm7, xmm7 # D.3718 cvtsi2sdq xmm7, rax # D.3718, D.3716 movsd QWORD PTR [rsp+8], xmm7 # %sfp, D.3718 mov rsi, QWORD PTR [rsp+112] # D.3716, L mov edi, OFFSET FLAT:.LC3 #, mov eax, 0 #, call printf # lea rsi, [rsp+32] #, mov edi, 1 #, call clock_gettime # mov esi, DWORD PTR CntA[rip] # is, CntA mov r8, -1 # tmp284, mov eax, 0 # tmp285, .p2align 2 .L11: mov edi, OFFSET FLAT:DA # tmp237, mov rcx, r8 # tmp235, tmp284 repnz scasb not rcx # tmp236 mov rdx, rcx # tmp236, tmp236 sub rdx, 1 # D.3715, mov QWORD PTR [rsp+112], rdx # L, D.3715 mov edi, OFFSET FLAT:DA # tmp243, mov rcx, r8 # tmp241, tmp284 repnz scasb not rcx # tmp242 mov rdx, rcx # tmp242, tmp242 sub rdx, 1 # D.3715, mov QWORD PTR [rsp+112], rdx # L, D.3715 sub esi, 1 # is, test esi, esi # is jg .L11 #, lea rsi, [rsp+64] # tmp303, mov edi, 1 #, call clock_gettime # =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>From gcc-bugs-return-538503-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 23:06:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 108999 invoked by alias); 26 Sep 2016 23:06:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 108835 invoked by uid 48); 26 Sep 2016 23:06:42 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77747] GCC allows inheriting constructors from indirect base Date: Mon, 26 Sep 2016 23:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: accepts-invalid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02118.txt.bz2 Content-length: 467 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77747 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |accepts-invalid Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-26 Ever confirmed|0 |1 >>From gcc-bugs-return-538504-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 23:09:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 29124 invoked by alias); 26 Sep 2016 23:09:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29013 invoked by uid 48); 26 Sep 2016 23:08:53 -0000 From: "tulipawn at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77730] Fortran performance on aarch64 (6/7 regression heads-up) Date: Mon, 26 Sep 2016 23:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: tulipawn at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02119.txt.bz2 Content-length: 405 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77730 --- Comment #6 from PeteVine --- There's definitely a problem with mcpu/mtune in GCC6 to the point I wasn't = able to get the expected performance back, please look here: http://openbenchmarking.org/result/1609269-LO-GCRYPTAAR21 BTW, that benchmark required lots of hacking/patching to run on aarch64. Wo= n't work OOTB. >>From gcc-bugs-return-538505-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Sep 26 23:54:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31349 invoked by alias); 26 Sep 2016 23:54:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25891 invoked by uid 48); 26 Sep 2016 23:54:27 -0000 From: "segher at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/77416] [7 Regression] LRA rematerializing use of CA reg across function call Date: Mon, 26 Sep 2016 23:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ra, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: segher at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: bergner at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02120.txt.bz2 Content-length: 508 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77416 --- Comment #12 from Segher Boessenkool --- The testcase also fails for -m64 for me (on BE). I have -m64 explicitly in the RUNTESTFLAGS. The testcase has /* { dg-skip-if "do not override -mcpu" { powerpc64*-*-* } { "-mcpu=3D*" } { "-mcpu=3Dpower7" } } */ /* { dg-options "-mcpu=3Dpower7 -O2 -m32" } */ but it doesn't check for overriding -m32 (the RUNTESTFLAGS are inserted later on the command line than the dg-options). >>From gcc-bugs-return-538506-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 00:31:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 117303 invoked by alias); 27 Sep 2016 00:31:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 111385 invoked by uid 48); 27 Sep 2016 00:31:12 -0000 From: "gcc at nullinfinity dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgomp/65362] OpenACC compilation on Tegra K1 (ARM) Date: Tue, 27 Sep 2016 00:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgomp X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: openacc X-Bugzilla-Severity: enhancement X-Bugzilla-Who: gcc at nullinfinity dot org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02121.txt.bz2 Content-length: 544 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65362 Johan Brannlund changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gcc at nullinfinity dot org --- Comment #3 from Johan Brannlund --- Hello Alexander.=20 I'd be interested in testing OpenMP on the TK1. If you're still able to put= up a temporary branch, that would be much appreciated. >>From gcc-bugs-return-538507-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 01:17:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22877 invoked by alias); 27 Sep 2016 01:17:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22633 invoked by uid 48); 27 Sep 2016 01:17:32 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] New: pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 01:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02122.txt.bz2 Content-length: 661 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 Bug ID: 77748 Summary: pr77550.C fails on arm-none-eabi Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: clyon at gcc dot gnu.org Target Milestone: --- Hi, As discussed at https://gcc.gnu.org/ml/gcc-patches/2016-09/msg01878.html here is a new PR: the testcase pr77550.C fails at execution time for target arm-none-eabi (as opposed to arm-*linux*). I'm attaching the preprocessed file and assembler code. >>From gcc-bugs-return-538508-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 01:21:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39378 invoked by alias); 27 Sep 2016 01:21:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 39225 invoked by uid 48); 27 Sep 2016 01:20:56 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 01:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02123.txt.bz2 Content-length: 239 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #1 from Christophe Lyon --- Created attachment 39691 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39691&action=3Dedit preprocessed file >>From gcc-bugs-return-538509-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 01:21:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 43212 invoked by alias); 27 Sep 2016 01:21:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 40249 invoked by uid 48); 27 Sep 2016 01:21:23 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 01:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02124.txt.bz2 Content-length: 236 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #2 from Christophe Lyon --- Created attachment 39692 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39692&action=3Dedit assembler code >>From gcc-bugs-return-538510-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 01:22:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 65788 invoked by alias); 27 Sep 2016 01:22:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 65520 invoked by uid 48); 27 Sep 2016 01:21:58 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 01:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02125.txt.bz2 Content-length: 232 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #3 from Christophe Lyon --- Created attachment 39693 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39693&action=3Dedit qemu trace >>From gcc-bugs-return-538511-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 03:42:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 96482 invoked by alias); 27 Sep 2016 03:42:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 96157 invoked by uid 55); 27 Sep 2016 03:41:52 -0000 From: "kugan at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77677] [7 Regression] ICE at -O1 and above in both 32-bit and 64-bit modes on x86_64-linux-gnu (internal compiler error: in set_value_range, at tree-vrp.c:361) Date: Tue, 27 Sep 2016 03:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kugan at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02126.txt.bz2 Content-length: 1030 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77677 --- Comment #11 from kugan at gcc dot gnu.org --- Author: kugan Date: Tue Sep 27 03:41:14 2016 New Revision: 240517 URL: https://gcc.gnu.org/viewcvs?rev=3D240517&root=3Dgcc&view=3Drev Log: Fix ipa-vrp convert value_range gcc/ChangeLog: 2016-09-27 Kugan Vivekanandarajah PR ipa/77677 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Use extract_range_from_unary_expr to convert value_range. * tree-vrp.c (extract_range_from_unary_expr_1): Rename to. (extract_range_from_unary_expr): This. * tree-vrp.h (extract_range_from_unary_expr): Declare. gcc/testsuite/ChangeLog: 2016-09-27 Kugan Vivekanandarajah PR ipa/77677 * gcc.dg/torture/pr77677-2.c: New test. Added: trunk/gcc/testsuite/gcc.dg/torture/pr77677-2.c Modified: trunk/gcc/ChangeLog trunk/gcc/ipa-prop.c trunk/gcc/testsuite/ChangeLog trunk/gcc/tree-vrp.c trunk/gcc/tree-vrp.h >>From gcc-bugs-return-538512-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 04:40:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 82880 invoked by alias); 27 Sep 2016 04:40:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 82418 invoked by uid 48); 27 Sep 2016 04:40:42 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77745] Inconsistent application of aliasing rules Date: Tue, 27 Sep 2016 04:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02127.txt.bz2 Content-length: 655 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77745 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |wrong-code Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-27 Ever confirmed|0 |1 --- Comment #4 from Markus Trippelsdorf --- gcc generates code as if the function was defined as: long foo(char *__restrict__ c1, char *__restrict__ c2) >>From gcc-bugs-return-538513-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 04:52:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 109385 invoked by alias); 27 Sep 2016 04:52:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 108509 invoked by uid 48); 27 Sep 2016 04:52:32 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77745] [5/6/7 Regression] Inconsistent application of aliasing rules Date: Tue, 27 Sep 2016 04:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_known_to_work target_milestone short_desc cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02128.txt.bz2 Content-length: 910 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77745 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Known to work| |4.5.0 Target Milestone|--- |5.5 Summary|Inconsistent application of |[5/6/7 Regression] |aliasing rules |Inconsistent application of | |aliasing rules Known to fail| |5.4.0, 7.0 --- Comment #5 from Andrew Pinski --- You know what you are right this is wrong code. Note I am surprised we don't emit clobber barriers before operator new anyw= ays to say the life time of an object just started. This will most likely solve the issue overall. >>From gcc-bugs-return-538514-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 04:55:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 114087 invoked by alias); 27 Sep 2016 04:55:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 113892 invoked by uid 55); 27 Sep 2016 04:55:23 -0000 From: "edlinger at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/77714] [7 Regression] Wrong code generation for gcc.c-torture/execute/pr51447.c Date: Tue, 27 Sep 2016 04:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ra, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: edlinger at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02129.txt.bz2 Content-length: 519 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77714 --- Comment #6 from Bernd Edlinger --- Author: edlinger Date: Tue Sep 27 04:54:49 2016 New Revision: 240518 URL: https://gcc.gnu.org/viewcvs?rev=3D240518&root=3Dgcc&view=3Drev Log: 2016-09-27 Bernd Edlinger PR rlt-optimization/77714 * lra-eliminations.c (eliminate_regs_in_insn): Avoid alias on REG_EQUAL note. Modified: trunk/gcc/ChangeLog trunk/gcc/lra-eliminations.c >>From gcc-bugs-return-538515-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 06:02:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 6301 invoked by alias); 27 Sep 2016 06:02:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 6136 invoked by uid 48); 27 Sep 2016 06:01:48 -0000 From: "edlinger at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/77714] [7 Regression] Wrong code generation for gcc.c-torture/execute/pr51447.c Date: Tue, 27 Sep 2016 06:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ra, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: edlinger at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02130.txt.bz2 Content-length: 431 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77714 Bernd Edlinger changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #7 from Bernd Edlinger --- fixed. >>From gcc-bugs-return-538516-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 06:40:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 85822 invoked by alias); 27 Sep 2016 06:40:47 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 85624 invoked by uid 55); 27 Sep 2016 06:40:34 -0000 From: "saaadhu at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/65210] [avr] ICE: when using attributs 'address' and 'io_low' Date: Tue, 27 Sep 2016 06:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: saaadhu at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: saaadhu at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02131.txt.bz2 Content-length: 966 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65210 --- Comment #6 from Senthil Kumar Selvaraj --- Author: saaadhu Date: Tue Sep 27 06:39:59 2016 New Revision: 240521 URL: https://gcc.gnu.org/viewcvs?rev=3D240521&root=3Dgcc&view=3Drev Log: Backport fix for PR 65210 gcc/ChangeLog 2016-09-27 Senthil Kumar Selvaraj Backport from trunk r227496 PR target/65210 * config/avr/avr.c (avr_eval_addr_attrib): Look for io_low attribute as well. gcc/testsuite/ChangeLog 2016-09-27 Senthil Kumar Selvaraj Backport from trunk r227496 PR target/65210 * gcc.target/avr/pr65210.c: New test. Added: branches/gcc-5-branch/gcc/testsuite/gcc.target/avr/pr65210.c Modified: branches/gcc-5-branch/gcc/ChangeLog branches/gcc-5-branch/gcc/config/avr/avr.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538517-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 06:42:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 88969 invoked by alias); 27 Sep 2016 06:42:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 87750 invoked by uid 48); 27 Sep 2016 06:42:20 -0000 From: "saaadhu at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/65210] [avr] ICE: when using attributs 'address' and 'io_low' Date: Tue, 27 Sep 2016 06:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: saaadhu at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: saaadhu at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02132.txt.bz2 Content-length: 503 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65210 Senthil Kumar Selvaraj changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #7 from Senthil Kumar Selvaraj --- Fix already present in 6.x and trunk. Backported to 5.x as well. >>From gcc-bugs-return-538518-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 06:57:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 53575 invoked by alias); 27 Sep 2016 06:57:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 53450 invoked by uid 48); 27 Sep 2016 06:57:35 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77746] [5 Regression] Wrong subroutine called, clash of specific procedure name and binding-name Date: Tue, 27 Sep 2016 06:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.3.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cf_known_to_work target_milestone everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02133.txt.bz2 Content-length: 761 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77746 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |wrong-code Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-27 Known to work| |4.8.5 Target Milestone|--- |5.5 Ever confirmed|0 |1 Known to fail| |4.9.0, 4.9.4, 5.3.1, 6.2.0 --- Comment #2 from Richard Biener --- Confirmed, 4.9.0+ fail for me, 4.8.5 works. >>From gcc-bugs-return-538519-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:08:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 771 invoked by alias); 27 Sep 2016 07:08:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 572 invoked by uid 48); 27 Sep 2016 07:07:57 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77749] New: [7 Regression] profiledbootstrap broken Date: Tue, 27 Sep 2016 07:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02134.txt.bz2 Content-length: 2611 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77749 Bug ID: 77749 Summary: [7 Regression] profiledbootstrap broken Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: bootstrap Assignee: unassigned at gcc dot gnu.org Reporter: trippels at gcc dot gnu.org Target Milestone: --- During stageprofile: ... echo timestamp > s-genrtl-h build/genhooks "Target Hook" \ > tmp-target-hooks-def.h /bin/sh: line 1: 24501 Aborted build/genhooks "Target Hook"= > tmp-target-hooks-def.h make[3]: *** [Makefile:2368: s-target-hooks-def-h] Error 134 make[3]: *** Waiting for unfinished jobs.... Program received signal SIGABRT, Aborted. __GI_raise (sig=3Dsig@entry=3D6) at ../sysdeps/unix/sysv/linux/raise.c:58 58 } (gdb) bt #0 __GI_raise (sig=3Dsig@entry=3D6) at ../sysdeps/unix/sysv/linux/raise.c:= 58 #1 0x00007ffff7a7685d in __GI_abort () at abort.c:89 #2 0x0000000000409ad0 in __gcov_merge_delta (counters=3D, n_counters=3D) at ../../../gcc/libgcc/libgcov-merge.c:147 #3 0x000000000040db1f in merge_one_data (crc32=3D2359460089, eof_pos_p=3D, summary_pos_p=3D, this_prg=3D0x7fffffff9c40, prg_p=3D0x7fffffffb410, gi_ptr=3D0x416420, filename=3D0x41a010 "/var/tmp/gcc_build_dir_/libiberty/xexit.gcda") at ../../../gcc/libgcc/libgcov-driver.c:476 #4 dump_one_gcov (all_prg=3D, this_prg=3D0x7fffffff9c40, crc32=3D2359460089, run_counted=3D0, gf=3D, gi_ptr=3D0x4= 16420) at ../../../gcc/libgcc/libgcov-driver.c:791 #5 gcov_do_dump (list=3D, run_counted=3D0) at ../../../gcc/libgcc/libgcov-driver.c:850 #6 0x000000000040dea2 in __gcov_dump_one (root=3D0x419c00 <__gcov_root>) at ../../../gcc/libgcc/libgcov-driver.c:862 #7 gcov_exit () at ../../../gcc/libgcc/libgcov-driver.c:878 #8 0x00007ffff7a79830 in __run_exit_handlers (status=3D1, listp=3D0x7ffff7= dd1598 <__exit_funcs>, run_list_atexit=3Drun_list_atexit@entry=3Dtrue, run_dtors=3Drun_dtors@entry=3Dtrue) at exit.c:83 #9 0x00007ffff7a798ba in __GI_exit (status=3D) at exit.c:105 #10 0x00007ffff7a5f2d8 in __libc_start_main (main=3D0x401680 , argc=3D3, argv=3D0x7fffffffe518, init=3D, fini=3D, rtld_fini=3D, stack_end=3D0x7fffffffe508) at ../csu/libc-start.c:320 #11 0x0000000000403a5a in _start () at ../sysdeps/x86_64/start.S:120 >>From gcc-bugs-return-538520-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:09:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3656 invoked by alias); 27 Sep 2016 07:09:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3489 invoked by uid 48); 27 Sep 2016 07:09:08 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77745] [5/6/7 Regression] Inconsistent application of aliasing rules Date: Tue, 27 Sep 2016 07:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02135.txt.bz2 Content-length: 733 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77745 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |rguenth at gcc dot = gnu.org --- Comment #6 from Richard Biener --- Mine. I believe the testcase is valid. If c1 =3D=3D c2 you can use p1 to = access the object at p3 as p1 =3D=3D p3. Both FRE and DSE remove the store but FRE removes the wrong one. I thought= I had fixed this one... (DOM contains similar code but it doesn't remove eith= er). >>From gcc-bugs-return-538521-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:12:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 8071 invoked by alias); 27 Sep 2016 07:12:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 7936 invoked by uid 48); 27 Sep 2016 07:12:36 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77740] [7 regression] internal compiler error: in format_floating, at gimple-ssa-sprintf.c:1165 Date: Tue, 27 Sep 2016 07:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic, ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02136.txt.bz2 Content-length: 709 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77740 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-27 CC| |marxin at gcc dot gnu.org Ever confirmed|0 |1 --- Comment #2 from Martin Li=C5=A1ka --- Confirmed on x86_64-linux-gnu with: gcc pr77740.i -c -O1 -Wall -m32 Started with r240298 >>From gcc-bugs-return-538522-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:25:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24199 invoked by alias); 27 Sep 2016 07:25:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23622 invoked by uid 48); 27 Sep 2016 07:24:52 -0000 From: "lkrupp at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77750] New: gcc build not working with -O0 Date: Tue, 27 Sep 2016 07:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: lkrupp at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02137.txt.bz2 Content-length: 2355 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77750 Bug ID: 77750 Summary: gcc build not working with -O0 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: lkrupp at gcc dot gnu.org Target Milestone: --- Created attachment 39694 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39694&action=3Dedit Possible patch (correctly formatted magic "fall through" comments) Within the last day or so, building GCC with this command: make BOOT_CFLAGS=3D'-O0' CFLAGS_FOR_TARGET=3D'-O0' CFLAGS_FOR_BUILD=3D'-O0' started failing with these warnings, which are treated as errors: ../../gcc_trunk/gcc/combine.c: In function 'rtx_code simplify_compare_const(rtx_code, machine_mode, rtx, rtx_def**)': ../../gcc_trunk/gcc/combine.c:11364:7: error: this statement may fall throu= gh [-Werror=3Dimplicit-fallthrough] if (const_op > 0) ^~ ../../gcc_trunk/gcc/combine.c:11373:5: note: here case LE: ^~~~ ../../gcc_trunk/gcc/combine.c:11393:7: error: this statement may fall throu= gh [-Werror=3Dimplicit-fallthrough] if (const_op > 0) ^~ ../../gcc_trunk/gcc/combine.c:11402:5: note: here case GT: ^~~~ ../../gcc_trunk/gcc/combine.c: In function 'rtx_code simplify_comparison(rtx_code, rtx_def**, rtx_def**)': ../../gcc_trunk/gcc/combine.c:11924:4: error: this statement may fall throu= gh [-Werror=3Dimplicit-fallthrough] if (subreg_lowpart_p (op0) ^~ ../../gcc_trunk/gcc/combine.c:11932:2: note: here case ZERO_EXTEND: ^~~~ ../../gcc_trunk/gcc/combine.c:12340:6: error: this statement may fall throu= gh [-Werror=3Dimplicit-fallthrough] } ^ ../../gcc_trunk/gcc/combine.c:12343:2: note: here case LSHIFTRT: ^~~~ ../../gcc_trunk/gcc/fold-const.c: In function 'tree_node* extract_muldiv_1(tree, tree, tree_code, tree, bool*)': ../../gcc_trunk/gcc/fold-const.c:6276:7: error: this statement may fall thr= ough [-Werror=3Dimplicit-fallthrough] if ((code =3D=3D TRUNC_MOD_EXPR || code =3D=3D CEIL_MOD_EXPR ^~ ../../gcc_trunk/gcc/fold-const.c:6289:5: note: here case TRUNC_DIV_EXPR: case CEIL_DIV_EXPR: case FLOOR_DIV_EXPR: ^~~~ The build works without the '-O0' flags. >>From gcc-bugs-return-538523-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:27:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31103 invoked by alias); 27 Sep 2016 07:27:47 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30892 invoked by uid 48); 27 Sep 2016 07:27:34 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77749] [7 Regression] profiledbootstrap broken Date: Tue, 27 Sep 2016 07:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02138.txt.bz2 Content-length: 727 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77749 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-27 Ever confirmed|0 |1 --- Comment #1 from Markus Trippelsdorf --- Started with r240492: commit 925add3b860b09960735cac1509285412a7712b4 Author: marxin Date: Mon Sep 26 11:04:18 2016 +0000 Remove HIST_TYPE_CONST_DELTA counter type (PR gcov-profile/23332) >>From gcc-bugs-return-538524-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:29:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 50628 invoked by alias); 27 Sep 2016 07:29:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 50156 invoked by uid 48); 27 Sep 2016 07:29:40 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77740] [7 regression] internal compiler error: in format_floating, at gimple-ssa-sprintf.c:1165 Date: Tue, 27 Sep 2016 07:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic, ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02139.txt.bz2 Content-length: 755 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77740 --- Comment #3 from Martin Li=C5=A1ka --- Minimal test-case: char *MSVCRT__ecvt_data_0; void foo() { __builtin_snprintf (MSVCRT__ecvt_data_0, 0, "%.*le"); } On x86_64-linux-gnu, minimal command line causing the ICE: $ gcc pr77740.i -Wformat pr77740.i:3:6: internal compiler error: in gimple_call_arg, at gimple.h:3156 void foo() ^~~ 0x12686d5 gimple_call_arg ../../gcc/gimple.h:3156 0x126872b gimple_call_arg ../../gcc/gimple.h:3164 0x126d719 compute_format_length ../../gcc/gimple-ssa-sprintf.c:2212 0x126e65f handle_gimple_call ../../gcc/gimple-ssa-sprintf.c:2654 0x126e767 execute ../../gcc/gimple-ssa-sprintf.c:2680 >>From gcc-bugs-return-538525-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:38:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 65211 invoked by alias); 27 Sep 2016 07:38:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 64837 invoked by uid 48); 27 Sep 2016 07:38:31 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77750] gcc build not working with -O0 Date: Tue, 27 Sep 2016 07:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02140.txt.bz2 Content-length: 2859 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77750 --- Comment #1 from Andrew Pinski --- Comment on attachment 39694 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39694 Possible patch (correctly formatted magic "fall through" comments) >Index: gcc/combine.c >=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >--- gcc/combine.c (revision 240520) >+++ gcc/combine.c (working copy) >@@ -11370,6 +11370,8 @@ simplify_compare_const (enum rtx_code code, machin > else > break; >=20 >+ /* fall through. */ >+ Yes this is correct but maybe it is better to rewrite this code slightly: if (const_op <=3D 0) break; const_op -=3D 1; code =3D LE; /* fall through. */ > case LE: > /* <=3D C is equivalent to < (C + 1); we do this for C < 0 */ > if (const_op < 0) >@@ -11399,6 +11401,8 @@ simplify_compare_const (enum rtx_code code, machin > else > break; >=20 >+ /* fall through. */ Likewise. >+ > case GT: > /* > C is equivalent to >=3D (C + 1); we do this for C < 0. */ > if (const_op < 0) >@@ -11927,7 +11931,7 @@ simplify_comparison (enum rtx_code code, rtx *pop0 > else > break; >=20 >- /* ... fall through ... */ >+ /* fall through. */ Likewise. >=20 > case ZERO_EXTEND: > mode =3D GET_MODE (XEXP (op0, 0)); >@@ -12339,7 +12343,8 @@ simplify_comparison (enum rtx_code code, rtx *pop0 > continue; > } >=20 >- /* ... fall through ... */ >+ /* fall through. */ Do something similar: /* If the inner mode is narrower and we are extracting the low pa= rt, we can treat the SUBREG as if it were a ZERO_EXTEND. */ if (!subreg_lowpart_p (op0) &|| GET_MODE_PRECISION (GET_MODE (SUBREG_REG (op0))) >=3D mode_width) break; /* fall through */ >+ > case LSHIFTRT: > /* If we have (compare (xshiftrt FOO N) (const_int C)) and > the low order N bits of FOO are known to be zero, we can do this >Index: gcc/fold-const.c >=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >--- gcc/fold-const.c (revision 240520) >+++ gcc/fold-const.c (working copy) >@@ -6284,7 +6284,7 @@ extract_muldiv_1 (tree t, tree c, enum tree_code c > return omit_one_operand (type, integer_zero_node, op0); > } >=20 >- /* ... fall through ... */ >+ /* fall through. */ This one is obvious. >=20 > case TRUNC_DIV_EXPR: case CEIL_DIV_EXPR: case FLOOR_DIV_EXPR: > case ROUND_DIV_EXPR: case EXACT_DIV_EXPR: >>From gcc-bugs-return-538526-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:39:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 66205 invoked by alias); 27 Sep 2016 07:39:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 66070 invoked by uid 48); 27 Sep 2016 07:38:58 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77750] [7 Regression] gcc build not working with -O0 Date: Tue, 27 Sep 2016 07:39:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on target_milestone short_desc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02141.txt.bz2 Content-length: 727 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77750 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |build Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-27 Target Milestone|--- |7.0 Summary|gcc build not working with |[7 Regression] gcc build |-O0 |not working with -O0 Ever confirmed|0 |1 --- Comment #2 from Andrew Pinski --- =2E >>From gcc-bugs-return-538527-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:41:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 78074 invoked by alias); 27 Sep 2016 07:41:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 77955 invoked by uid 48); 27 Sep 2016 07:41:25 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77749] [7 Regression] profiledbootstrap broken Date: Tue, 27 Sep 2016 07:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02142.txt.bz2 Content-length: 403 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77749 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|unassigned at gcc dot gnu.org |marxin at gcc dot g= nu.org --- Comment #2 from Martin Li=C5=A1ka --- Mine. >>From gcc-bugs-return-538528-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:43:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 80793 invoked by alias); 27 Sep 2016 07:43:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 80628 invoked by uid 48); 27 Sep 2016 07:43:25 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77749] [7 Regression] profiledbootstrap broken Date: Tue, 27 Sep 2016 07:43:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: version target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02143.txt.bz2 Content-length: 346 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77749 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Version|unknown |7.0 Target Milestone|--- |7.0 >>From gcc-bugs-return-538529-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:46:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 98425 invoked by alias); 27 Sep 2016 07:46:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 97433 invoked by uid 48); 27 Sep 2016 07:46:29 -0000 From: "gerald at pfeifer dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77751] New: [7 regression] cc1plus: error: unrecognized command line option "-Wno-implicit-fallthrough" for insn-emit.o Date: Tue, 27 Sep 2016 07:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gerald at pfeifer dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02144.txt.bz2 Content-length: 2382 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77751 Bug ID: 77751 Summary: [7 regression] cc1plus: error: unrecognized command line option "-Wno-implicit-fallthrough" for insn-emit.o Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: bootstrap Assignee: unassigned at gcc dot gnu.org Reporter: gerald at pfeifer dot com CC: polacek at redhat dot com Target Milestone: --- On i?86-unknown-freebsd9, which has GCC 4.2 as system compiler, bootstrap started to fail as follows: emit.TPo insn-emit.c g++ -std=3Dgnu++98 -fno-PIE -c -g -DIN_GCC -fno-strict-aliasing -fno-exceptions -fno-rtti -fasynchronous-unwind-tables -W -Wall -Wwrite-str= ings -Wcast-qual -Wno-format -Wmissing-format-attribute -Woverloaded-virtual -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -fno-common -DHAVE_CONFIG_H -I. -I. -I/scratch/tmp/gerald/gcc-HEAD/gcc -I/scratch/tmp/gerald/gcc-HEAD/gcc/. -I/scratch/tmp/gerald/gcc-HEAD/gcc/../include -I./../intl -I/scratch/tmp/gerald/gcc-HEAD/gcc/../libcpp/include -I/home/gerald/9-amd64/include=20 -I/scratch/tmp/gerald/gcc-HEAD/gcc/../libdecnumber -I/scratch/tmp/gerald/gcc-HEAD/gcc/../libdecnumber/dpd -I../libdecnumber -I/scratch/tmp/gerald/gcc-HEAD/gcc/../libbacktrace -o insn-extract.o -MT insn-extract.o -MMD -MP -MF ./.deps/insn-extract.TPo insn-extract.c cc1plus: error: unrecognized command line option "-Wno-implicit-fallthrough" gmake[3]: *** [Makefile:1102: insn-emit.o] Error 1 gmake[3]: *** Waiting for unfinished jobs.... rm fsf-funding.pod gcov.pod gpl.pod cpp.pod gfdl.pod gcc.pod gcov-tool.pod gmake[3]: Leaving directory '/scratch/tmp/gerald/OBJ-0927-0731/gcc' gmake[2]: *** [Makefile:4571: all-stage1-gcc] Error 2 gmake[2]: Leaving directory '/scratch/tmp/gerald/OBJ-0927-0731' gmake[1]: *** [Makefile:24240: stage1-bubble] Error 2 gmake[1]: Leaving directory '/scratch/tmp/gerald/OBJ-0927-0731' gmake: *** [Makefile:24577: bootstrap] Error 2 I believe this is caused by 2016-09-26 Marek Polacek PR c/7652 * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn, insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Add -Wno-switch-fallthrough. >>From gcc-bugs-return-538530-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:52:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 123839 invoked by alias); 27 Sep 2016 07:52:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123336 invoked by uid 55); 27 Sep 2016 07:52:19 -0000 From: "louis.krupp at zoho dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77750] [7 Regression] gcc build not working with -O0 Date: Tue, 27 Sep 2016 07:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build, diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: louis.krupp at zoho dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02145.txt.bz2 Content-length: 4274 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77750 --- Comment #3 from louis.krupp at zoho dot com --- I agree. But in the interests of reporting the bug and proposing a patch as soon as possible, I decided to minimize the risk of unintended consequences= by keeping things as simple as I could. If you like, I could follow your suggestions and clean this up and check it= in, but I wouldn't be able to do it tonight. I believe I'm an hour ahead of yo= u, and I've learned that when I try to do things in a hurry, I usually regret = it. Louis ---- On Tue, 27 Sep 2016 00:38:29 -0700 pinskia at gcc dot gnu.org wrote ----=20 > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77750=20 >=20=20 > --- Comment #1 from Andrew Pinski ---=20 > Comment on attachment 39694=20 > --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39694=20 > Possible patch (correctly formatted magic "fall through" comments)=20 >=20=20 > >Index: gcc/combine.c=20 > >=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=20 > >--- gcc/combine.c (revision 240520)=20 > >+++ gcc/combine.c (working copy)=20 > >@@ -11370,6 +11370,8 @@ simplify_compare_const (enum rtx_code code, mac= hin=20 > > else=20 > > break;=20 > >=20=20 > >+ /* fall through. */=20 > >+=20 >=20=20 > Yes this is correct but maybe it is better to rewrite this code slightl= y:=20 > if (const_op <=3D 0)=20 > break;=20 >=20=20 > const_op -=3D 1;=20 > code =3D LE;=20 > /* fall through. */=20 >=20=20 >=20=20 > > case LE:=20 > > /* <=3D C is equivalent to < (C + 1); we do this for C < 0 */=20 > > if (const_op < 0)=20 > >@@ -11399,6 +11401,8 @@ simplify_compare_const (enum rtx_code code, mac= hin=20 > > else=20 > > break;=20 > >=20=20 > >+ /* fall through. */=20 >=20=20 > Likewise.=20 >=20=20 > >+=20 > > case GT:=20 > > /* > C is equivalent to >=3D (C + 1); we do this for C < 0. */= =20 > > if (const_op < 0)=20 > >@@ -11927,7 +11931,7 @@ simplify_comparison (enum rtx_code code, rtx *p= op0=20 > > else=20 > > break;=20 > >=20=20 > >- /* ... fall through ... */=20 > >+ /* fall through. */=20 >=20=20 > Likewise.=20 >=20=20 > >=20=20 > > case ZERO_EXTEND:=20 > > mode =3D GET_MODE (XEXP (op0, 0));=20 > >@@ -12339,7 +12343,8 @@ simplify_comparison (enum rtx_code code, rtx *p= op0=20 > > continue;=20 > > }=20 > >=20=20 > >- /* ... fall through ... */=20 > >+ /* fall through. */=20 >=20=20 > Do something similar:=20 > /* If the inner mode is narrower and we are extracting the low part,=20 > we can treat the SUBREG as if it were a ZERO_EXTEND. */=20 > if (!subreg_lowpart_p (op0)=20 > &|| GET_MODE_PRECISION (GET_MODE (SUBREG_REG (op0))) >=3D= =20 > mode_width)=20 > break;=20 >=20=20 > /* fall through */=20 >=20=20 >=20=20 > >+=20 > > case LSHIFTRT:=20 > > /* If we have (compare (xshiftrt FOO N) (const_int C)) and=20 > > the low order N bits of FOO are known to be zero, we can do t= his=20 > >Index: gcc/fold-const.c=20 > >=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=20 > >--- gcc/fold-const.c (revision 240520)=20 > >+++ gcc/fold-const.c (working copy)=20 > >@@ -6284,7 +6284,7 @@ extract_muldiv_1 (tree t, tree c, enum tree_code = c=20 > > return omit_one_operand (type, integer_zero_node, op0);=20 > > }=20 > >=20=20 > >- /* ... fall through ... */=20 > >+ /* fall through. */=20 >=20=20 > This one is obvious.=20 >=20=20 > >=20=20 > > case TRUNC_DIV_EXPR: case CEIL_DIV_EXPR: case FLOOR_DIV_EXPR:=20 > > case ROUND_DIV_EXPR: case EXACT_DIV_EXPR:=20 >=20=20 > --=20=20 > You are receiving this mail because:=20 > You reported the bug. >>From gcc-bugs-return-538532-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:53:15 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 126692 invoked by alias); 27 Sep 2016 07:53:15 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125657 invoked by uid 55); 27 Sep 2016 07:53:01 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77666] ICE in gfc_omp_clause_default_ctor, at fortran/trans-openmp.c:471 Date: Tue, 27 Sep 2016 07:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: openmp X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02147.txt.bz2 Content-length: 626 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77666 --- Comment #3 from Jakub Jelinek --- Author: jakub Date: Tue Sep 27 07:52:28 2016 New Revision: 240522 URL: https://gcc.gnu.org/viewcvs?rev=3D240522&root=3Dgcc&view=3Drev Log: PR fortran/77666 * trans-openmp.c (gfc_omp_private_outer_ref): Return true even for references to allocatable arrays. * gfortran.dg/gomp/pr77666.f90: New test. Added: trunk/gcc/testsuite/gfortran.dg/gomp/pr77666.f90 Modified: trunk/gcc/fortran/ChangeLog trunk/gcc/fortran/trans-openmp.c trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538531-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:53:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125788 invoked by alias); 27 Sep 2016 07:53:03 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125523 invoked by uid 48); 27 Sep 2016 07:52:50 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77751] [7 regression] cc1plus: error: unrecognized command line option "-Wno-implicit-fallthrough" for insn-emit.o Date: Tue, 27 Sep 2016 07:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02146.txt.bz2 Content-length: 192 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77751 --- Comment #1 from Andrew Pinski --- Oh yes older gcc complain about non-existent negative warning options. >>From gcc-bugs-return-538533-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 07:54:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 128798 invoked by alias); 27 Sep 2016 07:54:35 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 128656 invoked by uid 48); 27 Sep 2016 07:54:22 -0000 From: "chengniansun at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77752] New: ICE on C++ code on x86_64-linux-gnu (internal compiler error: Segmentation fault, build_list_conv, implicit_conversion) Date: Tue, 27 Sep 2016 07:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: chengniansun at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02148.txt.bz2 Content-length: 3552 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77752 Bug ID: 77752 Summary: ICE on C++ code on x86_64-linux-gnu (internal compiler error: Segmentation fault, build_list_conv, implicit_conversion) Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: chengniansun at gmail dot com Target Milestone: --- $ gcc-trunk -v Using built-in specs. COLLECT_GCC=3Dgcc-trunk COLLECT_LTO_WRAPPER=3D/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/= 7.0.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: ../gcc-source-trunk/configure --enable-languages=3Dc,c++,l= to --prefix=3D/usr/local/gcc-trunk --disable-bootstrap Thread model: posix gcc version 7.0.0 20160926 (experimental) [trunk revision 240511] (GCC)=20 $=20 $ gcc-trunk small.C small.C: In function =E2=80=98void f(std::initializer_list)=E2=80=99: small.C:4:30: error: =E2=80=98l=E2=80=99 has incomplete type void f(std::initializer_list l) { f({2}); } ^ small.C:2:7: note: forward declaration of =E2=80=98class std::initializer_l= ist=E2=80=99 class initializer_list; ^~~~~~~~~~~~~~~~ small.C:4:40: internal compiler error: Segmentation fault void f(std::initializer_list l) { f({2}); } ^ 0xdcb7df crash_signal ../../gcc-source-trunk/gcc/toplev.c:337 0x650c8d tree_check ../../gcc-source-trunk/gcc/tree.h:3030 0x650c8d build_list_conv ../../gcc-source-trunk/gcc/cp/call.c:788 0x650c8d implicit_conversion ../../gcc-source-trunk/gcc/cp/call.c:1816 0x65c7e8 add_function_candidate ../../gcc-source-trunk/gcc/cp/call.c:2142 0x64ee06 add_candidates ../../gcc-source-trunk/gcc/cp/call.c:5410 0x6628cc perform_overload_resolution ../../gcc-source-trunk/gcc/cp/call.c:4067 0x662abe build_new_function_call(tree_node*, vec**, bool, int) ../../gcc-source-trunk/gcc/cp/call.c:4144 0x806718 finish_call_expr(tree_node*, vec**, b= ool, bool, int) ../../gcc-source-trunk/gcc/cp/semantics.c:2440 0x77edcb cp_parser_postfix_expression ../../gcc-source-trunk/gcc/cp/parser.c:6937 0x787b82 cp_parser_unary_expression ../../gcc-source-trunk/gcc/cp/parser.c:8019 0x7886a7 cp_parser_cast_expression ../../gcc-source-trunk/gcc/cp/parser.c:8696 0x788c73 cp_parser_binary_expression ../../gcc-source-trunk/gcc/cp/parser.c:8798 0x789563 cp_parser_assignment_expression ../../gcc-source-trunk/gcc/cp/parser.c:9086 0x78c069 cp_parser_expression ../../gcc-source-trunk/gcc/cp/parser.c:9253 0x78c7f8 cp_parser_expression_statement ../../gcc-source-trunk/gcc/cp/parser.c:10771 0x77a87a cp_parser_statement ../../gcc-source-trunk/gcc/cp/parser.c:10587 0x77b7d5 cp_parser_statement_seq_opt ../../gcc-source-trunk/gcc/cp/parser.c:10913 0x77b8af cp_parser_compound_statement ../../gcc-source-trunk/gcc/cp/parser.c:10867 0x799753 cp_parser_function_body ../../gcc-source-trunk/gcc/cp/parser.c:20887 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See for instructions. $=20 $ cat small.C namespace std { class initializer_list; } void f(std::initializer_list l) { f({2}); } >>From gcc-bugs-return-538534-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 08:00:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 55485 invoked by alias); 27 Sep 2016 08:00:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 49771 invoked by uid 48); 27 Sep 2016 07:59:55 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77751] [7 regression] cc1plus: error: unrecognized command line option "-Wno-implicit-fallthrough" for insn-emit.o Date: Tue, 27 Sep 2016 08:00:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cf_gcchost target_milestone everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02149.txt.bz2 Content-length: 782 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77751 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-27 Host| |i?86-unknown-freebsd9 Target Milestone|--- |7.0 Ever confirmed|0 |1 --- Comment #2 from Richard Biener --- Confirmed. You can't do this for flags not present in all GG supported for stage1. See how -Wno-error is used instead of a specific warning on other objects for the very same reason. >>From gcc-bugs-return-538535-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 08:16:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 85147 invoked by alias); 27 Sep 2016 08:16:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 84893 invoked by uid 48); 27 Sep 2016 08:16:05 -0000 From: "bernd.edlinger at hotmail dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 08:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: bernd.edlinger at hotmail dot de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02150.txt.bz2 Content-length: 510 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 Bernd Edlinger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bernd.edlinger at hotmail = dot de --- Comment #4 from Bernd Edlinger --- Yes. m68k seems to have similar problems: https://gcc.gnu.org/ml/gcc-testresults/2016-09/msg02465.html >>From gcc-bugs-return-538536-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 08:31:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 117251 invoked by alias); 27 Sep 2016 08:31:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 117109 invoked by uid 48); 27 Sep 2016 08:31:43 -0000 From: "bernd.edlinger at hotmail dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 08:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: bernd.edlinger at hotmail dot de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02151.txt.bz2 Content-length: 1035 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #5 from Bernd Edlinger --- I think the problem is that tree libstdc++ functions are called, but the basic_string structure has been c-reduced. Especially _Alloc_hider, but when that is removed the test case does no longer reproduce the original problem.... But at least tow externals can be removed easily. Does this work? --- pr77550.C.orig 2016-09-27 10:05:17.812179103 +0200 +++ pr77550.C 2016-09-27 10:13:50.407075199 +0200 @@ -231,9 +231,8 @@ } _M_dataplus; size_type _M_string_length; enum { _S_local_capacity =3D 15 } _M_local_buf[_S_local_capacity]; - pointer _M_local_data(); - void _M_set_length(size_type); - basic_string() : _M_dataplus(_M_local_data()) { _M_set_length(0); } + pointer _M_local_data() { return 0; } + basic_string() : _M_dataplus(_M_local_data()) {} basic_string(const basic_string &) : _M_dataplus(0) {} size_type size() { return _M_string_length; } char *data() const {} >>From gcc-bugs-return-538537-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 08:51:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 61792 invoked by alias); 27 Sep 2016 08:51:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 60653 invoked by uid 48); 27 Sep 2016 08:50:48 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77753] New: [7 Regression] broken profiledbootstrap due to -Werror=format-length in varasm.c:1573 Date: Tue, 27 Sep 2016 08:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02152.txt.bz2 Content-length: 2311 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77753 Bug ID: 77753 Summary: [7 Regression] broken profiledbootstrap due to -Werror=3Dformat-length in varasm.c:1573 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: bootstrap Assignee: unassigned at gcc dot gnu.org Reporter: marxin at gcc dot gnu.org Target Milestone: --- Running profiledbootstrap on a ppc64le machine: ../../gcc/varasm.c: In function =E2=80=98void default_named_section_asm_out_destructor(rtx, int)=E2=80=99: ../../gcc/varasm.c:1573:1: error: =E2=80=98%.5u=E2=80=99 directive writing = between 5 and 10 bytes into a region of size 9 [-Werror=3Dformat-length=3D] default_named_section_asm_out_destructor (rtx symbol, int priority) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../gcc/varasm.c:1573:1: note: directive argument in the range [-21474181= 12, 2147483647] ../../gcc/varasm.c:1568:7: note: format output between 13 and 18 bytes into= a destination of size 16 p); ^ ../../gcc/varasm.c: In function =E2=80=98void default_named_section_asm_out_constructor(rtx, int)=E2=80=99: ../../gcc/varasm.c:1596:1: error: =E2=80=98%.5u=E2=80=99 directive writing = between 5 and 10 bytes into a region of size 9 [-Werror=3Dformat-length=3D] default_named_section_asm_out_constructor (rtx symbol, int priority) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../gcc/varasm.c:1596:1: note: directive argument in the range [-21474181= 12, 2147483647] ../../gcc/varasm.c:1568:7: note: format output between 13 and 18 bytes into= a destination of size 16 p); code snippet: char buf[16]; /* ??? This only works reliably with the GNU linker. */ sprintf (buf, "%s.%.5u", constructor_p ? ".ctors" : ".dtors", /* Invert the numbering so the linker puts us in the proper order; constructors are run from right to left, and the linker sorts in increasing order. */ MAX_INIT_PRIORITY - priority); I'm wondering whether "%.5u" format (limiting output to 5 digits) is really supported by sprintf? If not, I guess we should either increase buffer size. Can sprintf format c= heck utilize VRP information? >>From gcc-bugs-return-538538-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 08:51:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 62694 invoked by alias); 27 Sep 2016 08:51:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 62550 invoked by uid 48); 27 Sep 2016 08:51:11 -0000 From: "laurent.alfonsi at st dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug lto/77754] New: internal compiler error : tree code 'call_expr' is not supported in LTO streams Date: Tue, 27 Sep 2016 08:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: lto X-Bugzilla-Version: 5.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: laurent.alfonsi at st dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02153.txt.bz2 Content-length: 1499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77754 Bug ID: 77754 Summary: internal compiler error : tree code 'call_expr' is not supported in LTO streams Product: gcc Version: 5.3.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: lto Assignee: unassigned at gcc dot gnu.org Reporter: laurent.alfonsi at st dot com Target Milestone: --- Created attachment 39695 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39695&action=3Dedit testcase Hi, I am obtaining a ICE in LTO phase, when passing the enclosed example using a nested function with a variable length array parameter : --------- <> int fn3(); void fn1() { void fn2(int[][fn3()]); } --------- I have been able to reproduce with a x86_64 native gcc : $ gcc -c -flto reduce.c reduce.c:5:1: internal compiler error: tree code 'call_expr' is not suppo= rted in LTO streams } My gcc configuration is very simple : $ gcc -v=20 Configured with: ../configure --prefix=3D --with-gnu-as --with-gnu-= ld --enable-shared --enable-languages=3Dc,c++ --disable-libgcj --disable-nls --with-gmp=3D --with-mpfr=3D --with-mpc=3D --with-isl=3D --with-cloog=3D --disable-bootstrap --enable-= lto --with-local-prefix=3D Thread model: posix gcc version 5.3.0 (GCC)=20 It well passes with gcc 4.9.0 to 4.9.4. Regards, >>From gcc-bugs-return-538539-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 08:52:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63808 invoked by alias); 27 Sep 2016 08:52:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 63716 invoked by uid 48); 27 Sep 2016 08:52:05 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77752] ICE on C++ code on x86_64-linux-gnu (internal compiler error: Segmentation fault, build_list_conv, implicit_conversion) Date: Tue, 27 Sep 2016 08:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02154.txt.bz2 Content-length: 660 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77752 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-invalid-code Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-27 CC| |marxin at gcc dot gnu.org Ever confirmed|0 |1 --- Comment #1 from Martin Li=C5=A1ka --- ICEs for all releases I have (4.5.0+). >>From gcc-bugs-return-538540-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 08:55:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 78669 invoked by alias); 27 Sep 2016 08:55:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 77850 invoked by uid 48); 27 Sep 2016 08:55:06 -0000 From: "tkoenig at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/27077] [x86, 4.1] builtin strlen poor performance Date: Tue, 27 Sep 2016 08:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: tkoenig at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02155.txt.bz2 Content-length: 454 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27077 --- Comment #9 from Thomas Koenig --- Please see https://gcc.gnu.org/bugs/#need for the things that are required for a bug report. Specifically,=20 the preprocessed file (*.i*) that triggers the bug, generated by adding -save-temps to the complete compilation command, or, in the case of a bug report for the GNAT front end, a complete set of source files (see below). >>From gcc-bugs-return-538541-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 08:56:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 21818 invoked by alias); 27 Sep 2016 08:56:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121410 invoked by uid 48); 27 Sep 2016 08:56:37 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug lto/77754] internal compiler error : tree code 'call_expr' is not supported in LTO streams Date: Tue, 27 Sep 2016 08:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: lto X-Bugzilla-Version: 5.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02156.txt.bz2 Content-length: 554 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77754 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-27 CC| |trippels at gcc dot gnu.org Ever confirmed|0 |1 Known to fail| |5.4.0, 6.2.0, 7.0 >>From gcc-bugs-return-538542-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 09:10:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39529 invoked by alias); 27 Sep 2016 09:10:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 39317 invoked by uid 48); 27 Sep 2016 09:09:59 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Tue, 27 Sep 2016 09:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc component Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02157.txt.bz2 Content-length: 5404 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jwakely.gcc at gmail dot c= om Component|target |libstdc++ --- Comment #10 from Richard Biener --- So it's @(insn:TI 21 24 15 (parallel [ @ (set (reg:SI 0 r0) @ (mem/c:SI (reg/f:SI 3 r3 [120]) [23 MEM[(union _Any_data &)&D.50945]+0 S4 A64])) @ (set (reg:SI 1 r1) @ (mem/c:SI (plus:SI (reg/f:SI 3 r3 [120]) @ (const_int 4 [0x4])) [23 MEM[(union _Any_data &)&D.50945]+4 S4 A32])) @ ]) t.ii:1926 383 {*ldm2_} @ (nil)) ldm r3, {r0, r1} @ 21 *ldm2_ [length =3D 4] vs. @(insn:TI 17 25 18 (set (mem/f/c:SI (plus:SI (reg/f:SI 13 sp) @ (const_int 32 [0x20])) [30 MEM[(struct __lambda1 *)&D.5094= 5]+0 S4 A64]) @ (reg/f:SI 5 r5 [orig:114 this ] [114])) 630 {*arm_movsi_vfp} @ (nil)) str r5, [sp, #32] @ 17 *arm_movsi_vfp/6 [length =3D= 4] @(insn:TI 18 17 118 (set (mem/f/c:SI (plus:SI (reg/f:SI 13 sp) @ (const_int 36 [0x24])) [30 MEM[(struct __lambda1 *)&D.5094= 5 + 4B]+0 S4 A32]) @ (reg/f:SI 5 r5 [orig:114 this ] [114])) 630 {*arm_movsi_vfp} @ (nil)) str r5, [sp, #36] @ 18 *arm_movsi_vfp/6 [length =3D= 4] and obviously r3 =3D=3D sp + 32 and thus this is a must-alias. But the ali= as sets are 30 vs. 23 here. At RTL expansion time: ;; MEM[(struct __lambda1 *)&D.50945] =3D this_4(D); (insn 17 16 0 (set (mem/f/c:SI (plus:SI (reg/f:SI 105 virtual-stack-vars) (const_int -16 [0xfffffffffffffff0])) [30 MEM[(struct __lam= bda1 *)&D.50945]+0 S4 A64]) (reg/f:SI 114 [ this ])) -1 (nil)) ;; MEM[(struct __lambda1 *)&D.50945 + 4B] =3D this_4(D); (insn 18 17 0 (set (mem/f/c:SI (plus:SI (reg/f:SI 105 virtual-stack-vars) (const_int -12 [0xfffffffffffffff4])) [30 MEM[(struct __lam= bda1 *)&D.50945 + 4B]+0 S4 A32]) (reg/f:SI 114 [ this ])) -1 (nil)) ... ;; __tmp =3D MEM[(union _Any_data &)&D.50945]; (insn 19 18 20 (set (reg:SI 119) (plus:SI (reg/f:SI 105 virtual-stack-vars) (const_int -40 [0xffffffffffffffd8]))) t.ii:1926 -1 (nil)) (insn 20 19 21 (set (reg:SI 120) (plus:SI (reg/f:SI 105 virtual-stack-vars) (const_int -16 [0xfffffffffffffff0]))) t.ii:1926 -1 (nil)) (insn 21 20 22 (parallel [ (set (reg:SI 0 r0) (mem/c:SI (reg:SI 120) [23 MEM[(union _Any_data &)&D.50945]= +0 S4 A64])) (set (reg:SI 1 r1) (mem/c:SI (plus:SI (reg:SI 120) (const_int 4 [0x4])) [23 MEM[(union _Any_data &)&D.50945]+4 S4 A32])) ]) t.ii:1926 -1 (nil)) (insn 22 21 0 (parallel [ (set (mem/c:SI (reg:SI 119) [23 __tmp+0 S4 A64]) (reg:SI 0 r0)) (set (mem/c:SI (plus:SI (reg:SI 119) (const_int 4 [0x4])) [23 __tmp+4 S4 A32]) (reg:SI 1 r1)) ]) t.ii:1926 -1 (nil)) =46rom GIMPLE with more context: ;; basic block 2, loop depth 0 ;; pred: ENTRY dummy_a =3D 1; std::__ostream_insert > (&cout, "", 0); MEM[(struct &)&f] =3D{v} {CLOBBER}; MEM[(struct &)&f] =3D{v} {CLOBBER}; MEM[(union _Any_data *)&f] =3D this_4(D); MEM[(union _Any_data *)&f + 4B] =3D &dummy_a; MEM[(struct &)&D.50945] =3D{v} {CLOBBER}; MEM[(struct &)&D.50945] =3D{v} {CLOBBER}; MEM[(struct __lambda1 *)&D.50945] =3D this_4(D); <--- MEM[(struct __lambda1 *)&D.50945 + 4B] =3D this_4(D); <--- __tmp =3D MEM[(union _Any_data &)&D.50945]; <--- MEM[(union _Any_data *)&D.50945] =3D MEM[(union _Any_data &)&f]; MEM[(union _Any_data *)&f] =3D __tmp; __tmp =3D{v} {CLOBBER}; ... not very well optimized either, the copy to __tmp could be elided. What SRA does is obviously correct now (and incorrect before): - MEM[(struct __lambda0 *)&D.47785] =3D __f; + MEM[(struct __lambda0 *)&D.47785] =3D __f$__this_17; + MEM[(struct __lambda0 *)&D.47785 + 4B] =3D __f$__dummy_a_19; ... - MEM[(struct __lambda1 *)&D.47815] =3D __f; + MEM[(struct __lambda1 *)&D.47815] =3D __f$__this_17; + MEM[(struct __lambda1 *)&D.47815 + 4B] =3D __f$__tmp_19; so you see it now preserves the alias sets for the stores. That _Any_data identifier makes me suspicious of the testcase invoking undefined behavior: union _Any_data { void* _M_access() { return &_M_pod_data[0]; } const void* _M_access() const { return &_M_pod_data[0]; } template _Tp& _M_access() { return *static_cast<_Tp*>(_M_access()); } template const _Tp& _M_access() const { return *static_cast(_M_access()); } _Nocopy_types _M_unused; char _M_pod_data[sizeof(_Nocopy_types)]; }; it seems to fall foul of the common misconception that you can do aggregate copies of type _Any_data and that this will properly transfer objects constructed into _Any_data::_M_pod_data. That is obviously not the case. -> latent libstd++ issue unless proved otherwise. >>From gcc-bugs-return-538543-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 09:14:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 51933 invoked by alias); 27 Sep 2016 09:14:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 49146 invoked by uid 48); 27 Sep 2016 09:14:37 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Tue, 27 Sep 2016 09:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02158.txt.bz2 Content-length: 1158 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #11 from Richard Biener --- ;; Function void std::function<_Res(_ArgTypes ...)>::swap(std::function<_Res(_ArgTypes ...)>&) [with _Res =3D void; _ArgT= ypes =3D {}] (null) ;; enabled by -tree-original <<< Unknown tree: must_not_throw_expr < ((union _Any_data &) &((struct function *) this)->D.45189._M_functor, (union _Any_data &) &((struct function *) __x)->D.45189._M_functor) >>>>>; ^^^^ doing std::swap on _Any_data. That's of course bogus. /** * @brief Swap the targets of two %function objects. * @param __x A %function with identical call signature. * * Swap the targets of @c this function object and @a __f. This * function will not throw an %exception. */ void swap(function& __x) noexcept { std::swap(_M_functor, __x._M_functor); std::swap(_M_manager, __x._M_manager); std::swap(_M_invoker, __x._M_invoker); } and swap() seems to be used in multiple places throughout functional. >>From gcc-bugs-return-538544-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 09:17:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 68002 invoked by alias); 27 Sep 2016 09:17:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 67750 invoked by uid 48); 27 Sep 2016 09:16:59 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Tue, 27 Sep 2016 09:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02159.txt.bz2 Content-length: 810 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #12 from Richard Biener --- Index: libstdc++-v3/include/std/functional =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- libstdc++-v3/include/std/functional (revision 240521) +++ libstdc++-v3/include/std/functional (working copy) @@ -1418,7 +1418,7 @@ _GLIBCXX_MEM_FN_TRAITS(&&, false_type, t _Nocopy_types _M_unused; char _M_pod_data[sizeof(_Nocopy_types)]; - }; + } __attribute__((may_alias)); enum _Manager_operation { fixes this testcase. As std::swap takes reference args I suppose it should reliably work to prevent the issue. >>From gcc-bugs-return-538545-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 09:35:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 29571 invoked by alias); 27 Sep 2016 09:35:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29286 invoked by uid 48); 27 Sep 2016 09:35:28 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug lto/77754] [5/6/7 Regression] internal compiler error : tree code 'call_expr' is not supported in LTO streams Date: Tue, 27 Sep 2016 09:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: lto X-Bugzilla-Version: 5.3.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc cf_known_to_work assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02160.txt.bz2 Content-length: 722 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77754 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code CC| |marxin at gcc dot gnu.org Known to work| |4.9.0 Assignee|unassigned at gcc dot gnu.org |marxin at gcc dot g= nu.org --- Comment #1 from Martin Li=C5=A1ka --- I can confirm that GCC ICEs for all revisions I have expect 4.9.x. I'm going to take a look how is the CALL_EXPR optimized out. >>From gcc-bugs-return-538546-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 09:37:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35869 invoked by alias); 27 Sep 2016 09:37:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35645 invoked by uid 48); 27 Sep 2016 09:37:18 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77751] [7 regression] cc1plus: error: unrecognized command line option "-Wno-implicit-fallthrough" for insn-emit.o Date: Tue, 27 Sep 2016 09:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02161.txt.bz2 Content-length: 461 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77751 Marek Polacek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED CC| |mpolacek at gcc dot gnu.org Assignee|unassigned at gcc dot gnu.org |mpolacek at gcc dot= gnu.org >>From gcc-bugs-return-538547-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 09:53:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 95700 invoked by alias); 27 Sep 2016 09:53:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 95362 invoked by uid 48); 27 Sep 2016 09:53:21 -0000 From: "schwab@linux-m68k.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 09:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: schwab@linux-m68k.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02162.txt.bz2 Content-length: 554 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #6 from Andreas Schwab --- On m68k it crashes here: Program received signal SIGSEGV, Segmentation fault. __GI_memcmp (s1=3D0x0, s2=3D0x0, len=3D2285895680) at memcmp.c:333 333 memcmp.c: No such file or directory. (gdb) up #1 0x8000093c in std::char_traits::compare (p3=3D,=20 p2=3D) at ../gcc/testsuite/g++.dg/pr77550.C:221 221 return __builtin_memcmp(0, p2, p3); With the change in #c5 it runs successfully. >>From gcc-bugs-return-538550-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:05:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 128349 invoked by alias); 27 Sep 2016 10:05:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 128001 invoked by uid 48); 27 Sep 2016 10:05:26 -0000 From: "vladimir.fuka at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77746] [5/6/7 Regression] Wrong subroutine called, clash of specific procedure name and binding-name Date: Tue, 27 Sep 2016 10:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.3.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: vladimir.fuka at gmail dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02165.txt.bz2 Content-length: 224 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77746 --- Comment #3 from Vladimir Fuka --- Indeed, 4.9 crashes as well, my first description is incorrect. It was runn= ing=20 well in 4.8.5. >>From gcc-bugs-return-538549-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:05:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127652 invoked by alias); 27 Sep 2016 10:05:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127325 invoked by uid 55); 27 Sep 2016 10:05:11 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77749] [7 Regression] profiledbootstrap broken Date: Tue, 27 Sep 2016 10:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02164.txt.bz2 Content-length: 871 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77749 --- Comment #3 from Martin Li=C5=A1ka --- Author: marxin Date: Tue Sep 27 10:04:39 2016 New Revision: 240524 URL: https://gcc.gnu.org/viewcvs?rev=3D240524&root=3Dgcc&view=3Drev Log: Remove __gcov_merge_delta (PR bootstrap/77749) PR bootstrap/77749 * gcov-counter.def: Remove GCOV_COUNTER_V_DELTA. PR bootstrap/77749 * Makefile.in: Remove _gcov_merge_delta. * libgcov-merge.c (void __gcov_merge_delta): Remove. * libgcov-util.c (__gcov_delta_counter_op): Remove. * libgcov.h: Remove declaration of __gcov_merge_delta. Modified: trunk/gcc/ChangeLog trunk/gcc/gcov-counter.def trunk/libgcc/ChangeLog trunk/libgcc/Makefile.in trunk/libgcc/libgcov-merge.c trunk/libgcc/libgcov-util.c trunk/libgcc/libgcov.h >>From gcc-bugs-return-538548-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:05:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 126442 invoked by alias); 27 Sep 2016 10:05:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126253 invoked by uid 48); 27 Sep 2016 10:04:47 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Tue, 27 Sep 2016 10:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02163.txt.bz2 Content-length: 1051 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #13 from Jonathan Wakely --- (In reply to Richard Biener from comment #12) > Index: libstdc++-v3/include/std/functional > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- libstdc++-v3/include/std/functional (revision 240521) > +++ libstdc++-v3/include/std/functional (working copy) > @@ -1418,7 +1418,7 @@ _GLIBCXX_MEM_FN_TRAITS(&&, false_type, t >=20=20 > _Nocopy_types _M_unused; > char _M_pod_data[sizeof(_Nocopy_types)]; > - }; > + } __attribute__((may_alias)); >=20=20 > enum _Manager_operation > { >=20 > fixes this testcase. As std::swap takes reference args I suppose it shou= ld > reliably work to prevent the issue. I think this is the right fix. IIUC this is a valid use of may_alias, as the whole point of _Any_data is that it can alias an unbounded set of types. >>From gcc-bugs-return-538551-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:08:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 514 invoked by alias); 27 Sep 2016 10:08:03 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 302 invoked by uid 48); 27 Sep 2016 10:07:50 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77749] [7 Regression] profiledbootstrap broken Date: Tue, 27 Sep 2016 10:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02166.txt.bz2 Content-length: 442 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77749 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #4 from Martin Li=C5=A1ka --- Fixed on trunk. >>From gcc-bugs-return-538552-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:11:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 6599 invoked by alias); 27 Sep 2016 10:11:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 6358 invoked by uid 48); 27 Sep 2016 10:10:52 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Tue, 27 Sep 2016 10:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02167.txt.bz2 Content-length: 960 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #14 from Richard Biener --- Just to explain a little bit. Consider void foo (void) { union { float f; char c[4]; } u, v; *(int *)&u =3D 0; v =3D u; return *(int *)&v; } then C11 6.5/6,7 make it clear that it is not valid to use 'u' (of union ty= pe) to access the object which now has effective type 'int' (in fact that store alone, given strict reading of C11 6.5/6 is invalid as u has a declared typ= e). The union does not have 'int' amongst its members. Putting 'char' or an array of 'char' into the union does not make the access fall under 6.5/7 as 'a character type' only follows 'an aggregate or union type that includes one of the _AFOREMENTIONED_ types...' (emphasis mine). GCC allows even objects with a declared type to take any effective type by means of storing to it with that type (to support existing practice and multiple languages). >>From gcc-bugs-return-538553-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:13:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 9229 invoked by alias); 27 Sep 2016 10:13:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 9059 invoked by uid 48); 27 Sep 2016 10:13:06 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Tue, 27 Sep 2016 10:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02168.txt.bz2 Content-length: 464 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #15 from Richard Biener --- Btw, what I fail to find is sth in the (C) standard that specifies the semantics of an aggregate assignment of union type. Thus I interpret it to= use the effective type of the object (determined by the last access) and thus only transfer the active object (so a union aggregate copy is _not_ a bytewise copy of size sizeof (union type)). >>From gcc-bugs-return-538554-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:26:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69577 invoked by alias); 27 Sep 2016 10:26:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 69445 invoked by uid 48); 27 Sep 2016 10:25:49 -0000 From: "var at schellong dot biz" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/27077] [x86, 4.1] builtin strlen poor performance Date: Tue, 27 Sep 2016 10:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: var at schellong dot biz X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02169.txt.bz2 Content-length: 964 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27077 --- Comment #10 from Helmut Schellong --- (In reply to Thomas Koenig from comment #9) > Please see https://gcc.gnu.org/bugs/#need for the things that > are required for a bug report. >=20 > Specifically,=20 >=20 > the preprocessed file (*.i*) that triggers the bug, generated by adding > -save-temps to the complete compilation command, or, in the case of a bug > report for the GNAT front end, a complete set of source files (see below). In this case a lot of informations are not necessary. This can be shortened to: "Change each builtin that implements string instructions." That's almost enough. Example: The strlen() in (my) libc reads eight bytes and realizes a zero byte therein at a single blow. scasb cannot be so fast (bytewise). This C code (translated): while (*s) ++s; return (s-s0); runs three times faster than the scasb-builtin. This says all-inclusive. >>From gcc-bugs-return-538555-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:39:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 107770 invoked by alias); 27 Sep 2016 10:39:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 107583 invoked by uid 48); 27 Sep 2016 10:39:20 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77754] [5/6/7 Regression] internal compiler error : tree code 'call_expr' is not supported in LTO streams Date: Tue, 27 Sep 2016 10:39:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 5.3.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02170.txt.bz2 Content-length: 671 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77754 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Component|lto |c Target Milestone|--- |5.5 --- Comment #2 from Richard Biener --- The issue is we fail to gimplify type sizes properly: fn1 () { extern void fn2 (int[0:(sizetype) ((long int) SAVE_EXPR + -1)] *= ); } happens when we try to output the function type of fn2. Bug in the fronten= d, a DECL_EXPR is missing here. >>From gcc-bugs-return-538556-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:41:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 114527 invoked by alias); 27 Sep 2016 10:41:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 114084 invoked by uid 55); 27 Sep 2016 10:41:10 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77751] [7 regression] cc1plus: error: unrecognized command line option "-Wno-implicit-fallthrough" for insn-emit.o Date: Tue, 27 Sep 2016 10:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02171.txt.bz2 Content-length: 549 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77751 --- Comment #3 from Marek Polacek --- Author: mpolacek Date: Tue Sep 27 10:40:37 2016 New Revision: 240526 URL: https://gcc.gnu.org/viewcvs?rev=3D240526&root=3Dgcc&view=3Drev Log: PR bootstrap/77751 * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn, insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Use -Wno-error instead of -Wno-implicit-fallthrough. Modified: trunk/gcc/ChangeLog trunk/gcc/Makefile.in >>From gcc-bugs-return-538557-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:45:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 7482 invoked by alias); 27 Sep 2016 10:45:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126222 invoked by uid 48); 27 Sep 2016 10:45:23 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77754] [5/6/7 Regression] internal compiler error : tree code 'call_expr' is not supported in LTO streams Date: Tue, 27 Sep 2016 10:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 5.3.0 X-Bugzilla-Keywords: ice-on-valid-code, lto X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02172.txt.bz2 Content-length: 1052 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77754 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |lto CC| |jsm28 at gcc dot gnu.org --- Comment #3 from Richard Biener --- Note this isn't a nested function but a function declaration. Doesn't ICE w= ith a nested function: int fn3(); void fn1() { void fn2(int a[][fn3()]) { } int x[1][fn3()]; fn2(x); } but still has the bogus non-gimplified type: fn1 () { ... static void fn2 (int[0:(sizetype) ((long int) SAVE_EXPR + -1)] *= ); and odd place of evaluating fn3(): fn2 (int[0:D.1798] * a) { int D.1797; sizetype D.1798; bitsizetype D.1799; sizetype D.1800; D.1797 =3D fn3 (); _1 =3D (long int) D.1797; ... I wonder what the standards say about side-effects in those "declarations". >>From gcc-bugs-return-538558-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:46:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 8823 invoked by alias); 27 Sep 2016 10:46:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 8692 invoked by uid 48); 27 Sep 2016 10:46:37 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77753] [7 Regression] broken profiledbootstrap due to -Werror=format-length in varasm.c:1573 Date: Tue, 27 Sep 2016 10:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02173.txt.bz2 Content-length: 293 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77753 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |7.0 >>From gcc-bugs-return-538561-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:54:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 36769 invoked by alias); 27 Sep 2016 10:54:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 36455 invoked by uid 55); 27 Sep 2016 10:54:36 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77450] [5/6 Regression] ICE: in verify_ssa, at tree-ssa.c:1016 on very simple code with vectors Date: Tue, 27 Sep 2016 10:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02176.txt.bz2 Content-length: 2665 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77450 --- Comment #7 from Richard Biener --- Author: rguenth Date: Tue Sep 27 10:54:00 2016 New Revision: 240527 URL: https://gcc.gnu.org/viewcvs?rev=3D240527&root=3Dgcc&view=3Drev Log: 2016-09-27 Richard Biener Backport from mainline 2016-09-01 Richard Biener PR middle-end/77436 * tree-chrec.c (tree_fold_binomial): Use widest_int, properly check whether the result fits the desired result type. * gcc.dg/torture/pr77436.c: New testcase. 2016-09-06 Richard Biener PR c/77450 c-family/ * c-common.c (c_common_mark_addressable_vec): Handle COMPOUND_LITERAL_EXPR. * gcc.dg/pr77450.c: New testcase. 2016-09-19 Richard Biener PR tree-optimization/77514 * tree-ssa-pre.c (create_expression_by_pieces): Optimize search for folded stmt. 2016-09-15 Richard Biener PR tree-optimization/77514 * tree-ssa-pre.c (create_expression_by_pieces): Handle garbage only forced_stmts sequence. * gcc.dg/torture/pr77514.c: New testcase. 2016-09-15 Richard Biener PR middle-end/77544 * fold-const.c (split_tree): Do not split constant ~X. * c-c++-common/torture/pr77544.c: New testcase. 2016-09-19 Richard Biener PR middle-end/77605 * tree-data-ref.c (analyze_subscript_affine_affine): Use the proper niter to bound the loops. * gcc.dg/torture/pr77605.c: New testcase. 2016-09-22 Richard Biener PR middle-end/77679 * gimple-fold.c (fold_array_ctor_reference): Turn asserts into fold fails. Added: branches/gcc-6-branch/gcc/testsuite/c-c++-common/torture/pr77544.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr77450.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77436.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77514.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77605.c Modified: branches/gcc-6-branch/gcc/ChangeLog branches/gcc-6-branch/gcc/c-family/ChangeLog branches/gcc-6-branch/gcc/c-family/c-common.c branches/gcc-6-branch/gcc/fold-const.c branches/gcc-6-branch/gcc/gimple-fold.c branches/gcc-6-branch/gcc/testsuite/ChangeLog branches/gcc-6-branch/gcc/tree-chrec.c branches/gcc-6-branch/gcc/tree-data-ref.c branches/gcc-6-branch/gcc/tree-ssa-pre.c >>From gcc-bugs-return-538559-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:54:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 21670 invoked by alias); 27 Sep 2016 10:54:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 21113 invoked by uid 48); 27 Sep 2016 10:53:57 -0000 From: "christophe.monat at st dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77754] [5/6/7 Regression] internal compiler error : tree code 'call_expr' is not supported in LTO streams Date: Tue, 27 Sep 2016 10:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 5.3.0 X-Bugzilla-Keywords: ice-on-valid-code, lto X-Bugzilla-Severity: normal X-Bugzilla-Who: christophe.monat at st dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02174.txt.bz2 Content-length: 1344 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77754 --- Comment #4 from Christophe Monat --- (In reply to Richard Biener from comment #3) > I wonder what the standards say about side-effects in those "declarations= ". =46rom my instance of ISO+IEC+9899-2011.pdf 6.7.6.2 Array declarators Constraints ... Semantics (5) If the size is an expression that is not an integer constant expression= : if it occurs in a declaration at function prototype scope, it is treated as if it were replac= ed by *; otherwise, each time it is evaluated it shall have a value greater than zero. The size= of each instance of a variable length array type does not change during its lifetime. Where a size expression is part of the operand of a sizeof operator and changing the val= ue of the size expression would not affect the result of the operator, it is unspecif= ied whether or not the size expression is evaluated. And 6.7.6.3 Function declarators (including prototypes) (12) If the function declarator is not part of a definition of that functio= n, parameters may have incomplete type and may use the [*] notation in their sequences of declarat= or specifiers to specify variable length array types. So to me it looks, like the compiler could consider the original declaratio= n as if it where: void fn2(int[][*]); >>From gcc-bugs-return-538560-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:54:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 36754 invoked by alias); 27 Sep 2016 10:54:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 36423 invoked by uid 55); 27 Sep 2016 10:54:35 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77436] [5 Regression] Incorrect constant result for summing loop inserted Date: Tue, 27 Sep 2016 10:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02175.txt.bz2 Content-length: 2665 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77436 --- Comment #8 from Richard Biener --- Author: rguenth Date: Tue Sep 27 10:54:00 2016 New Revision: 240527 URL: https://gcc.gnu.org/viewcvs?rev=3D240527&root=3Dgcc&view=3Drev Log: 2016-09-27 Richard Biener Backport from mainline 2016-09-01 Richard Biener PR middle-end/77436 * tree-chrec.c (tree_fold_binomial): Use widest_int, properly check whether the result fits the desired result type. * gcc.dg/torture/pr77436.c: New testcase. 2016-09-06 Richard Biener PR c/77450 c-family/ * c-common.c (c_common_mark_addressable_vec): Handle COMPOUND_LITERAL_EXPR. * gcc.dg/pr77450.c: New testcase. 2016-09-19 Richard Biener PR tree-optimization/77514 * tree-ssa-pre.c (create_expression_by_pieces): Optimize search for folded stmt. 2016-09-15 Richard Biener PR tree-optimization/77514 * tree-ssa-pre.c (create_expression_by_pieces): Handle garbage only forced_stmts sequence. * gcc.dg/torture/pr77514.c: New testcase. 2016-09-15 Richard Biener PR middle-end/77544 * fold-const.c (split_tree): Do not split constant ~X. * c-c++-common/torture/pr77544.c: New testcase. 2016-09-19 Richard Biener PR middle-end/77605 * tree-data-ref.c (analyze_subscript_affine_affine): Use the proper niter to bound the loops. * gcc.dg/torture/pr77605.c: New testcase. 2016-09-22 Richard Biener PR middle-end/77679 * gimple-fold.c (fold_array_ctor_reference): Turn asserts into fold fails. Added: branches/gcc-6-branch/gcc/testsuite/c-c++-common/torture/pr77544.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr77450.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77436.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77514.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77605.c Modified: branches/gcc-6-branch/gcc/ChangeLog branches/gcc-6-branch/gcc/c-family/ChangeLog branches/gcc-6-branch/gcc/c-family/c-common.c branches/gcc-6-branch/gcc/fold-const.c branches/gcc-6-branch/gcc/gimple-fold.c branches/gcc-6-branch/gcc/testsuite/ChangeLog branches/gcc-6-branch/gcc/tree-chrec.c branches/gcc-6-branch/gcc/tree-data-ref.c branches/gcc-6-branch/gcc/tree-ssa-pre.c >>From gcc-bugs-return-538562-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:54:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 36980 invoked by alias); 27 Sep 2016 10:54:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 36523 invoked by uid 55); 27 Sep 2016 10:54:38 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77544] [6 Regression] segfault at -O0 - infinite loop in simplification Date: Tue, 27 Sep 2016 10:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02178.txt.bz2 Content-length: 2665 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77544 --- Comment #9 from Richard Biener --- Author: rguenth Date: Tue Sep 27 10:54:00 2016 New Revision: 240527 URL: https://gcc.gnu.org/viewcvs?rev=3D240527&root=3Dgcc&view=3Drev Log: 2016-09-27 Richard Biener Backport from mainline 2016-09-01 Richard Biener PR middle-end/77436 * tree-chrec.c (tree_fold_binomial): Use widest_int, properly check whether the result fits the desired result type. * gcc.dg/torture/pr77436.c: New testcase. 2016-09-06 Richard Biener PR c/77450 c-family/ * c-common.c (c_common_mark_addressable_vec): Handle COMPOUND_LITERAL_EXPR. * gcc.dg/pr77450.c: New testcase. 2016-09-19 Richard Biener PR tree-optimization/77514 * tree-ssa-pre.c (create_expression_by_pieces): Optimize search for folded stmt. 2016-09-15 Richard Biener PR tree-optimization/77514 * tree-ssa-pre.c (create_expression_by_pieces): Handle garbage only forced_stmts sequence. * gcc.dg/torture/pr77514.c: New testcase. 2016-09-15 Richard Biener PR middle-end/77544 * fold-const.c (split_tree): Do not split constant ~X. * c-c++-common/torture/pr77544.c: New testcase. 2016-09-19 Richard Biener PR middle-end/77605 * tree-data-ref.c (analyze_subscript_affine_affine): Use the proper niter to bound the loops. * gcc.dg/torture/pr77605.c: New testcase. 2016-09-22 Richard Biener PR middle-end/77679 * gimple-fold.c (fold_array_ctor_reference): Turn asserts into fold fails. Added: branches/gcc-6-branch/gcc/testsuite/c-c++-common/torture/pr77544.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr77450.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77436.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77514.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77605.c Modified: branches/gcc-6-branch/gcc/ChangeLog branches/gcc-6-branch/gcc/c-family/ChangeLog branches/gcc-6-branch/gcc/c-family/c-common.c branches/gcc-6-branch/gcc/fold-const.c branches/gcc-6-branch/gcc/gimple-fold.c branches/gcc-6-branch/gcc/testsuite/ChangeLog branches/gcc-6-branch/gcc/tree-chrec.c branches/gcc-6-branch/gcc/tree-data-ref.c branches/gcc-6-branch/gcc/tree-ssa-pre.c >>From gcc-bugs-return-538565-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:54:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 37118 invoked by alias); 27 Sep 2016 10:54:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 36466 invoked by uid 55); 27 Sep 2016 10:54:37 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77514] [6 Regression] ICE in VN_INFO_GET, at tree-ssa-sccvn.c:406 w/ -O2 (and above) Date: Tue, 27 Sep 2016 10:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02182.txt.bz2 Content-length: 2665 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77514 --- Comment #9 from Richard Biener --- Author: rguenth Date: Tue Sep 27 10:54:00 2016 New Revision: 240527 URL: https://gcc.gnu.org/viewcvs?rev=3D240527&root=3Dgcc&view=3Drev Log: 2016-09-27 Richard Biener Backport from mainline 2016-09-01 Richard Biener PR middle-end/77436 * tree-chrec.c (tree_fold_binomial): Use widest_int, properly check whether the result fits the desired result type. * gcc.dg/torture/pr77436.c: New testcase. 2016-09-06 Richard Biener PR c/77450 c-family/ * c-common.c (c_common_mark_addressable_vec): Handle COMPOUND_LITERAL_EXPR. * gcc.dg/pr77450.c: New testcase. 2016-09-19 Richard Biener PR tree-optimization/77514 * tree-ssa-pre.c (create_expression_by_pieces): Optimize search for folded stmt. 2016-09-15 Richard Biener PR tree-optimization/77514 * tree-ssa-pre.c (create_expression_by_pieces): Handle garbage only forced_stmts sequence. * gcc.dg/torture/pr77514.c: New testcase. 2016-09-15 Richard Biener PR middle-end/77544 * fold-const.c (split_tree): Do not split constant ~X. * c-c++-common/torture/pr77544.c: New testcase. 2016-09-19 Richard Biener PR middle-end/77605 * tree-data-ref.c (analyze_subscript_affine_affine): Use the proper niter to bound the loops. * gcc.dg/torture/pr77605.c: New testcase. 2016-09-22 Richard Biener PR middle-end/77679 * gimple-fold.c (fold_array_ctor_reference): Turn asserts into fold fails. Added: branches/gcc-6-branch/gcc/testsuite/c-c++-common/torture/pr77544.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr77450.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77436.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77514.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77605.c Modified: branches/gcc-6-branch/gcc/ChangeLog branches/gcc-6-branch/gcc/c-family/ChangeLog branches/gcc-6-branch/gcc/c-family/c-common.c branches/gcc-6-branch/gcc/fold-const.c branches/gcc-6-branch/gcc/gimple-fold.c branches/gcc-6-branch/gcc/testsuite/ChangeLog branches/gcc-6-branch/gcc/tree-chrec.c branches/gcc-6-branch/gcc/tree-data-ref.c branches/gcc-6-branch/gcc/tree-ssa-pre.c >>From gcc-bugs-return-538567-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:55:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 43274 invoked by alias); 27 Sep 2016 10:55:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 42135 invoked by uid 48); 27 Sep 2016 10:55:35 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77544] [6 Regression] segfault at -O0 - infinite loop in simplification Date: Tue, 27 Sep 2016 10:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02180.txt.bz2 Content-length: 485 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77544 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED Known to fail| |6.2.0 --- Comment #10 from Richard Biener --- Fixed. >>From gcc-bugs-return-538566-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:55:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 41365 invoked by alias); 27 Sep 2016 10:55:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 40432 invoked by uid 48); 27 Sep 2016 10:55:14 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77514] [6 Regression] ICE in VN_INFO_GET, at tree-ssa-sccvn.c:406 w/ -O2 (and above) Date: Tue, 27 Sep 2016 10:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02177.txt.bz2 Content-length: 485 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77514 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED Known to fail| |6.2.0 --- Comment #10 from Richard Biener --- Fixed. >>From gcc-bugs-return-538564-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:54:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 37068 invoked by alias); 27 Sep 2016 10:54:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 36539 invoked by uid 55); 27 Sep 2016 10:54:39 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77605] [5/6 Regression] wrong code at -O3 on x86_64-linux-gnu Date: Tue, 27 Sep 2016 10:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02181.txt.bz2 Content-length: 2665 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77605 --- Comment #9 from Richard Biener --- Author: rguenth Date: Tue Sep 27 10:54:00 2016 New Revision: 240527 URL: https://gcc.gnu.org/viewcvs?rev=3D240527&root=3Dgcc&view=3Drev Log: 2016-09-27 Richard Biener Backport from mainline 2016-09-01 Richard Biener PR middle-end/77436 * tree-chrec.c (tree_fold_binomial): Use widest_int, properly check whether the result fits the desired result type. * gcc.dg/torture/pr77436.c: New testcase. 2016-09-06 Richard Biener PR c/77450 c-family/ * c-common.c (c_common_mark_addressable_vec): Handle COMPOUND_LITERAL_EXPR. * gcc.dg/pr77450.c: New testcase. 2016-09-19 Richard Biener PR tree-optimization/77514 * tree-ssa-pre.c (create_expression_by_pieces): Optimize search for folded stmt. 2016-09-15 Richard Biener PR tree-optimization/77514 * tree-ssa-pre.c (create_expression_by_pieces): Handle garbage only forced_stmts sequence. * gcc.dg/torture/pr77514.c: New testcase. 2016-09-15 Richard Biener PR middle-end/77544 * fold-const.c (split_tree): Do not split constant ~X. * c-c++-common/torture/pr77544.c: New testcase. 2016-09-19 Richard Biener PR middle-end/77605 * tree-data-ref.c (analyze_subscript_affine_affine): Use the proper niter to bound the loops. * gcc.dg/torture/pr77605.c: New testcase. 2016-09-22 Richard Biener PR middle-end/77679 * gimple-fold.c (fold_array_ctor_reference): Turn asserts into fold fails. Added: branches/gcc-6-branch/gcc/testsuite/c-c++-common/torture/pr77544.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr77450.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77436.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77514.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77605.c Modified: branches/gcc-6-branch/gcc/ChangeLog branches/gcc-6-branch/gcc/c-family/ChangeLog branches/gcc-6-branch/gcc/c-family/c-common.c branches/gcc-6-branch/gcc/fold-const.c branches/gcc-6-branch/gcc/gimple-fold.c branches/gcc-6-branch/gcc/testsuite/ChangeLog branches/gcc-6-branch/gcc/tree-chrec.c branches/gcc-6-branch/gcc/tree-data-ref.c branches/gcc-6-branch/gcc/tree-ssa-pre.c >>From gcc-bugs-return-538563-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:54:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 37025 invoked by alias); 27 Sep 2016 10:54:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 36549 invoked by uid 55); 27 Sep 2016 10:54:39 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77679] [6 Regression] ICE in fold_array_ctor_reference, at gimple-fold.c:5586 Date: Tue, 27 Sep 2016 10:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: accepts-invalid, ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02179.txt.bz2 Content-length: 2665 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77679 --- Comment #5 from Richard Biener --- Author: rguenth Date: Tue Sep 27 10:54:00 2016 New Revision: 240527 URL: https://gcc.gnu.org/viewcvs?rev=3D240527&root=3Dgcc&view=3Drev Log: 2016-09-27 Richard Biener Backport from mainline 2016-09-01 Richard Biener PR middle-end/77436 * tree-chrec.c (tree_fold_binomial): Use widest_int, properly check whether the result fits the desired result type. * gcc.dg/torture/pr77436.c: New testcase. 2016-09-06 Richard Biener PR c/77450 c-family/ * c-common.c (c_common_mark_addressable_vec): Handle COMPOUND_LITERAL_EXPR. * gcc.dg/pr77450.c: New testcase. 2016-09-19 Richard Biener PR tree-optimization/77514 * tree-ssa-pre.c (create_expression_by_pieces): Optimize search for folded stmt. 2016-09-15 Richard Biener PR tree-optimization/77514 * tree-ssa-pre.c (create_expression_by_pieces): Handle garbage only forced_stmts sequence. * gcc.dg/torture/pr77514.c: New testcase. 2016-09-15 Richard Biener PR middle-end/77544 * fold-const.c (split_tree): Do not split constant ~X. * c-c++-common/torture/pr77544.c: New testcase. 2016-09-19 Richard Biener PR middle-end/77605 * tree-data-ref.c (analyze_subscript_affine_affine): Use the proper niter to bound the loops. * gcc.dg/torture/pr77605.c: New testcase. 2016-09-22 Richard Biener PR middle-end/77679 * gimple-fold.c (fold_array_ctor_reference): Turn asserts into fold fails. Added: branches/gcc-6-branch/gcc/testsuite/c-c++-common/torture/pr77544.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr77450.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77436.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77514.c branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77605.c Modified: branches/gcc-6-branch/gcc/ChangeLog branches/gcc-6-branch/gcc/c-family/ChangeLog branches/gcc-6-branch/gcc/c-family/c-common.c branches/gcc-6-branch/gcc/fold-const.c branches/gcc-6-branch/gcc/gimple-fold.c branches/gcc-6-branch/gcc/testsuite/ChangeLog branches/gcc-6-branch/gcc/tree-chrec.c branches/gcc-6-branch/gcc/tree-data-ref.c branches/gcc-6-branch/gcc/tree-ssa-pre.c >>From gcc-bugs-return-538568-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 10:57:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69276 invoked by alias); 27 Sep 2016 10:57:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 68686 invoked by uid 48); 27 Sep 2016 10:56:52 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77679] [6 Regression] ICE in fold_array_ctor_reference, at gimple-fold.c:5586 Date: Tue, 27 Sep 2016 10:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: accepts-invalid, ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02183.txt.bz2 Content-length: 129 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77679 --- Comment #6 from Richard Biener --- Fixed. >>From gcc-bugs-return-538570-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 11:08:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 40875 invoked by alias); 27 Sep 2016 11:08:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 40687 invoked by uid 55); 27 Sep 2016 11:07:48 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/16855] gcov does not report the fact that static destructors actually run. Date: Tue, 27 Sep 2016 11:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 3.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02185.txt.bz2 Content-length: 1117 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D16855 --- Comment #2 from Martin Li=C5=A1ka --- Author: marxin Date: Tue Sep 27 11:07:11 2016 New Revision: 240529 URL: https://gcc.gnu.org/viewcvs?rev=3D240529&root=3Dgcc&view=3Drev Log: gcov: dump in a static dtor instead of in an atexit handler PR gcov-profile/7970 PR gcov-profile/16855 PR gcov-profile/44779 * g++.dg/gcov/pr16855.C: New test. * coverage.c (build_gcov_exit_decl): New function. (coverage_obj_init): Call the function and generate __gcov_exit destructor. * doc/gcov.texi: Document when __gcov_exit function is called. * libgcov-driver.c (__gcov_init): Do not register a atexit handler. (__gcov_exit): Rename from gcov_exit. * libgcov.h (__gcov_exit): Declare. Added: trunk/gcc/testsuite/g++.dg/gcov/pr16855.C Modified: trunk/gcc/ChangeLog trunk/gcc/coverage.c trunk/gcc/doc/gcov.texi trunk/gcc/testsuite/ChangeLog trunk/libgcc/ChangeLog trunk/libgcc/libgcov-driver.c trunk/libgcc/libgcov.h >>From gcc-bugs-return-538569-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 11:08:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 40859 invoked by alias); 27 Sep 2016 11:08:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 40665 invoked by uid 55); 27 Sep 2016 11:07:47 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/7970] Arc profiling doesn't work reliably on global destructors Date: Tue, 27 Sep 2016 11:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 3.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02184.txt.bz2 Content-length: 1116 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D7970 --- Comment #6 from Martin Li=C5=A1ka --- Author: marxin Date: Tue Sep 27 11:07:11 2016 New Revision: 240529 URL: https://gcc.gnu.org/viewcvs?rev=3D240529&root=3Dgcc&view=3Drev Log: gcov: dump in a static dtor instead of in an atexit handler PR gcov-profile/7970 PR gcov-profile/16855 PR gcov-profile/44779 * g++.dg/gcov/pr16855.C: New test. * coverage.c (build_gcov_exit_decl): New function. (coverage_obj_init): Call the function and generate __gcov_exit destructor. * doc/gcov.texi: Document when __gcov_exit function is called. * libgcov-driver.c (__gcov_init): Do not register a atexit handler. (__gcov_exit): Rename from gcov_exit. * libgcov.h (__gcov_exit): Declare. Added: trunk/gcc/testsuite/g++.dg/gcov/pr16855.C Modified: trunk/gcc/ChangeLog trunk/gcc/coverage.c trunk/gcc/doc/gcov.texi trunk/gcc/testsuite/ChangeLog trunk/libgcc/ChangeLog trunk/libgcc/libgcov-driver.c trunk/libgcc/libgcov.h >>From gcc-bugs-return-538571-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 11:08:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 40933 invoked by alias); 27 Sep 2016 11:08:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 40714 invoked by uid 55); 27 Sep 2016 11:07:49 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/44779] The gcov library does not adequately handle functions with constructor/destructor attributes Date: Tue, 27 Sep 2016 11:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.1.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: REOPENED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02186.txt.bz2 Content-length: 1117 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D44779 --- Comment #8 from Martin Li=C5=A1ka --- Author: marxin Date: Tue Sep 27 11:07:11 2016 New Revision: 240529 URL: https://gcc.gnu.org/viewcvs?rev=3D240529&root=3Dgcc&view=3Drev Log: gcov: dump in a static dtor instead of in an atexit handler PR gcov-profile/7970 PR gcov-profile/16855 PR gcov-profile/44779 * g++.dg/gcov/pr16855.C: New test. * coverage.c (build_gcov_exit_decl): New function. (coverage_obj_init): Call the function and generate __gcov_exit destructor. * doc/gcov.texi: Document when __gcov_exit function is called. * libgcov-driver.c (__gcov_init): Do not register a atexit handler. (__gcov_exit): Rename from gcov_exit. * libgcov.h (__gcov_exit): Declare. Added: trunk/gcc/testsuite/g++.dg/gcov/pr16855.C Modified: trunk/gcc/ChangeLog trunk/gcc/coverage.c trunk/gcc/doc/gcov.texi trunk/gcc/testsuite/ChangeLog trunk/libgcc/ChangeLog trunk/libgcc/libgcov-driver.c trunk/libgcc/libgcov.h >>From gcc-bugs-return-538572-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 11:09:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 46158 invoked by alias); 27 Sep 2016 11:09:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 45373 invoked by uid 48); 27 Sep 2016 11:09:21 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/7970] Arc profiling doesn't work reliably on global destructors Date: Tue, 27 Sep 2016 11:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 3.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02187.txt.bz2 Content-length: 441 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D7970 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #7 from Martin Li=C5=A1ka --- Fixed on trunk. >>From gcc-bugs-return-538573-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 11:09:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 47571 invoked by alias); 27 Sep 2016 11:09:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 46953 invoked by uid 48); 27 Sep 2016 11:09:45 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/44779] The gcov library does not adequately handle functions with constructor/destructor attributes Date: Tue, 27 Sep 2016 11:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.1.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02188.txt.bz2 Content-length: 442 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D44779 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution|--- |FIXED --- Comment #9 from Martin Li=C5=A1ka --- Fixed on trunk. >>From gcc-bugs-return-538574-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 11:18:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 55287 invoked by alias); 27 Sep 2016 11:18:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 55150 invoked by uid 48); 27 Sep 2016 11:18:21 -0000 From: "bernd.edlinger at hotmail dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 11:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: bernd.edlinger at hotmail dot de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02189.txt.bz2 Content-length: 1490 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #7 from Bernd Edlinger --- This avoids also the _Alloc_hider constructor. But it still reproduces with gcc-6 and gcc-7. I have found no way to add __attribute((noinline, noclone)) to the template specialization, that works. So I did the dirty trick... It would not have been able to link with gcc-6 because the signature appears to have changed. So that would have been necessary to do anyway. Can you try this please? --- pr77550.C.orig 2016-09-27 10:05:17.812179103 +0200 +++ pr77550.C 2016-09-27 13:08:25.465060583 +0200 @@ -231,13 +231,15 @@ template } _M_dataplus; size_type _M_string_length; enum { _S_local_capacity =3D 15 } _M_local_buf[_S_local_capacity]; - pointer _M_local_data(); - void _M_set_length(size_type); - basic_string() : _M_dataplus(_M_local_data()) { _M_set_length(0); } + basic_string() : _M_dataplus(0) {} basic_string(const basic_string &) : _M_dataplus(0) {} size_type size() { return _M_string_length; } char *data() const {} }; +//template<> basic_string, std::allocator>:: +//_Alloc_hider::_Alloc_hider(char*, std::allocator&&) {} +extern "C" void +_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcOS= 3_ (...) {} } template int operator=3D=3D(basic_string<_CharT> &p1, const basic_string<_CharT> &p= 2) { >>From gcc-bugs-return-538575-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 11:28:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 85119 invoked by alias); 27 Sep 2016 11:28:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 79201 invoked by uid 55); 27 Sep 2016 11:28:27 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77478] Incorrect code generated with -O3, m32, -msse2 and -ffast-math Date: Tue, 27 Sep 2016 11:28:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02190.txt.bz2 Content-length: 499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77478 --- Comment #9 from Richard Biener --- Author: rguenth Date: Tue Sep 27 11:27:54 2016 New Revision: 240530 URL: https://gcc.gnu.org/viewcvs?rev=3D240530&root=3Dgcc&view=3Drev Log: 2016-09-27 Richard Biener PR tree-optimization/77478 * gcc.dg/torture/pr77478.c: New testcase. Added: trunk/gcc/testsuite/gcc.dg/torture/pr77478.c Modified: trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538576-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 11:30:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 96104 invoked by alias); 27 Sep 2016 11:30:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 92162 invoked by uid 55); 27 Sep 2016 11:30:00 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77478] Incorrect code generated with -O3, m32, -msse2 and -ffast-math Date: Tue, 27 Sep 2016 11:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02191.txt.bz2 Content-length: 532 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77478 --- Comment #10 from Richard Biener --- Author: rguenth Date: Tue Sep 27 11:29:28 2016 New Revision: 240531 URL: https://gcc.gnu.org/viewcvs?rev=3D240531&root=3Dgcc&view=3Drev Log: 2016-09-27 Richard Biener PR tree-optimization/77478 * gcc.dg/torture/pr77478.c: New testcase. Added: branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr77478.c Modified: branches/gcc-6-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538577-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:01:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 114977 invoked by alias); 27 Sep 2016 12:01:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 113474 invoked by uid 48); 27 Sep 2016 12:01:16 -0000 From: "schwab@linux-m68k.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 12:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: schwab@linux-m68k.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02192.txt.bz2 Content-length: 161 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #8 from Andreas Schwab --- That change also makes it run successfully. >>From gcc-bugs-return-538578-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:11:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 47980 invoked by alias); 27 Sep 2016 12:11:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 41370 invoked by uid 48); 27 Sep 2016 12:10:51 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Tue, 27 Sep 2016 12:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02193.txt.bz2 Content-length: 423 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #16 from Jonathan Wakely --- For C++ 12.8 [class.copy] says: -16- The implicitly-defined copy/move constructor for a union X copies the object representation (3.9) of X. and=20 -29- The implicitly-defined copy assignment operator for a union X copies t= he object representation (3.9) of X. so it is a bytewise copy for PODs. >>From gcc-bugs-return-538579-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:17:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 41724 invoked by alias); 27 Sep 2016 12:17:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 41252 invoked by uid 48); 27 Sep 2016 12:17:31 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Tue, 27 Sep 2016 12:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02194.txt.bz2 Content-length: 1149 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #17 from Jonathan Wakely --- (In reply to Richard Biener from comment #14) > Just to explain a little bit. Consider >=20 > void foo (void) > { > union { float f; char c[4]; } u, v; > *(int *)&u =3D 0; > v =3D u; > return *(int *)&v; > } >=20 > then C11 6.5/6,7 make it clear that it is not valid to use 'u' (of union > type) > to access the object which now has effective type 'int' (in fact that sto= re > alone, given strict reading of C11 6.5/6 is invalid as u has a declared > type). > The union does not have 'int' amongst its members. Putting 'char' or an > array of 'char' into the union does not make the access fall under 6.5/7 > as 'a character type' only follows 'an aggregate or union type that inclu= des > one > of the _AFOREMENTIONED_ types...' (emphasis mine). But would *(int*)u.c be OK, because that is a character type? Given that C++ does define what the assignment means for the union, we just need to make s= ure we do *(int*)u.c not *(int*)&u or is that still not enough? If not, what does the last bullet of 6.5/7 allow? >>From gcc-bugs-return-538580-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:22:16 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 46316 invoked by alias); 27 Sep 2016 12:22:16 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 46132 invoked by uid 48); 27 Sep 2016 12:22:03 -0000 From: "gk at torproject dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77459] [6/7 Regression] undefined reference to `snprintf' when building mingw-w64 cross-compiler Date: Tue, 27 Sep 2016 12:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: gk at torproject dot org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02195.txt.bz2 Content-length: 446 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77459 Georg Koppen changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fdumont at gcc dot gnu.org --- Comment #1 from Georg Koppen --- FWIW: backing out r227885 (and r227888) "fixes" this problem for me. >>From gcc-bugs-return-538581-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:42:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 75921 invoked by alias); 27 Sep 2016 12:42:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 74747 invoked by uid 48); 27 Sep 2016 12:42:45 -0000 From: "ktkachov at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77728] [5/6/7 Regression] Miscompilation multiple vector iteration on ARM Date: Tue, 27 Sep 2016 12:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: ktkachov at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02196.txt.bz2 Content-length: 198 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77728 --- Comment #3 from ktkachov at gcc dot gnu.org --- Started with r225465. Something to do with alignment. I wonder if it's related to PR69841 ? >>From gcc-bugs-return-538582-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:44:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 85278 invoked by alias); 27 Sep 2016 12:44:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 85163 invoked by uid 55); 27 Sep 2016 12:44:10 -0000 From: "rguenther at suse dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Tue, 27 Sep 2016 12:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenther at suse dot de X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02197.txt.bz2 Content-length: 1581 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #18 from rguenther at suse dot de --- On Tue, 27 Sep 2016, redi at gcc dot gnu.org wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 >=20 > --- Comment #17 from Jonathan Wakely --- > (In reply to Richard Biener from comment #14) > > Just to explain a little bit. Consider > >=20 > > void foo (void) > > { > > union { float f; char c[4]; } u, v; > > *(int *)&u =3D 0; > > v =3D u; > > return *(int *)&v; > > } > >=20 > > then C11 6.5/6,7 make it clear that it is not valid to use 'u' (of union > > type) > > to access the object which now has effective type 'int' (in fact that s= tore > > alone, given strict reading of C11 6.5/6 is invalid as u has a declared > > type). > > The union does not have 'int' amongst its members. Putting 'char' or an > > array of 'char' into the union does not make the access fall under 6.5/7 > > as 'a character type' only follows 'an aggregate or union type that inc= ludes > > one > > of the _AFOREMENTIONED_ types...' (emphasis mine). >=20 > But would *(int*)u.c be OK, because that is a character type? Given that = C++ > does define what the assignment means for the union, we just need to make= sure > we do *(int*)u.c not *(int*)&u or is that still not enough? No, *(int *)u.c is not OK, because that's still 'int', not a character=20 type (because of the cast). > If not, what does the last bullet of 6.5/7 allow? It allows *(char *)&u basically it allows a memcpy implementation to exist. >>From gcc-bugs-return-538584-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:45:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 90509 invoked by alias); 27 Sep 2016 12:45:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 88967 invoked by uid 48); 27 Sep 2016 12:45:29 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77478] Incorrect code generated with -O3, m32, -msse2 and -ffast-math Date: Tue, 27 Sep 2016 12:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_known_to_work resolution target_milestone cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02199.txt.bz2 Content-length: 593 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77478 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Known to work| |5.4.1 Resolution|--- |FIXED Target Milestone|--- |5.5 Known to fail| |5.4.0 --- Comment #12 from Richard Biener --- Fixed. >>From gcc-bugs-return-538583-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:45:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 89030 invoked by alias); 27 Sep 2016 12:45:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 87634 invoked by uid 55); 27 Sep 2016 12:45:16 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77478] Incorrect code generated with -O3, m32, -msse2 and -ffast-math Date: Tue, 27 Sep 2016 12:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02198.txt.bz2 Content-length: 763 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77478 --- Comment #11 from Richard Biener --- Author: rguenth Date: Tue Sep 27 12:44:42 2016 New Revision: 240532 URL: https://gcc.gnu.org/viewcvs?rev=3D240532&root=3Dgcc&view=3Drev Log: 2016-09-27 Richard Biener PR tree-optimization/77478 * tree-vect-loop-manip.c (vect_gen_niters_for_prolog_loop): Fix alignment of SSA var used before the alignment prologue. * gcc.dg/torture/pr77478.c: New testcase. Added: branches/gcc-5-branch/gcc/testsuite/gcc.dg/torture/pr77478.c Modified: branches/gcc-5-branch/gcc/ChangeLog branches/gcc-5-branch/gcc/testsuite/ChangeLog branches/gcc-5-branch/gcc/tree-vect-loop-manip.c >>From gcc-bugs-return-538585-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:51:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 104885 invoked by alias); 27 Sep 2016 12:51:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 104310 invoked by uid 55); 27 Sep 2016 12:51:02 -0000 From: "olegendo at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/51244] [SH] Inefficient conditional branch and code around T bit Date: Tue, 27 Sep 2016 12:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: olegendo at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: olegendo at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02200.txt.bz2 Content-length: 507 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D51244 --- Comment #88 from Oleg Endo --- Author: olegendo Date: Tue Sep 27 12:50:27 2016 New Revision: 240533 URL: https://gcc.gnu.org/viewcvs?rev=3D240533&root=3Dgcc&view=3Drev Log: gcc/ PR target/51244 * config/sh/sh.c (sh_rtx_costs): Fix return value of SET of movt and movrt patterns. Match them before anything else in the SET case. Modified: trunk/gcc/ChangeLog trunk/gcc/config/sh/sh.c >>From gcc-bugs-return-538586-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:54:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 12023 invoked by alias); 27 Sep 2016 12:54:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 11770 invoked by uid 48); 27 Sep 2016 12:53:58 -0000 From: "bruno.manga95 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77755] New: [concepts] Abbreviatd function template pack expansions not working Date: Tue, 27 Sep 2016 12:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: bruno.manga95 at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02201.txt.bz2 Content-length: 822 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77755 Bug ID: 77755 Summary: [concepts] Abbreviatd function template pack expansions not working Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: bruno.manga95 at gmail dot com Target Milestone: --- Pack expansions are not handled correctly in the context of abbreviated function templates. For example, foo in=20 template struct S{}; template concept bool Integral =3D std::is_integral::value; int foo (S) { return 0; } fails to compile with the error: expansion pattern 'auto:1' contains no argument packs >>From gcc-bugs-return-538587-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:55:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 16069 invoked by alias); 27 Sep 2016 12:55:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 15670 invoked by uid 48); 27 Sep 2016 12:55:14 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77459] [6/7 Regression] undefined reference to `snprintf' when building mingw-w64 cross-compiler Date: Tue, 27 Sep 2016 12:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02202.txt.bz2 Content-length: 172 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77459 --- Comment #2 from Jonathan Wakely --- It's 2016, how can snprintf not be supported still? >>From gcc-bugs-return-538588-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:57:15 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 19253 invoked by alias); 27 Sep 2016 12:57:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 18157 invoked by uid 48); 27 Sep 2016 12:57:01 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77745] [5/6 Regression] Inconsistent application of aliasing rules Date: Tue, 27 Sep 2016 12:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_known_to_work short_desc cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02203.txt.bz2 Content-length: 646 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77745 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Known to work| |7.0 Summary|[5/6/7 Regression] |[5/6 Regression] |Inconsistent application of |Inconsistent application of |aliasing rules |aliasing rules Known to fail|7.0 |6.2.0 --- Comment #7 from Richard Biener --- Fixed on trunk sofar. >>From gcc-bugs-return-538589-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:57:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 19987 invoked by alias); 27 Sep 2016 12:57:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 18897 invoked by uid 55); 27 Sep 2016 12:57:10 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77745] [5/6 Regression] Inconsistent application of aliasing rules Date: Tue, 27 Sep 2016 12:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02204.txt.bz2 Content-length: 910 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77745 --- Comment #8 from Richard Biener --- Author: rguenth Date: Tue Sep 27 12:56:38 2016 New Revision: 240534 URL: https://gcc.gnu.org/viewcvs?rev=3D240534&root=3Dgcc&view=3Drev Log: 2016-09-27 Richard Biener PR tree-optimization/77745 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): When removing redundant stores make sure to check compatibility of the TBAA state for downstream accesses. * tree-ssa-sccvn.c (visit_reference_op_store): Likewise for when value-numbering virtual operands for store matches. * g++.dg/torture/pr77745.C: New testcase. Added: trunk/gcc/testsuite/g++.dg/torture/pr77745.C Modified: trunk/gcc/ChangeLog trunk/gcc/testsuite/ChangeLog trunk/gcc/tree-ssa-pre.c trunk/gcc/tree-ssa-sccvn.c >>From gcc-bugs-return-538590-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:58:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 30267 invoked by alias); 27 Sep 2016 12:58:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30130 invoked by uid 48); 27 Sep 2016 12:58:47 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77751] [7 regression] cc1plus: error: unrecognized command line option "-Wno-implicit-fallthrough" for insn-emit.o Date: Tue, 27 Sep 2016 12:58:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02205.txt.bz2 Content-length: 439 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77751 Marek Polacek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #4 from Marek Polacek --- Should be fixed. >>From gcc-bugs-return-538591-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:59:15 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31316 invoked by alias); 27 Sep 2016 12:59:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30563 invoked by uid 48); 27 Sep 2016 12:59:01 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77745] [5/6 Regression] Inconsistent application of aliasing rules Date: Tue, 27 Sep 2016 12:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_known_to_work cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02206.txt.bz2 Content-length: 476 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77745 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Known to work| |4.6.4 Known to fail| |4.7.0, 4.7.3, 4.8.5, 4.9.4 --- Comment #9 from Richard Biener --- Started to appear with GCC 4.7 btw. >>From gcc-bugs-return-538592-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 12:59:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 32338 invoked by alias); 27 Sep 2016 12:59:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 32187 invoked by uid 48); 27 Sep 2016 12:59:42 -0000 From: "yzhang1985 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug inline-asm/77756] New: cpuid Date: Tue, 27 Sep 2016 12:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: inline-asm X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: yzhang1985 at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02207.txt.bz2 Content-length: 3142 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 Bug ID: 77756 Summary: cpuid Product: gcc Version: 6.2.0 Status: UNCONFIRMED Severity: major Priority: P3 Component: inline-asm Assignee: unassigned at gcc dot gnu.org Reporter: yzhang1985 at gmail dot com Target Milestone: --- Created attachment 39696 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39696&action=3Dedit should print 99 when run on an AVX2 capable processor I've found a bug in __get_cpuid() in the compiler internal header, cpuid.h. I wish to detect if the CPU supports AVX2, but when I call __get_cpuid(7, .= ..), EBX is all zeros. The problem is for level 7, ECX must be set to 0 before calling cpuid. As a work around, I've added "xor %%ecx, %%ecx" to __cpuid() and that took = care of the problem: #define __cpuid(level, a, b, c, d) \ __asm__("xor %%ecx, %%ecx\n" \ "cpuid\n" \ : "=3Da"(a), "=3Db"(b), "=3Dc"(c), "=3Dd"(d) \ : "0"(level)) It looks like Intel only started requiring this for level 7. Who knows if they'll require setting ECX to other values for future levels, but for know= , it seems always setting ECX to 0 is OK. One mystery is why GCC's builtin AVX2 auto detection for function multiversioning, which uses __get_cpuid() works (see multiversioning.cpp). However, I can't use multiversioning because ifunc hasn't been ported to Windows, so I have to do manual detection. I don't think attaching a preprocessed C file is necessary to reproduce thi= s. Here's the output of gcc -v: Using built-in specs. COLLECT_GCC=3Dgcc COLLECT_LTO_WRAPPER=3D/usr/lib/gcc/x86_64-linux-gnu/6/lto-wrapper Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion=3D'Debian 6.2.0-4' --with-bugurl=3Dfile:///usr/share/doc/gcc-6/README.Bugs --enable-languages=3Dc,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=3D/u= sr --program-suffix=3D-6 --program-prefix=3Dx86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=3D/usr/lib --without-included-gettext --enable-threads=3Dposix --libdir=3D/usr/lib --enable-nls --with-sysroot=3D/ --enable-clocale=3Dgnu --enable-libstdcxx-debug --enable-libstdcxx-time=3Dy= es --with-default-libstdcxx-abi=3Dnew --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=3Dgtk --enable-gtk-cairo --with-java-home=3D/usr/lib/jvm/java-1.5.0-gcj-6-amd64/jre --enable-java-ho= me --with-jvm-root-dir=3D/usr/lib/jvm/java-1.5.0-gcj-6-amd64 --with-jvm-jar-dir=3D/usr/lib/jvm-exports/java-1.5.0-gcj-6-amd64 --with-arch-directory=3Damd64 --with-ecj-jar=3D/usr/share/java/eclipse-ecj.= jar --enable-objc-gc --enable-multiarch --with-arch-32=3Di686 --with-abi=3Dm64 --with-multilib-list=3Dm32,m64,mx32 --enable-multilib --with-tune=3Dgeneric --enable-checking=3Drelease --build=3Dx86_64-linux-gnu --host=3Dx86_64-linu= x-gnu --target=3Dx86_64-linux-gnu Thread model: posix gcc version 6.2.0 20160914 (Debian 6.2.0-4) >>From gcc-bugs-return-538593-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 13:07:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 101264 invoked by alias); 27 Sep 2016 13:07:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 85579 invoked by uid 48); 27 Sep 2016 13:06:56 -0000 From: "gk at torproject dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77459] [6/7 Regression] undefined reference to `snprintf' when building mingw-w64 cross-compiler Date: Tue, 27 Sep 2016 13:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: gk at torproject dot org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02208.txt.bz2 Content-length: 593 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77459 --- Comment #3 from Georg Koppen --- (In reply to Jonathan Wakely from comment #2) > It's 2016, how can snprintf not be supported still? I asked about that problem in #mingw-w64 a while ago and got the following answer: M$ does not provide `snprintf()` despite their non-standard extension `_snprintf()`. With mingw-w64, if the macro `__USE_MINGW_ANSI_STDIO` is def= ined to `1`, `snprintf` is a macro that redirects calls to `snprintf` to `__mingw_snprintf` instead. Not sure if that helps debugging/fixing. >>From gcc-bugs-return-538594-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 13:12:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 105449 invoked by alias); 27 Sep 2016 13:12:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 103364 invoked by uid 48); 27 Sep 2016 13:12:21 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77459] [6/7 Regression] undefined reference to `snprintf' when building mingw-w64 cross-compiler Date: Tue, 27 Sep 2016 13:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02209.txt.bz2 Content-length: 1015 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77459 --- Comment #4 from Jonathan Wakely --- Does this help? --- a/libstdc++-v3/src/c++11/debug.cc +++ b/libstdc++-v3/src/c++11/debug.cc @@ -540,10 +540,25 @@ namespace using _Error_formatter =3D __gnu_debug::_Error_formatter; using _Parameter =3D __gnu_debug::_Error_formatter::_Parameter; +#ifdef _GLIBCXX_USE_C99_STDIO template int format_word(char* buf, int n, const char* fmt, _Tp s) { return std::min(__builtin_snprintf(buf, n, fmt, s), n - 1); } +#else + int + format_word(char* buf, int n, const char* fmt, const char* s) + { + if ((int)__builtin_strlen(s) >=3D n) + s =3D "???"; + return std::min(__builtin_sprintf(buf, fmt, s), n - 1); + } + + template + int + format_word(char* buf, int n, const char* fmt, _Tp s) + { return std::min(__builtin_sprintf(buf, fmt, s), n - 1); } +#endif void get_max_length(std::size_t& max_length) >>From gcc-bugs-return-538595-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 13:22:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2605 invoked by alias); 27 Sep 2016 13:22:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2444 invoked by uid 55); 27 Sep 2016 13:22:40 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/46266] gcov generates data for non-existing file Date: Tue, 27 Sep 2016 13:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.4.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02210.txt.bz2 Content-length: 727 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D46266 --- Comment #4 from Martin Li=C5=A1ka --- Author: marxin Date: Tue Sep 27 13:22:04 2016 New Revision: 240536 URL: https://gcc.gnu.org/viewcvs?rev=3D240536&root=3Dgcc&view=3Drev Log: Fix PR gcov-profile/46266 PR gcov-profile/46266 * lib/gcov.exp: Verify that .gcov file is not considered. * input.h (RESERVED_LOCATION_P): New macro. * profile.c (branch_prob): Use RESERVED_LOCATION_P and instread of comparison with UNKNOWN_LOCATION. Modified: trunk/gcc/ChangeLog trunk/gcc/input.h trunk/gcc/profile.c trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/lib/gcov.exp >>From gcc-bugs-return-538596-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 13:23:15 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 5165 invoked by alias); 27 Sep 2016 13:23:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4573 invoked by uid 48); 27 Sep 2016 13:23:09 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/46266] gcov generates data for non-existing file Date: Tue, 27 Sep 2016 13:23:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 4.4.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02211.txt.bz2 Content-length: 442 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D46266 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #5 from Martin Li=C5=A1ka --- Fixed on trunk. >>From gcc-bugs-return-538597-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 13:45:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23802 invoked by alias); 27 Sep 2016 13:45:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23408 invoked by uid 48); 27 Sep 2016 13:45:09 -0000 From: "ggo at andred dot net" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77757] New: mips16: generated assembly has loads too far away Date: Tue, 27 Sep 2016 13:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ggo at andred dot net X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02212.txt.bz2 Content-length: 7343 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77757 Bug ID: 77757 Summary: mips16: generated assembly has loads too far away Product: gcc Version: 6.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: ggo at andred dot net Target Milestone: --- Created attachment 39697 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39697&action=3Dedit pre-processed output The attached doesn't compile on mips16: mipsel-poky-linux-musl-gcc -mel -mabi=3D32 -msoft-float -march=3Dmips32r2 -= mips16 -minterlink-compressed -mtune=3D24kec -mdsp --sysroot=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/tgm-r2 -W= all -Os -g -feliminate-unused-debug-types -fstack-protector-strong -D_FORTIFY_SOURCE=3D2 -Wformat -Wformat-security -Werror=3Dformat-security = -c ./havegecollect.i -fPIC -DPIC -o .libs/libhavege_la-havegecollect.o -pipe= -v Using built-in specs. COLLECT_GCC=3Dmipsel-poky-linux-musl-gcc Target: mipsel-poky-linux-musl Configured with: ../../../../../../work-shared/gcc-6.2.0-r0/gcc-6.2.0/confi= gure --build=3Dx86_64-linux --host=3Dx86_64-linux --target=3Dmipsel-poky-linux-m= usl --prefix=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64-lin= ux/usr --exec_prefix=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_6= 4-linux/usr --bindir=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64-lin= ux/usr/bin/mipsel-poky-linux-musl --sbindir=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64-li= nux/usr/bin/mipsel-poky-linux-musl --libexecdir=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64= -linux/usr/libexec/mipsel-poky-linux-musl --datadir=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64-li= nux/usr/share --sysconfdir=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64= -linux/etc --sharedstatedir=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x8= 6_64-linux/com --localstatedir=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86= _64-linux/var --libdir=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64-lin= ux/usr/lib/mipsel-poky-linux-musl --includedir=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64= -linux/usr/include --oldincludedir=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86= _64-linux/usr/include --infodir=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64-li= nux/usr/share/info --mandir=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64-lin= ux/usr/share/man --disable-silent-rules --disable-dependency-tracking --with-libtool-sysroot=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysro= ots/x86_64-linux --enable-clocale=3Dgeneric --with-gnu-ld --enable-shared --enable-languages= =3Dc,c++ --enable-threads=3Dposix --disable-multilib --enable-c99 --enable-long-long --enable-symvers=3Dgnu --enable-libstdcxx-pch --program-prefix=3Dmipsel-poky-linux-musl- --without-local-prefix --enable-= lto --enable-libssp --enable-libitm --disable-bootstrap --disable-libmudflap --with-system-zlib --with-linker-hash-style=3Dsysv --enable-linker-build-id --with-ppl=3Dno --with-cloog=3Dno --enable-checking=3Drelease --enable-cheaders=3Dc_global --without-isl --with-gxx-include-dir=3D/not/exist/usr/include/c++/6.2.0 --with-sysroot=3D/not/exist --with-build-sysroot=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroot= s/tgm-r2 --with-mips-plt --without-long-double-128 --enable-poison-system-directories --with-mpfr=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64-= linux/usr --with-system-zlib --disable-static --disable-nls Thread model: posix gcc version 6.2.0 (GCC)=20 COLLECT_GCC_OPTIONS=3D'--sysroot=3D/scratch/yocto/build-tgm-r2-poky-fpp-tgm= /tmp/sysroots/tgm-r2' '-mel' '-mabi=3D32' '-msoft-float' '-march=3Dmips32r2' '-mips16' '-minterlink-compressed' '-mtune=3D24kec' '-mdsp' '-Wall' '-Os' '-g' '-feliminate-unused-debug-types' '-fstack-protector-strong' '-D' '_FORTIFY_SOURCE=3D2' '-Wformat=3D1' '-Wformat-security' '-Werror=3Dformat-= security' '-c' '-fPIC' '-D' 'PIC' '-o' '.libs/libhavege_la-havegecollect.o' '-pipe' '= -v' '-mllsc' '-mips32r2' '-EL' /scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64-linux/usr/libe= xec/mipsel-poky-linux-musl/gcc/mipsel-poky-linux-musl/6.2.0/cc1 -fpreprocessed ./havegecollect.i -isysroot /scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/tgm-r2 -mel -quiet -dumpbase havegecollect.i -mel -mabi=3D32 -msoft-float -march=3Dmips32r2 -m= ips16 -minterlink-compressed -mtune=3D24kec -mdsp -mllsc -mips32r2 -auxbase-strip .libs/libhavege_la-havegecollect.o -g -Os -Wall -Wformat=3D1 -Wformat-secur= ity -Werror=3Dformat-security -version -feliminate-unused-debug-types -fstack-protector-strong -fPIC -o - | /scratch/yocto/build-tgm-r2-poky-fpp-tgm/tmp/sysroots/x86_64-linux/usr/libe= xec/mipsel-poky-linux-musl/gcc/mipsel-poky-linux-musl/6.2.0/as -v -EL -mips32r2 -mips16 -mdsp -O2 -g -no-mdebug -mabi=3D32 -march=3Dmips32= r2 -mtune=3D24kec -msoft-float -KPIC -o .libs/libhavege_la-havegecollect.o GNU assembler version 2.27.0 (mipsel-poky-linux-musl) using BFD version (GNU Binutils) 2.27.0.20160806 GNU C11 (GCC) version 6.2.0 (mipsel-poky-linux-musl) compiled by GNU C version 6.2.0 20160914, GMP version 6.1.1, MPFR version 3.1.4, MPC version 1.0.3, isl version none GGC heuristics: --param ggc-min-expand=3D100 --param ggc-min-heapsize=3D131= 072 GNU C11 (GCC) version 6.2.0 (mipsel-poky-linux-musl) compiled by GNU C version 6.2.0 20160914, GMP version 6.1.1, MPFR version 3.1.4, MPC version 1.0.3, isl version none GGC heuristics: --param ggc-min-expand=3D100 --param ggc-min-heapsize=3D131= 072 Compiler executable checksum: 7fe58876c8caf5daea9b770ae42cf9e4 {standard input}: Assembler messages: {standard input}:41095: Error: operand value out of range for instruction {standard input}:41142: Error: operand value out of range for instruction {standard input}:41180: Error: operand value out of range for instruction {standard input}:41218: Error: operand value out of range for instruction {standard input}:41256: Error: operand value out of range for instruction {standard input}:41294: Error: operand value out of range for instruction {standard input}:41332: Error: operand value out of range for instruction {standard input}:41370: Error: operand value out of range for instruction {standard input}:41408: Error: operand value out of range for instruction {standard input}:41446: Error: operand value out of range for instruction {standard input}:41484: Error: operand value out of range for instruction {standard input}:41522: Error: operand value out of range for instruction {standard input}:41560: Error: operand value out of range for instruction {standard input}:41598: Error: operand value out of range for instruction {standard input}:41636: Error: operand value out of range for instruction {standard input}:41674: Error: operand value out of range for instruction {standard input}:41712: Error: operand value out of range for instruction {standard input}:41750: Error: operand value out of range for instruction {standard input}:41788: Error: operand value out of range for instruction (Changing the optimisation level makes no difference) >>From gcc-bugs-return-538598-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 13:52:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 51307 invoked by alias); 27 Sep 2016 13:52:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 51173 invoked by uid 48); 27 Sep 2016 13:52:39 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 13:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02213.txt.bz2 Content-length: 188 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #9 from Christophe Lyon --- Did you try on arm-none-eabi too? It does not seem to work for me. >>From gcc-bugs-return-538599-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 14:03:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24725 invoked by alias); 27 Sep 2016 14:03:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24556 invoked by uid 48); 27 Sep 2016 14:03:22 -0000 From: "edlinger at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 14:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: edlinger at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02214.txt.bz2 Content-length: 598 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #10 from Bernd Edlinger --- (In reply to Christophe Lyon from comment #9) > Did you try on arm-none-eabi too? > It does not seem to work for me. Hmmm, I don't have the exact environment, but I used your .s file, removed the abi lines, and linked it against the linux, and got immediately a seg-fault, in the _Alloc_hider constructor. That looked like a logical explanation, but it's possible that I still don't understand. Could you try to get a call stack of the seg-fault, with the second patch? >>From gcc-bugs-return-538600-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 14:13:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 43935 invoked by alias); 27 Sep 2016 14:13:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 43769 invoked by uid 48); 27 Sep 2016 14:13:33 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 14:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02215.txt.bz2 Content-length: 238 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #11 from Christophe Lyon --- Created attachment 39698 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39698&action=3Dedit preprocessed-v2 >>From gcc-bugs-return-538602-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 14:14:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 45537 invoked by alias); 27 Sep 2016 14:14:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 45439 invoked by uid 48); 27 Sep 2016 14:14:12 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 14:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02217.txt.bz2 Content-length: 236 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #13 from Christophe Lyon --- Created attachment 39700 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39700&action=3Dedit qemu trace v2 >>From gcc-bugs-return-538601-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 14:14:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 44748 invoked by alias); 27 Sep 2016 14:14:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 44603 invoked by uid 48); 27 Sep 2016 14:13:53 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 14:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02216.txt.bz2 Content-length: 235 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #12 from Christophe Lyon --- Created attachment 39699 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39699&action=3Dedit assembler-v2 >>From gcc-bugs-return-538603-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 14:14:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 46670 invoked by alias); 27 Sep 2016 14:14:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 46350 invoked by uid 48); 27 Sep 2016 14:14:38 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 14:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02218.txt.bz2 Content-length: 185 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #14 from Christophe Lyon --- I've attached the "v2" version of the .ii, .s and trace files. >>From gcc-bugs-return-538604-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 14:14:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 46678 invoked by alias); 27 Sep 2016 14:14:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 46398 invoked by uid 48); 27 Sep 2016 14:14:41 -0000 From: "gerald at pfeifer dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77751] [7 regression] cc1plus: error: unrecognized command line option "-Wno-implicit-fallthrough" for insn-emit.o Date: Tue, 27 Sep 2016 14:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gerald at pfeifer dot com X-Bugzilla-Status: VERIFIED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02219.txt.bz2 Content-length: 444 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77751 Gerald Pfeifer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |VERIFIED --- Comment #5 from Gerald Pfeifer --- (In reply to Marek Polacek from comment #4) > Should be fixed. Yep, verified. >>From gcc-bugs-return-538605-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 14:30:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121993 invoked by alias); 27 Sep 2016 14:30:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121854 invoked by uid 48); 27 Sep 2016 14:30:16 -0000 From: "bernds at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77718] [7 Regression] expand_builtin_memcmp swaps args Date: Tue, 27 Sep 2016 14:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: bernds at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02220.txt.bz2 Content-length: 1027 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77718 --- Comment #4 from Bernd Schmidt --- So something like this maybe? Index: builtins.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- builtins.c (revision 240511) +++ builtins.c (working copy) @@ -3707,11 +3707,13 @@ expand_builtin_memcmp (tree exp, rtx tar by_pieces_constfn constfn =3D NULL; - const char *src_str =3D c_getstr (arg1); - if (src_str =3D=3D NULL) - src_str =3D c_getstr (arg2); - else - std::swap (arg1_rtx, arg2_rtx); + const char *src_str =3D c_getstr (arg2); + if (result_eq && src_str =3D=3D NULL) + { + src_str =3D c_getstr (arg1); + if (src_str !=3D NULL) + std::swap (arg1_rtx, arg2_rtx); + } /* If SRC is a string constant and block move would be done by pieces, we can avoid loading the string from memory >>From gcc-bugs-return-538606-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 14:45:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 86784 invoked by alias); 27 Sep 2016 14:45:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 54784 invoked by uid 48); 27 Sep 2016 14:44:53 -0000 From: "pthaugen at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77677] [7 Regression] ICE at -O1 and above in both 32-bit and 64-bit modes on x86_64-linux-gnu (internal compiler error: in set_value_range, at tree-vrp.c:361) Date: Tue, 27 Sep 2016 14:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pthaugen at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02221.txt.bz2 Content-length: 558 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77677 --- Comment #12 from Pat Haugen --- (In reply to kugan from comment #11) > 2016-09-27 Kugan Vivekanandarajah >=20 > PR ipa/77677 > * ipa-prop.c (ipa_compute_jump_functions_for_edge): Use > extract_range_from_unary_expr to convert value_range. > * tree-vrp.c (extract_range_from_unary_expr_1): Rename to. > (extract_range_from_unary_expr): This. > * tree-vrp.h (extract_range_from_unary_expr): Declare. 176.gcc is working on powerpc now, thanks. >>From gcc-bugs-return-538607-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 15:21:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 107822 invoked by alias); 27 Sep 2016 15:21:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 106970 invoked by uid 48); 27 Sep 2016 15:21:27 -0000 From: "andrey.vul at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77758] New: OpenMP sections: intermittent incorrect behavior in reduction Date: Tue, 27 Sep 2016 15:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: andrey.vul at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02222.txt.bz2 Content-length: 3293 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77758 Bug ID: 77758 Summary: OpenMP sections: intermittent incorrect behavior in reduction Product: gcc Version: 6.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: andrey.vul at gmail dot com Target Milestone: --- gcc -fopenmp t.c && ./a.out; echo $? on the following file produces unexpec= ted values. t.c: #define aN 2 int main(int argc, char *argv[]) { int a[aN]; long b =3D 0; for (int i =3D 0; i < aN; ++i) a[i] =3D i + 1; #pragma omp parallel #pragma omp sections reduction(+:b) { #pragma omp section { b =3D a[0]; } #pragma omp section { b =3D a[1]; } } return (a[0]+a[1])-b; } A non-zero return code indicates invalid reduction between sections. The separate parallel and sections directives produce a fail rate of 90+%. When the parallel and sections directions are combined, ie (#pragma omp parallel sections reduction(+:b)), the fail rate drops to ~2%. Rates were calculated from running the produced executable 1000 times and watching how many times a non-zero return was calculated. As the non-zero return code is exclusively 1, it appears that instead of reduction, the second sections block executes sequentially after the first sections block in the same task, as opposed to parallel tasks then reduction between the final values in each task, as is expected of reduction. gcc -v: Using built-in specs. COLLECT_GCC=3Dgcc-6.2.0 COLLECT_LTO_WRAPPER=3D/usr/libexec/gcc/x86_64-pc-linux-gnu/6.2.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: /var/tmp/portage/sys-devel/gcc-6.2.0/work/gcc-6.2.0/config= ure --host=3Dx86_64-pc-linux-gnu --build=3Dx86_64-pc-linux-gnu --prefix=3D/usr --bindir=3D/usr/x86_64-pc-linux-gnu/gcc-bin/6.2.0 --includedir=3D/usr/lib/gcc/x86_64-pc-linux-gnu/6.2.0/include --datadir=3D/usr/share/gcc-data/x86_64-pc-linux-gnu/6.2.0 --mandir=3D/usr/share/gcc-data/x86_64-pc-linux-gnu/6.2.0/man --infodir=3D/usr/share/gcc-data/x86_64-pc-linux-gnu/6.2.0/info --with-gxx-include-dir=3D/usr/lib/gcc/x86_64-pc-linux-gnu/6.2.0/include/g++= -v6 --with-python-dir=3D/share/gcc-data/x86_64-pc-linux-gnu/6.2.0/python --enable-languages=3Dc,c++,fortran --enable-obsolete --enable-secureplt --disable-werror --with-system-zlib --enable-nls --without-included-gettext --enable-checking=3Drelease --with-bugurl=3Dhttps://bugs.gentoo.org/ --with-pkgversion=3D'Gentoo 6.2.0 p1.0' --disable-esp --enable-libstdcxx-ti= me --enable-shared --enable-threads=3Dposix --enable-__cxa_atexit --enable-clocale=3Dgnu --enable-multilib --with-multilib-list=3Dm32,m64 --disable-altivec --disable-fixed-point --enable-targets=3Dall --disable-li= bgcj --enable-libgomp --disable-libmudflap --disable-libssp --enable-libcilkrts --disable-libmpx --enable-vtable-verify --enable-libvtv --enable-lto --with= -isl --disable-isl-version-check --enable-libsanitizer --disable-default-pie --disable-default-ssp Thread model: posix gcc version 6.2.0 (Gentoo 6.2.0 p1.0) >>From gcc-bugs-return-538608-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 15:24:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 118190 invoked by alias); 27 Sep 2016 15:24:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 114698 invoked by uid 48); 27 Sep 2016 15:24:40 -0000 From: "jrtc27 at jrtc27 dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77759] New: internal compiler error: in function_arg_record_value Date: Tue, 27 Sep 2016 15:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jrtc27 at jrtc27 dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02223.txt.bz2 Content-length: 4555 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77759 Bug ID: 77759 Summary: internal compiler error: in function_arg_record_value Product: gcc Version: 6.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: jrtc27 at jrtc27 dot com Target Milestone: --- Source: struct empty {}; struct pair_empty { struct empty a; struct empty b; }; void f(int slot0, int slot1, int slot2, int slot3, int slot4, int slot5, struct pair_empty pair) { } int main(int argc, char **argv) { struct pair_empty pair; f(0, 0, 0, 0, 0, 0, pair); return 0; } With g++ 6.2.0 in Debian unstable: main.cpp: In function =E2=80=98void f(int, int, int, int, int, int, pai= r_empty)=E2=80=99: main.cpp:8:6: internal compiler error: in function_arg_record_value, at config/sparc/sparc.c:6729 void f(int slot0, int slot1, int slot2, int slot3, int slot4, int slot= 5, struct pair_empty pair) { ^ 0xa3bf7f function_arg_record_value ../../src/gcc/config/sparc/sparc.c:6729 0xa3c5bb sparc_function_arg_1 ../../src/gcc/config/sparc/sparc.c:6879 0x58ea7b assign_parm_find_entry_rtl ../../src/gcc/function.c:2534 0x58ea7b assign_parms ../../src/gcc/function.c:3723 0x590537 expand_function_start(tree_node*) ../../src/gcc/function.c:5207 0x465243 execute ../../src/gcc/cfgexpand.c:6225 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See for instructions. With g++ 7.0.0 20160927 from master (7469707ce8cf1d74002118cdca992650998d4a= cd): main.cpp: In function =E2=80=98void f(int, int, int, int, int, int, pai= r_empty)=E2=80=99: main.cpp:8:6: internal compiler error: in function_arg_record_value, at config/sparc/sparc.c:6739 void f(int slot0, int slot1, int slot2, int slot3, int slot4, int slot= 5, struct pair_empty pair) { ^ 0xdd8f4f function_arg_record_value ../../upstream/gcc/config/sparc/sparc.c:6739 0xdd9dbb sparc_function_arg_1 ../../upstream/gcc/config/sparc/sparc.c:6889 0x79fe93 assign_parm_find_entry_rtl ../../upstream/gcc/function.c:2532 0x79fe93 assign_parms ../../upstream/gcc/function.c:3725 0x7a2ae3 expand_function_start(tree_node*) ../../upstream/gcc/function.c:5209 0x61c5cf execute ../../upstream/gcc/cfgexpand.c:6256 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See for instructions. function_arg_slotno gets to the MODE_RANDOM case, and follows the `TARGET_ARCH64 && type` branch. traverse_record_type walks over the the pair_empty type, but as there are no actual fields (only other records which are traversed), classify_registers is never called, so data remains { false, false, false }. Thus, neither of the conditions for returning -1 for records are satisfied, and so slotno (which is 6) is returned. Then, in function_arg_record_value, it takes the `nregs =3D=3D 0` branch (s= ince traverse_record_type never calls count_registers for the same reason as abo= ve), tries nregs =3D 1, but then hits the `nregs + slotno > SPARC_INT_ARG_MAX` b= ranch, and so nregs gets set to `SPARC_INT_ARG_MAX - slotno`, which is 0 in this c= ase (and would be negative if more ints were added to f to fill up the slots). Then, the gcc_assert(nregs > 0) fails and gives the above backtrace. The following patch fixes this; thoughts? --- a/gcc/config/sparc/sparc.c +++ b/gcc/config/sparc/sparc.c @@ -6450,10 +6450,9 @@ function_arg_slotno (const struct sparc_args *cum, machine_mode mode, && slotno >=3D SPARC_FP_ARG_MAX - 1) return -1; - /* If there are only int args and all int slots are filled, - then must pass on stack. */ + /* If there are only int args or this is an empty record type, + and all int slots are filled, then must pass on stack. */ if (!data.fp_regs - && data.int_regs && slotno >=3D SPARC_INT_ARG_MAX) return -1; } >>From gcc-bugs-return-538609-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 15:36:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 53232 invoked by alias); 27 Sep 2016 15:36:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 53073 invoked by uid 48); 27 Sep 2016 15:35:49 -0000 From: "drepper.fsp+rhbz at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77760] New: get_time needs to set tm_wday amd tm_yday Date: Tue, 27 Sep 2016 15:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: drepper.fsp+rhbz at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02224.txt.bz2 Content-length: 1330 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77760 Bug ID: 77760 Summary: get_time needs to set tm_wday amd tm_yday Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: drepper.fsp+rhbz at gmail dot com Target Milestone: --- Created attachment 39701 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39701&action=3Dedit Test case to show get_time vs strptime Currently the get_time function sets the tm_wday member of tm only when explicitly asked and doesn't set tm_yday at all. This does not match strptime() which this function should emulate. Basically, every time the parsing has enough information to compute that da= ta it should be done. In the simplest case, of day of the month, month, and y= ear are known the two fields can be computed. The glibc strptime function does all that. It gets complicated, true, but users of the functions will expect this behaviour since otherwise the resul= ts are strange. I know the standard does not explicitly say this. See the attached code for a test case. I see Sun Sep 27 03:11:41 2016 vs Tue Sep 27 03:11:41 2016 FAIL because tm_wday =3D=3D 0 means Sunday. >>From gcc-bugs-return-538610-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 15:41:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69280 invoked by alias); 27 Sep 2016 15:41:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 68792 invoked by uid 48); 27 Sep 2016 15:41:36 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77742] Warning about placement new for over-aligned type Date: Tue, 27 Sep 2016 15:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on blocked everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02225.txt.bz2 Content-length: 586 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77742 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-27 Blocks| |65122 Ever confirmed|0 |1 Referenced Bugs: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65122 [Bug 65122] std::vector doesn't honor element alignment >>From gcc-bugs-return-538611-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 16:11:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 9348 invoked by alias); 27 Sep 2016 16:11:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 9206 invoked by uid 48); 27 Sep 2016 16:11:46 -0000 From: "tkoenig at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/27077] [x86, 4.1] builtin strlen poor performance Date: Tue, 27 Sep 2016 16:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: tkoenig at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02226.txt.bz2 Content-length: 497 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27077 --- Comment #11 from Thomas Koenig --- > In this case a lot of informations are not necessary. Those bug reporting guidelines are there for a reason: To make it easier for developers (whose time is very limited) to quickly reproduce bugs. Without a self-contained test case, as specified in the bug reporting guidelines, the chance that somebody will look at this PR are very close to zero. So, it's up to you. >>From gcc-bugs-return-538612-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 17:05:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 94021 invoked by alias); 27 Sep 2016 17:05:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 93860 invoked by uid 48); 27 Sep 2016 17:05:36 -0000 From: "zsojka at seznam dot cz" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77761] New: [7 Regression] wrong code with -fschedule-insns -mavx512f --param=max-pending-list-length=512 Date: Tue, 27 Sep 2016 17:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: zsojka at seznam dot cz X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone cf_gcchost cf_gcctarget cf_gccbuild attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02227.txt.bz2 Content-length: 2004 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77761 Bug ID: 77761 Summary: [7 Regression] wrong code with -fschedule-insns -mavx512f --param=3Dmax-pending-list-length=3D512 Product: gcc Version: 7.0 Status: UNCONFIRMED Keywords: wrong-code Severity: normal Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: zsojka at seznam dot cz Target Milestone: --- Host: x86_64-pc-linux-gnu Target: x86_64-pc-linux-gnu Build: x86_64-pc-linux-gnu Created attachment 39702 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39702&action=3Dedit reduced testcase Compiler output: $ x86_64-pc-linux-gnu-gcc -O2 -fno-guess-branch-probability -fschedule-insns -fno-tree-ter -mavx512f --param=3Dmax-pending-list-length=3D512 testcase.c $ sde64 -- ./a.out=20 Aborted Correct value of x[0] is 0x0000000000ff00ff0000000000fd0002, wrong value is 0x0000000000ff00000000000100fd0001 $ x86_64-pc-linux-gnu-gcc -v=20 Using built-in specs. COLLECT_GCC=3D/repo/gcc-trunk/binary-latest-amd64/bin/x86_64-pc-linux-gnu-g= cc COLLECT_LTO_WRAPPER=3D/repo/gcc-trunk/binary-trunk-240535-checking-yes-rtl-= df-extra-nobootstrap-nographite-amd64/bin/../libexec/gcc/x86_64-pc-linux-gn= u/7.0.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: /repo/gcc-trunk//configure --enable-languages=3Dc,c++ --enable-valgrind-annotations --disable-nls --enable-checking=3Dyes,rtl,df,= extra --disable-bootstrap --without-cloog --without-ppl --without-isl --build=3Dx86_64-pc-linux-gnu --host=3Dx86_64-pc-linux-gnu --target=3Dx86_64-pc-linux-gnu --with-ld=3D/usr/bin/x86_64-pc-linux-gnu-ld --with-as=3D/usr/bin/x86_64-pc-linux-gnu-as --disable-libstdcxx-pch --prefix=3D/repo/gcc-trunk//binary-trunk-240535-checking-yes-rtl-df-extra-n= obootstrap-nographite-amd64 Thread model: posix gcc version 7.0.0 20160927 (experimental) (GCC) >>From gcc-bugs-return-538613-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 17:09:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 130589 invoked by alias); 27 Sep 2016 17:09:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 130401 invoked by uid 55); 27 Sep 2016 17:09:18 -0000 From: "acsawdey at linux dot vnet.ibm.com" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77718] [7 Regression] expand_builtin_memcmp swaps args Date: Tue, 27 Sep 2016 17:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: acsawdey at linux dot vnet.ibm.com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02228.txt.bz2 Content-length: 1718 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77718 --- Comment #5 from Aaron Sawdey --- On Tue, 2016-09-27 at 14:30 +0000, bernds at gcc dot gnu.org wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77718 >=20 > --- Comment #4 from Bernd Schmidt --- > So something like this maybe? >=20 > Index: builtins.c > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- builtins.c=C2=A0=C2=A0(revision 240511) > +++ builtins.c=C2=A0=C2=A0(working copy) > @@ -3707,11 +3707,13 @@ expand_builtin_memcmp (tree exp, rtx tar >=20 > =C2=A0=C2=A0=C2=A0by_pieces_constfn constfn =3D NULL; >=20 > -=C2=A0=C2=A0const char *src_str =3D c_getstr (arg1); > -=C2=A0=C2=A0if (src_str =3D=3D NULL) > -=C2=A0=C2=A0=C2=A0=C2=A0src_str =3D c_getstr (arg2); > -=C2=A0=C2=A0else > -=C2=A0=C2=A0=C2=A0=C2=A0std::swap (arg1_rtx, arg2_rtx); > +=C2=A0=C2=A0const char *src_str =3D c_getstr (arg2); > +=C2=A0=C2=A0if (result_eq && src_str =3D=3D NULL) > +=C2=A0=C2=A0=C2=A0=C2=A0{ > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0src_str =3D c_getstr (arg1); > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0if (src_str !=3D NULL) > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0std::swap (arg1_rtx, arg2_rtx); > +=C2=A0=C2=A0=C2=A0=C2=A0} >=20 > =C2=A0=C2=A0=C2=A0/* If SRC is a string constant and block move would be = done > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0by pieces, we can avoid loading the s= tring from memory Bernd, =C2=A0 Yeah that is about what I was thinking it needed. I'll test this on ppc64le. Thanks, =C2=A0 =C2=A0 Aaron >>From gcc-bugs-return-538614-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 17:12:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 33327 invoked by alias); 27 Sep 2016 17:12:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 15583 invoked by uid 48); 27 Sep 2016 17:11:47 -0000 From: "fw at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77762] New: Incorrect destination buffer length in -Wformat-length warning Date: Tue, 27 Sep 2016 17:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: fw at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter cc target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02229.txt.bz2 Content-length: 1291 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77762 Bug ID: 77762 Summary: Incorrect destination buffer length in -Wformat-length warning Product: gcc Version: 7.0 Status: UNCONFIRMED Keywords: diagnostic Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: fw at gcc dot gnu.org CC: msebor at gcc dot gnu.org Target Milestone: --- Created attachment 39703 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39703&action=3Dedit dbg_log.c The attached test case, extracted from nscd/dbg_log.c in glibc, prints (when compiled with -O2 -Wall): dbg_log.c: In function =E2=80=98dbg_log=E2=80=99: dbg_log.c:11:10: warning: specified size 512 exceeds the size 1 of the destination object [-Wformat-length=3D] return __builtin___vsnprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ __bos (__s), __fmt, __ap); ~~~~~~~~~~~~~~~~~~~~~~~~~ This appears to be different from bug 77743 because GCC should not have buf= fer length information in this case. >>From gcc-bugs-return-538615-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 17:19:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 50246 invoked by alias); 27 Sep 2016 17:19:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 49181 invoked by uid 48); 27 Sep 2016 17:19:08 -0000 From: "gerhard.steinmetz.fortran@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77763] New: ICE in parse_struct_map, at fortran/parse.c:3064 Date: Tue, 27 Sep 2016 17:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02230.txt.bz2 Content-length: 1349 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77763 Bug ID: 77763 Summary: ICE in parse_struct_map, at fortran/parse.c:3064 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: gerhard.steinmetz.fortran@t-online.de Target Milestone: --- Doing some tests now with lately introduced DEC extensions. Needs option -fdec, affects version 6 and 7 : $ cat z1.f90 block data structure /s1/ end structure end block data $ gfortran-7-20160925 -fdec -c z1.f90 z1.f90:2:17: structure /s1/ 1 Error: STRUCTURE statement is not allowed inside of BLOCK DATA at (1) f951: internal compiler error: Segmentation fault 0xc28c9f crash_signal ../../gcc/toplev.c:337 0x6d9bff parse_struct_map ../../gcc/fortran/parse.c:3064 0x6da781 parse_spec ../../gcc/fortran/parse.c:3688 0x6de3e0 parse_block_data ../../gcc/fortran/parse.c:5679 0x6de3e0 gfc_parse_file() ../../gcc/fortran/parse.c:6049 0x720d82 gfc_be_parse_file ../../gcc/fortran/f95-lang.c:198 --- Replacing "structure" with "type" : $ cat y1.f90 block data type s1 end type end block data $ gfortran-7-20160925 -c y1.f90 $ >>From gcc-bugs-return-538616-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 17:23:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 86616 invoked by alias); 27 Sep 2016 17:23:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 86421 invoked by uid 48); 27 Sep 2016 17:23:26 -0000 From: "gerhard.steinmetz.fortran@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77764] New: ICE in is_anonymous_component, at fortran/interface.c:450 Date: Tue, 27 Sep 2016 17:23:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02231.txt.bz2 Content-length: 1914 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77764 Bug ID: 77764 Summary: ICE in is_anonymous_component, at fortran/interface.c:450 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: gerhard.steinmetz.fortran@t-online.de Target Milestone: --- Needs option -fdec, affects version 6 and 7 : $ cat z1.f90 program p structure /s1/ union map end map map real :: a =3D 2.0 end map end union end structure end $ gfortran-7-20160925 -fdec z1.f90 f951: internal compiler error: Segmentation fault 0xc28c9f crash_signal ../../gcc/toplev.c:337 0x692c10 is_anonymous_component ../../gcc/fortran/interface.c:450 0x69464a compare_components ../../gcc/fortran/interface.c:479 0x6947aa gfc_compare_union_types(gfc_symbol*, gfc_symbol*) ../../gcc/fortran/interface.c:552 0x68f3e2 gfc_check_assign(gfc_expr*, gfc_expr*, int, bool) ../../gcc/fortran/expr.c:3290 0x692029 gfc_check_assign_symbol(gfc_symbol*, gfc_component*, gfc_expr*) ../../gcc/fortran/expr.c:3869 0x6f8c84 resolve_component ../../gcc/fortran/resolve.c:13349 0x6f9a72 resolve_fl_struct ../../gcc/fortran/resolve.c:13405 0x6f4807 resolve_symbol ../../gcc/fortran/resolve.c:13850 0x70df2b do_traverse_symtree ../../gcc/fortran/symbol.c:3963 0x6f782a resolve_types ../../gcc/fortran/resolve.c:15644 0x6f346c gfc_resolve(gfc_namespace*) ../../gcc/fortran/resolve.c:15757 0x6ddf9a resolve_all_program_units ../../gcc/fortran/parse.c:5879 0x6ddf9a gfc_parse_file() ../../gcc/fortran/parse.c:6131 0x720d82 gfc_be_parse_file ../../gcc/fortran/f95-lang.c:198 >>From gcc-bugs-return-538617-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 17:24:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 88700 invoked by alias); 27 Sep 2016 17:24:35 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 88289 invoked by uid 48); 27 Sep 2016 17:24:21 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77740] [7 regression] internal compiler error: in format_floating, at gimple-ssa-sprintf.c:1165 Date: Tue, 27 Sep 2016 17:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic, ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02232.txt.bz2 Content-length: 617 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77740 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |DUPLICATE --- Comment #4 from Martin Sebor --- This is a duplicate of bug 77683 a patch for which is in the review queue: https://gcc.gnu.org/ml/gcc-patches/2016-09/msg01470.html *** This bug has been marked as a duplicate of bug 77683 *** >>From gcc-bugs-return-538618-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 17:24:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 88717 invoked by alias); 27 Sep 2016 17:24:35 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 88362 invoked by uid 48); 27 Sep 2016 17:24:22 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77683] [7 regression] ICE on %lf directive in format_floating in gimple-ssa-sprintf.c:1163 Date: Tue, 27 Sep 2016 17:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02233.txt.bz2 Content-length: 440 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77683 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gerald at pfeifer dot com --- Comment #2 from Martin Sebor --- *** Bug 77740 has been marked as a duplicate of this bug. *** >>From gcc-bugs-return-538619-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 17:25:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 97936 invoked by alias); 27 Sep 2016 17:25:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 97681 invoked by uid 48); 27 Sep 2016 17:25:45 -0000 From: "gerhard.steinmetz.fortran@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77765] New: ICE in gfc_match_oacc_routine, at fortran/openmp.c:1781 Date: Tue, 27 Sep 2016 17:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02234.txt.bz2 Content-length: 1700 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77765 Bug ID: 77765 Summary: ICE in gfc_match_oacc_routine, at fortran/openmp.c:1781 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: gerhard.steinmetz.fortran@t-online.de Target Milestone: --- For versions 5,6,7 with -fopenacc : $ cat z1.f90 module m contains recursive function f(x) end recursive function f(x) !$acc routine (f) end end $ gfortran-7-20160925 -fopenacc z1.f90 z1.f90:5:23: z1.f90:3:3: recursive function f(x) 2 z1.f90:5:23: recursive function f(x) 1 Error: Procedure 'f' at (1) is already defined at (2) z1.f90:3:3: recursive function f(x) 1 Error: Duplicate RECURSIVE attribute specified at (1) f951: internal compiler error: Segmentation fault 0xc28c9f crash_signal ../../gcc/toplev.c:337 0x6cd44a gfc_match_oacc_routine() ../../gcc/fortran/openmp.c:1781 0x6d3f89 match_word_omp_simd ../../gcc/fortran/parse.c:93 0x6d464e match_word ../../gcc/fortran/parse.c:656 0x6d464e decode_oacc_directive ../../gcc/fortran/parse.c:685 0x6d9878 next_free ../../gcc/fortran/parse.c:1132 0x6d9878 next_statement ../../gcc/fortran/parse.c:1380 0x6dccc4 parse_contained ../../gcc/fortran/parse.c:5366 0x6ddad9 parse_module ../../gcc/fortran/parse.c:5759 0x6de4a9 gfc_parse_file() ../../gcc/fortran/parse.c:6065 0x720d82 gfc_be_parse_file ../../gcc/fortran/f95-lang.c:198 >>From gcc-bugs-return-538620-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 17:57:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 33873 invoked by alias); 27 Sep 2016 17:57:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33698 invoked by uid 48); 27 Sep 2016 17:56:58 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77710] FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-4.c Date: Tue, 27 Sep 2016 17:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02235.txt.bz2 Content-length: 1378 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77710 --- Comment #3 from Martin Sebor --- With GCC 7.0.0 20160927 configured with --build=3Dx86_64-pc-linux-gnu --host=3Dx86_64-pc-linux-gnu --target=3Darm-none-eabi I get the expected ou= tput (below). I see failures in other tests in the results reported for arm-unknown-linux-gnueabihf below but none in the builtin-sprintf-warn-4.c test: https://gcc.gnu.org/ml/gcc-testresults/2016-09/msg02201.html Can you please check again? /src/gcc/trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:10:24: warning: writing a terminating nul past the end of the destination [-Wformat-length=3D] sprintf (dst + 7, "%-s", "1"); ~~^~ /src/gcc/trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:10:3: note: format output 2 bytes into a destination of size 1 sprintf (dst + 7, "%-s", "1"); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /src/gcc/trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:22:22: warning: '%-s' directive writing 4 bytes into a region of size 1 [-Wformat-length=3D] sprintf (dst + 7, "%-s", "abcd"); ^~~ ~~~~~~ /src/gcc/trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:22:3: note: format output 5 bytes into a destination of size 1 sprintf (dst + 7, "%-s", "abcd"); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >>From gcc-bugs-return-538621-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 18:08:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 55184 invoked by alias); 27 Sep 2016 18:08:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 54918 invoked by uid 48); 27 Sep 2016 18:08:01 -0000 From: "bernd.edlinger at hotmail dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 18:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: bernd.edlinger at hotmail dot de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02236.txt.bz2 Content-length: 1551 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #15 from Bernd Edlinger --- Thanks. Again I could reproduce the issue with the assembler flle. This time it fails in a memcmp. Apparently the _M_string_length is uninitialized, but used in memcmp. Can you try this? Index: pr77550.C =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- pr77550.C (revision 240540) +++ pr77550.C (working copy) @@ -229,15 +229,17 @@ struct _Alloc_hider { _Alloc_hider(pointer, allocator && =3D allocator()); } _M_dataplus; - size_type _M_string_length; + size_type _M_string_length =3D 0; enum { _S_local_capacity =3D 15 } _M_local_buf[_S_local_capacity]; - pointer _M_local_data(); - void _M_set_length(size_type); - basic_string() : _M_dataplus(_M_local_data()) { _M_set_length(0); } + basic_string() : _M_dataplus(0) {} basic_string(const basic_string &) : _M_dataplus(0) {} size_type size() { return _M_string_length; } char *data() const {} }; +//template<> basic_string, std::allocator>:: +//_Alloc_hider::_Alloc_hider(char*, std::allocator&&) {} +extern "C" void +_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcOS= 3_ (...) {} } template int operator=3D=3D(basic_string<_CharT> &p1, const basic_string<_CharT> &p= 2) { >>From gcc-bugs-return-538622-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 18:16:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 74257 invoked by alias); 27 Sep 2016 18:16:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 74132 invoked by uid 55); 27 Sep 2016 18:15:54 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77722] -fsanitize=undefined doesn't give runtime error in function without return value, unless at least 2 instructions Date: Tue, 27 Sep 2016 18:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02237.txt.bz2 Content-length: 895 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77722 --- Comment #2 from Jakub Jelinek --- Author: jakub Date: Tue Sep 27 18:15:21 2016 New Revision: 240555 URL: https://gcc.gnu.org/viewcvs?rev=3D240555&root=3Dgcc&view=3Drev Log: PR c++/77722 * cp-gimplify.c (cp_ubsan_maybe_instrument_return): Instrument also functions that have just a STATEMENT_LIST instead of BIND_EXPR, or BIND_EXPR with some statement rather than STATEMENT_LIST as body. * g++.dg/ubsan/return-4.C: New test. * g++.dg/ubsan/return-5.C: New test. * g++.dg/ubsan/return-6.C: New test. Added: trunk/gcc/testsuite/g++.dg/ubsan/return-4.C trunk/gcc/testsuite/g++.dg/ubsan/return-5.C trunk/gcc/testsuite/g++.dg/ubsan/return-6.C Modified: trunk/gcc/cp/ChangeLog trunk/gcc/cp/cp-gimplify.c trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538623-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 18:18:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 82094 invoked by alias); 27 Sep 2016 18:18:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 81802 invoked by uid 48); 27 Sep 2016 18:17:56 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/58085] Wrong indexing of an array in ASSOCIATE Date: Tue, 27 Sep 2016 18:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 4.8.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02238.txt.bz2 Content-length: 564 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D58085 kargl at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |kargl at gcc dot gnu.org Resolution|--- |FIXED --- Comment #4 from kargl at gcc dot gnu.org --- This appears to have been fixed on 4.9 and up. As 4.8 is no longer maintained, I'm closing this as fixed. >>From gcc-bugs-return-538624-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 18:22:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 92767 invoked by alias); 27 Sep 2016 18:22:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 92639 invoked by uid 48); 27 Sep 2016 18:22:23 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77753] [7 Regression] broken profiledbootstrap due to -Werror=format-length in varasm.c:1573 Date: Tue, 27 Sep 2016 18:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02239.txt.bz2 Content-length: 1475 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77753 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-27 Assignee|unassigned at gcc dot gnu.org |msebor at gcc dot g= nu.org Ever confirmed|0 |1 --- Comment #1 from Martin Sebor --- The precision in integer directives "...gives the minimum number of digits = to appear for the d, i, o, u, x, and X conversion specifiers..." so the warning seems justified to me (in as much as the warning pass can see). The buffer size should be increased to 18 bytes to avoid the potential overflow when t= he magnitude of (MAX_INIT_PRIORITY - priority) approaches INT_MAX. Alternatively, if the priority is in some subrange of [INT_MIN, INT_MAX] it could be constrained so that the gimple-ssa-sprintf pass can see it (e.g., = by changing the argument type or casting it to a type with a smaller precision= ).=20 This may or may not work depending on whether the range information for the expression is available (the pass does make use of VRP results but they are often bogus). It's usually simpler and safer to increase the size of the buffer so unless there's some concern with it I'll post a patch to do that. >>From gcc-bugs-return-538625-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 18:33:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 45587 invoked by alias); 27 Sep 2016 18:33:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 45526 invoked by uid 48); 27 Sep 2016 18:33:37 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 18:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02240.txt.bz2 Content-length: 238 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #16 from Christophe Lyon --- Created attachment 39704 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39704&action=3Dedit preprocessed-v3 >>From gcc-bugs-return-538626-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 18:34:08 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 46442 invoked by alias); 27 Sep 2016 18:34:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 46331 invoked by uid 48); 27 Sep 2016 18:33:55 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 18:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02241.txt.bz2 Content-length: 235 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #17 from Christophe Lyon --- Created attachment 39705 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39705&action=3Dedit assembler-v3 >>From gcc-bugs-return-538627-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 18:34:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 47258 invoked by alias); 27 Sep 2016 18:34:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 47055 invoked by uid 48); 27 Sep 2016 18:34:12 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 18:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02242.txt.bz2 Content-length: 236 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #18 from Christophe Lyon --- Created attachment 39706 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39706&action=3Dedit qemu trace v3 >>From gcc-bugs-return-538628-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 18:35:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 51333 invoked by alias); 27 Sep 2016 18:35:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 51222 invoked by uid 48); 27 Sep 2016 18:35:12 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 18:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02243.txt.bz2 Content-length: 552 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 Christophe Lyon changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-27 Ever confirmed|0 |1 --- Comment #19 from Christophe Lyon --- This is not OK yet. I've attached the new .ii, .s and trace files as "v3". >>From gcc-bugs-return-538629-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 18:47:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 71542 invoked by alias); 27 Sep 2016 18:47:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 71201 invoked by uid 48); 27 Sep 2016 18:47:41 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/58618] ICE with character substring and ASSOCIATE Date: Tue, 27 Sep 2016 18:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 4.8.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02244.txt.bz2 Content-length: 587 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D58618 kargl at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|ice-on-valid-code |wrong-code CC| |kargl at gcc dot gnu.org --- Comment #2 from kargl at gcc dot gnu.org --- I have submitted a patch that fixed PR fortran/58991 and PR fortran/58992. That patch fixes the ICE, but leads to wrong code. Update keywords to reflect the change in the problem. >>From gcc-bugs-return-538630-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 19:04:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 13703 invoked by alias); 27 Sep 2016 19:04:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 13581 invoked by uid 48); 27 Sep 2016 19:04:38 -0000 From: "doko at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug preprocessor/66317] Preprocessor chokes on __FILE__ containing a newline Date: Tue, 27 Sep 2016 19:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: preprocessor X-Bugzilla-Version: 5.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: doko at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_reconfirmed_on cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02245.txt.bz2 Content-length: 518 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D66317 Matthias Klose changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed| |2016-9-27 CC| |doko at gcc dot gnu.org --- Comment #1 from Matthias Klose --- confirmed, reported too in https://bugs.debian.org/838874 with another reproducer. >>From gcc-bugs-return-538631-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 19:08:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25371 invoked by alias); 27 Sep 2016 19:08:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25124 invoked by uid 48); 27 Sep 2016 19:08:19 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77763] ICE in parse_struct_map, at fortran/parse.c:3064 Date: Tue, 27 Sep 2016 19:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02246.txt.bz2 Content-length: 930 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77763 kargl at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kargl at gcc dot gnu.org --- Comment #1 from kargl at gcc dot gnu.org --- Index: parse.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- parse.c (revision 240506) +++ parse.c (working copy) @@ -3061,6 +3061,9 @@ parse_struct_map (gfc_statement block) accept_statement(block); push_state (&s, comp, gfc_new_block); + if (!gfc_new_block) + gfc_internal_error ("parse_struct_map (): invalid block"); + gfc_new_block->component_access =3D ACCESS_PUBLIC; compiling_type =3D 1; >>From gcc-bugs-return-538632-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 19:31:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121716 invoked by alias); 27 Sep 2016 19:31:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 118027 invoked by uid 48); 27 Sep 2016 19:31:30 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77753] [7 Regression] broken profiledbootstrap due to -Werror=format-length in varasm.c:1573 Date: Tue, 27 Sep 2016 19:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02247.txt.bz2 Content-length: 201 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77753 --- Comment #2 from Martin Sebor --- Patch posted for review: https://gcc.gnu.org/ml/gcc-patches/2016-09/msg02055.html >>From gcc-bugs-return-538633-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 20:01:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125801 invoked by alias); 27 Sep 2016 20:01:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124197 invoked by uid 48); 27 Sep 2016 20:01:16 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77721] -Wformat-length not uses arg range for converted vars Date: Tue, 27 Sep 2016 20:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02248.txt.bz2 Content-length: 2757 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77721 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-27 CC| |msebor at gcc dot gnu.org Ever confirmed|0 |1 Known to fail| |7.0 --- Comment #1 from Martin Sebor --- Confirmed. The warning is a false positive (and with -Wformat-length=3D2 is issued for both functions). The output of the -ftree-dump-vrp option shows that the Value Range Propagation pass correctly determines each variable's range to be [0, 999] but, as the note printed after the warning indicates, = the range made available to the gimple-ssa-sprintf pass (via the get_range_info API) is that of unsigned int. Unfortunately, this is a general limitation in the current implementation of ranges in GCC and not something that can be fixed in the warning pass. A n= ew implementation of VRP is in progress but it doesn't seem likely that it will make it into GCC 7. $ cat zzz.c && /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -O2 -O2 -S -Wall -Wformat-length=3D2 zzz.c int snprintf (char*, __SIZE_TYPE__, const char*, ...); void foo(unsigned j, char *p) { if(j > 999) return; snprintf(p, 4, "%3u", j); } void bar(int j, char *p) { const unsigned k =3D (unsigned) j; if(k > 999) return; snprintf(p, 4, "%3u", k); } zzz.c: In function =E2=80=98foo=E2=80=99: zzz.c:7:21: warning: =E2=80=98%3u=E2=80=99 directive output may be truncate= d writing between 3 and 10 bytes into a region of size 4 [-Wformat-length=3D] snprintf(p, 4, "%3u", j); ^~~ zzz.c:7:20: note: using the range [=E2=80=981u=E2=80=99, =E2=80=98214748364= 8u=E2=80=99] for directive argument snprintf(p, 4, "%3u", j); ^~~~~ zzz.c:7:5: note: format output between 4 and 11 bytes into a destination of size 4 snprintf(p, 4, "%3u", j); ^~~~~~~~~~~~~~~~~~~~~~~~ zzz.c: In function =E2=80=98bar=E2=80=99: zzz.c:15:21: warning: =E2=80=98%3u=E2=80=99 directive output may be truncat= ed writing between 3 and 10 bytes into a region of size 4 [-Wformat-length=3D] snprintf(p, 4, "%3u", k); ^~~ zzz.c:15:20: note: directive argument in the range [0u, 4294967295u] snprintf(p, 4, "%3u", k); ^~~~~ zzz.c:15:5: note: format output between 4 and 11 bytes into a destination of size 4 snprintf(p, 4, "%3u", k); ^~~~~~~~~~~~~~~~~~~~~~~~ >>From gcc-bugs-return-538634-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 20:04:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 56023 invoked by alias); 27 Sep 2016 20:04:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 41260 invoked by uid 48); 27 Sep 2016 20:03:57 -0000 From: "ebotcazou at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77759] internal compiler error: in function_arg_record_value Date: Tue, 27 Sep 2016 20:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ebotcazou at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_gcctarget bug_status cf_reconfirmed_on cc cf_gcchost everconfirmed cf_known_to_fail cf_gccbuild Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02249.txt.bz2 Content-length: 834 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77759 Eric Botcazou changed: What |Removed |Added ---------------------------------------------------------------------------- Target|sparc64-linux-gnu |sparc64-*-* Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-27 CC| |ebotcazou at gcc dot gnu.o= rg Host|sparc64-linux-gnu |sparc64-*-* Ever confirmed|0 |1 Known to fail|6.2.0, 7.0 | Build|sparc64-linux-gnu |sparc64-*-* --- Comment #1 from Eric Botcazou --- This has never worked (at least since 4.3.x). >>From gcc-bugs-return-538635-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 20:54:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127308 invoked by alias); 27 Sep 2016 20:54:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127215 invoked by uid 48); 27 Sep 2016 20:53:47 -0000 From: "chengniansun at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77766] New: wrong code at -O2 and -O3 in 64-bit mode on x86_64-linux-gnu (executable hangs) Date: Tue, 27 Sep 2016 20:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: chengniansun at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02250.txt.bz2 Content-length: 1402 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77766 Bug ID: 77766 Summary: wrong code at -O2 and -O3 in 64-bit mode on x86_64-linux-gnu (executable hangs) Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: chengniansun at gmail dot com Target Milestone: --- $ gcc-trunk -v Using built-in specs. COLLECT_GCC=3Dgcc-trunk COLLECT_LTO_WRAPPER=3D/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/= 7.0.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: ../gcc-source-trunk/configure --enable-languages=3Dc,c++,l= to --prefix=3D/usr/local/gcc-trunk --disable-bootstrap Thread model: posix gcc version 7.0.0 20160927 (experimental) [trunk revision 240545] (GCC)=20 $=20 $ gcc-trunk -O2 small.c=20 $ timeout -s 9 10 ./a.out=20 Killed $ gcc-trunk -Os small.c=20 $ ./a.out=20 $=20 $ cat small.c char a; short b, d =3D 5, h; char c[1]; int e, f =3D 4, g, j; int main() { int i; for (; f; f =3D a) { g =3D 0; for (; g <=3D 32; ++g) { i =3D 0; for (; i < 3; i++) while (1 > d) if (c[b]) break; L: if (j) break; } } e =3D 0; for (; e; e =3D 0) { d++; for (; h;) goto L; } return 0; } $ >>From gcc-bugs-return-538636-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 21:10:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73749 invoked by alias); 27 Sep 2016 21:10:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 73549 invoked by uid 48); 27 Sep 2016 21:09:57 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77743] bogus -Wformat-length sprintf warnings Date: Tue, 27 Sep 2016 21:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02251.txt.bz2 Content-length: 3068 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77743 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |WAITING Last reconfirmed| |2016-09-27 CC| |msebor at gcc dot gnu.org Ever confirmed|0 |1 --- Comment #1 from Martin Sebor --- I was able to reproduce the warning but only at -O0 and with -Wformat-lengt= h=3D2, not with optimization or with -Wformat-length=3D1. With this combination of options the bfd/ihex.c warning is expected. (This was on x86_64 but I assu= me the coff-rs6000.c warning is of the same nature.) The gimple-ssa-sprintf pass that implements the warning relies on the VRP p= ass to make use of range information. When optimization is disabled and the VRP pass doesn't run, with -Wformat-length=3D1 the warning makes the optimistic assumption that unknown integer arguments to integer directives have the va= lue 1. At this level the file compiles cleanly. With -Wformat-length=3D2, th= e pass assumes that unknown integers can have the full range of their type and so = the warning is expected. With optimization, the pass makes use of range information whenever it is available. In this case it is and the file comp= iles cleanly at both -Wformat-length levels. Please let me know if this doesn't resolve the problem for you. libtool: compile: /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -DHAVE_CONFIG_H -I. -I/src/binutils-gdb/bfd -I. -I/src/binutils-gdb/bfd -I/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_iamcu_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_v= ec -DBINDIR=3D\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-protot= ypes -Wshadow -Wstack-usage=3D262144 -Werror -I/src/binutils-gdb/bfd/../zlib -Wformat-length=3D2 -Wno-error -MT ihex.lo -MD -MP -MF .deps/ihex.Tpo -c /src/binutils-gdb/bfd/ihex.c -o ihex.o /src/binutils-gdb/bfd/ihex.c: In function =E2=80=98ihex_bad_byte=E2=80=99: /src/binutils-gdb/bfd/ihex.c:222:19: warning: =E2=80=98%03o=E2=80=99 direct= ive writing between 3 and 11 bytes into a region of size 9 [-Wformat-length=3D] sprintf (buf, "\\%03o", (unsigned int) c & 0xff); ^~~~ /src/binutils-gdb/bfd/ihex.c:222:16: note: using the range [=E2=80=981u=E2= =80=99, =E2=80=982147483648u=E2=80=99] for directive argument sprintf (buf, "\\%03o", (unsigned int) c & 0xff); ^~~~~~~~ /src/binutils-gdb/bfd/ihex.c:222:2: note: format output between 5 and 13 by= tes into a destination of size 10 sprintf (buf, "\\%03o", (unsigned int) c & 0xff); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >>From gcc-bugs-return-538637-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 21:14:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 108813 invoked by alias); 27 Sep 2016 21:14:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 108694 invoked by uid 55); 27 Sep 2016 21:13:48 -0000 From: "joseph at codesourcery dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/60962] b+(-2.f)*a generates multiplication instruction while b-2.f*a simplifies to addition&subtraction Date: Tue, 27 Sep 2016 21:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 4.8.1 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: joseph at codesourcery dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02252.txt.bz2 Content-length: 520 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60962 --- Comment #3 from joseph at codesourcery dot com --- On Mon, 26 Sep 2016, rguenth at gcc dot gnu.org wrote: > /* We want to canonicalize to positive real constants. Pretend > that only negative ones can be easily negated. */ >=20 > is that we don't transform x + -2.*y to x - 2.*y (which in this case would > also pessimize code, but well...). Note that such a transformation is invalid if flag_rounding_math. >>From gcc-bugs-return-538638-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 21:24:08 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 41979 invoked by alias); 27 Sep 2016 21:24:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 41633 invoked by uid 48); 27 Sep 2016 21:23:54 -0000 From: "bernd.edlinger at hotmail dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 21:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: bernd.edlinger at hotmail dot de X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: bernd.edlinger at hotmail dot de X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02253.txt.bz2 Content-length: 1720 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #20 from Bernd Edlinger --- Bah. Your target defaults to -fshort-enums: that makes the basic_string structure much too short it uses an array of enum to keep it at the same size as the original. Now please try this: Index: pr77550.C =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- pr77550.C (revision 240540) +++ pr77550.C (working copy) @@ -1,5 +1,5 @@ // { dg-do run } -// { dg-options "-std=3Dc++14 -O3" } +// { dg-options "-std=3Dc++14 -O3 -fno-short-enums" } namespace std { typedef int size_t; @@ -229,15 +229,17 @@ struct _Alloc_hider { _Alloc_hider(pointer, allocator && =3D allocator()); } _M_dataplus; - size_type _M_string_length; + size_type _M_string_length =3D 0; enum { _S_local_capacity =3D 15 } _M_local_buf[_S_local_capacity]; - pointer _M_local_data(); - void _M_set_length(size_type); - basic_string() : _M_dataplus(_M_local_data()) { _M_set_length(0); } + basic_string() : _M_dataplus(0) {} basic_string(const basic_string &) : _M_dataplus(0) {} size_type size() { return _M_string_length; } char *data() const {} }; +//template<> basic_string, std::allocator>:: +//_Alloc_hider::_Alloc_hider(char*, std::allocator&&) {} +extern "C" void +_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcOS= 3_ (...) {} } template int operator=3D=3D(basic_string<_CharT> &p1, const basic_string<_CharT> &p= 2) { >>From gcc-bugs-return-538639-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 21:30:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 54216 invoked by alias); 27 Sep 2016 21:30:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 53637 invoked by uid 48); 27 Sep 2016 21:30:03 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77762] Incorrect destination buffer length in -Wformat-length warning Date: Tue, 27 Sep 2016 21:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02254.txt.bz2 Content-length: 1461 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77762 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-27 CC| |jakub at gcc dot gnu.org Ever confirmed|0 |1 --- Comment #1 from Jakub Jelinek --- --- gcc/gimple-ssa-sprintf.c.jj 2016-09-23 09:32:13.000000000 +0200 +++ gcc/gimple-ssa-sprintf.c 2016-09-27 23:21:50.510412845 +0200 @@ -2536,8 +2536,8 @@ pass_sprintf_length::handle_gimple_call // Signature: // __builtin___vsnprintf_chk (dst, size, ost, objsize, format, va) idx_dstsize =3D 1; - idx_objsize =3D 2; - idx_format =3D 3; + idx_objsize =3D 3; + idx_format =3D 4; info.argidx =3D -1; info.bounded =3D true; break; seems to fix this. Though I wonder why this warning at all, I don't see anything -Wformat-length related on what it complains about, and generally,= it isn't disallowed to pass larger size than what -D_FORTIFY_SOURCE=3D2 is abl= e to compute, all that matters is whether the string at runtime exceeds the __bos size (then it is __chk_fail runtime abort), or if it exceeds the user suppl= ied length (then it is truncated). >>From gcc-bugs-return-538640-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 21:44:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76043 invoked by alias); 27 Sep 2016 21:44:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 75930 invoked by uid 48); 27 Sep 2016 21:43:52 -0000 From: "jsm28 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77767] New: Side-effect from VLA array parameters lost Date: Tue, 27 Sep 2016 21:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jsm28 at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02255.txt.bz2 Content-length: 1464 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77767 Bug ID: 77767 Summary: Side-effect from VLA array parameters lost Product: gcc Version: 7.0 Status: UNCONFIRMED Keywords: wrong-code Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: jsm28 at gcc dot gnu.org Target Milestone: --- The program #include int f (int a, int b[a++], int c, int d[c++]) { printf ("%d %d\n", a, c); } int main (void) { int dummy[10]; f (1, dummy, 1, dummy); return 0; } outputs "1 2". It should output "2 2". Side-effects from size expressions for array parameters are handled through= the pending_sizes member of struct c_arg_info. c_parser_parms_list_declarator = may call push_parm_decl any number of times, and push_parm_decl calls grokdeclarator, and each grokdeclarator call overwrites the previous value = of expr storing expressions to evaluate on function entry, when what is requir= ed is to update it instead. Either push_parm_decl (or something further up the call chain) needs to deal with merging with an existing value, or grokdeclarator could be made to do = so but then all callers wanting the existing overwriting would need to be upda= ted to pass a pointer to a variable with a NULL_TREE value, rather than an old value that should be overwritten or an uninitialized variable. >>From gcc-bugs-return-538641-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 21:52:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110984 invoked by alias); 27 Sep 2016 21:52:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 93121 invoked by uid 48); 27 Sep 2016 21:52:31 -0000 From: "jsm28 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77767] [5/6/7 Regression] Side-effect from VLA array parameters lost Date: Tue, 27 Sep 2016 21:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jsm28 at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: target_milestone short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02256.txt.bz2 Content-length: 709 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77767 Joseph S. Myers changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |5.5 Summary|Side-effect from VLA array |[5/6/7 Regression] |parameters lost |Side-effect from VLA array | |parameters lost --- Comment #1 from Joseph S. Myers --- This appears to be a regression in 4.7 and later, probably caused by r17342= 2 - https://gcc.gnu.org/ml/gcc-patches/2011-05/msg00319.html . >>From gcc-bugs-return-538642-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 22:09:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 91606 invoked by alias); 27 Sep 2016 22:09:03 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 91291 invoked by uid 55); 27 Sep 2016 22:08:50 -0000 From: "joseph at codesourcery dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77754] [5/6/7 Regression] internal compiler error : tree code 'call_expr' is not supported in LTO streams Date: Tue, 27 Sep 2016 22:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 5.3.0 X-Bugzilla-Keywords: ice-on-valid-code, lto X-Bugzilla-Severity: normal X-Bugzilla-Who: joseph at codesourcery dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02257.txt.bz2 Content-length: 2935 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77754 --- Comment #5 from joseph at codesourcery dot com --- VLA side effects in function declarations that are not definitions should=20 be discarded. VLA side effects in function declarations that are=20 definitions should occur on entry to the function (this applies both to=20 side effects from sizes of array parameters, which do not affect the=20 function type because those parameters get adjusted to pointers, and to=20 side effects from sizes in parameters involving pointers to VLAs, which do= =20 affect the type). See C11 6.9.1#10: "On entry to the function, the size=20 expressions of each variably modified parameter are evaluated ...". The general principle is that where expressions that might have side=20 effects are involved in types, the C front end arranges the trees it=20 generates so that those expressions are explicitly evaluated first at a=20 point chosen by the front end - for example, by inserting a statement to=20 evaluate them before the declaration. Thus, if language-independent=20 gimplifier code recurses into a type and finds a SAVE_EXPR there, it=20 should always find that the SAVE_EXPR in question has already been=20 evaluated as a result of the separate code explicitly inserted by the=20 front end. Now, maybe that isn't possible for this case of expressions involved in=20 function arguments. There, the relevant front-end code is in=20 store_parm_decls processing arg_info->pending_sizes. The pending_sizes=20 expression should include all relevant expressions (modulo bug 77767 which= =20 I just found and reported while looking at the present issue), not just=20 those for parameters declared as VLAs. But I don't know whether the code=20 this inserts occurs before or after the language-indpendent code dealing=20 with VLAs involved in function arguments. Thus: for VLAs involved in function arguments in declarations (or type=20 names, etc.) that are not definitions, the front end is expecting the=20 language-independent compiler to treat them as [*], not to insert code to=20 evaluate them (and the front end has no code that uses pending_sizes in=20 such a case, so implicitly discards them). If the language-independent=20 compiler does not have such semantics, that implies a lowering step is=20 needed for any declaration or type name involving such a function type at=20 any level of indirection. For VLAs involved in function arguments in definitions, if=20 language-independent code ever inserts evaluations outside the function in= =20 question, including in the case of nested functions, that's definitely=20 wrong, and ideally for the front end it would be able to provide the=20 pending_sizes information in some way so that the language-independent=20 code does not insert its own evaluations of sizes, just verifies that the=20 SAVE_EXPRs in question were already evaluated. >>From gcc-bugs-return-538643-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 22:14:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 117171 invoked by alias); 27 Sep 2016 22:14:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116893 invoked by uid 48); 27 Sep 2016 22:14:00 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77762] Incorrect destination buffer length in -Wformat-length warning Date: Tue, 27 Sep 2016 22:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02258.txt.bz2 Content-length: 2234 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77762 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |msebor at gcc dot g= nu.org Known to fail| |7.0 --- Comment #2 from Martin Sebor --- It's a typo in the argument in the argument numbers. I'll post a patch shortly. The rationale for the warning is that specifying a size that's larger than = the size of the destination is most likely a bug that users will want to know a= bout before it's committed or the software shipped. Code that assumes truncation doesn't happen will likely behave incorrectly. It's worth pointing out that the gimple-ssa-sprintf pass isn't the only one that issues a warning for such code. Another (similar, though misleadingly worded) warning is issued by builtins.c: $ cat zzz.c && /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -S -Wall -Wformat-length=3D1 zzz.c char d [2]; void f (const char *s) { __builtin___snprintf_chk (d, 4, 0, 2, s); } zzz.c: In function =E2=80=98f=E2=80=99: zzz.c:5:3: warning: specified size 4 exceeds the size 2 of the destination object [-Wformat-length=3D] __builtin___snprintf_chk (d, 4, 0, 2, s); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ zzz.c:5:3: warning: call to __builtin___snprintf_chk will always overflow destination buffer Since the latter warning is obviated by the former I would like to remove t= he latter at some point. An argument could be made for issuing the warning only in cases when the re= turn value isn't properly checked (bug 77708 tracks this change request). I thi= nk the warning is useful even when the return value is checked (in part because the test itself could be wrong), but I think it might make sense to consider issuing it only with -Wformat-length=3D2 or (along with other warnings for bounded functions like snprintf) under a separate option. This is an easy change but before I make it I'd like to get more feedback on the warning in general. >>From gcc-bugs-return-538644-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 22:18:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 124256 invoked by alias); 27 Sep 2016 22:18:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124146 invoked by uid 48); 27 Sep 2016 22:18:32 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Tue, 27 Sep 2016 22:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: bernd.edlinger at hotmail dot de X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02259.txt.bz2 Content-length: 564 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #21 from Christophe Lyon --- Ha, indeed, that's one of the differences between arm-none-eabi and arm-none-linux-gnueabi. Using -fno-short-enums does make execution succeed, unfortunately the linker complains because the startup code/libraries are not compiled with this fla= g: ld: warning: /tmp/ccKhI9uW.o uses 32-bit enums yet the output is to use variable-size enums; use of enum values across objects may fail Is there an effective-target to check for short-enums? >>From gcc-bugs-return-538645-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 22:20:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125962 invoked by alias); 27 Sep 2016 22:20:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125799 invoked by uid 48); 27 Sep 2016 22:20:09 -0000 From: "amodra at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77743] bogus -Wformat-length sprintf warnings Date: Tue, 27 Sep 2016 22:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: amodra at gmail dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02260.txt.bz2 Content-length: 429 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77743 Alan Modra changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |NEW --- Comment #2 from Alan Modra --- I see the warnings at -O1 -Wall. powerpc64le-linux gcc built from svn r240= 488 >>From gcc-bugs-return-538646-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 22:52:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42879 invoked by alias); 27 Sep 2016 22:52:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 42683 invoked by uid 48); 27 Sep 2016 22:52:00 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77762] Incorrect destination buffer length in -Wformat-length warning Date: Tue, 27 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic, patch X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02261.txt.bz2 Content-length: 440 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77762 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --- Comment #3 from Martin Sebor --- Patch posted for review: https://gcc.gnu.org/ml/gcc-patches/2016-09/msg02073.html >>From gcc-bugs-return-538647-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 23:02:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 124269 invoked by alias); 27 Sep 2016 23:02:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124136 invoked by uid 48); 27 Sep 2016 23:01:59 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77762] Incorrect destination buffer length in -Wformat-length warning Date: Tue, 27 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic, patch X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02262.txt.bz2 Content-length: 1356 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77762 --- Comment #4 from Jakub Jelinek --- Actually I've misremembered what we've added 12 years ago. glibc has: int ___vsnprintf_chk (char *s, size_t maxlen, int flags, size_t slen, const char *format, va_list args) { /* XXX Maybe for less strict version do not fail immediately. Though, maxlen is supposed to be the size of buffer pointed to by s, so a conforming program can't pass such maxlen to *snprintf. */ if (__glibc_unlikely (slen < maxlen)) __chk_fail (); and so it is considered a fatal error if slen < maxlen and thus the error emitted by maybe_emit_chk_warning is the right one and at the right s= pot (during expansion). That warning tells that whenever you execute that statement your program will fail. That is only the matter of the two argum= ents to the __vsnprintf_chk call, doesn't depend on anything else, so hiding suc= h a warning in an unrelated pass is just wrong. So, please, remove the duplica= te warning from your pass where it doesn't belong. As for the test changes you've just posted, as has been said earlier, just convert that test to use relative warning/error numbers and you won't have = to adjust it all the time again. See http://gcc.gnu.org/ml/gcc-patches/2016-09/msg01617.html for details. >>From gcc-bugs-return-538648-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Sep 27 23:29:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 109059 invoked by alias); 27 Sep 2016 23:29:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 108956 invoked by uid 48); 27 Sep 2016 23:29:23 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77743] bogus -Wformat-length sprintf warnings Date: Tue, 27 Sep 2016 23:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02263.txt.bz2 Content-length: 1565 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77743 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Martin Sebor --- You're right, I missed that the warning is issued even at -O1 on x86_64 as well. The false positive at -O1 is due to get_range_info returning the ran= ge of [0, UINT_MAX]. I don't think there is anything the gimple-ssa-sprintf p= ass can do to overcome this limitation. My understanding is that the new VRP p= ass that's being developed will provide more accurate range information but I d= on't know if it will necessarily guarantee the same range irrespective of optimization levels. My recommendation in cases like this where the value of the directive's argument is constrained to the range of a type with a smaller precision is = to use the conversion specifier appropriate for that type. I.e., change the c= ode to: sprintf (buf, "\\%03hho", (unsigned int) c & 0xff); Alternatively, using the warning with -O2 and not at lower levels should resolve more (though not all) of these false positives. Since the accuracy of range information is unavoidably limited I'll go ahead and resolve this bug as won't fix. If you feel that this class of problems should be handled differently (or if you know of a fix) please reopen the b= ug. >>From gcc-bugs-return-538649-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 00:38:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 91907 invoked by alias); 28 Sep 2016 00:38:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 91498 invoked by uid 48); 28 Sep 2016 00:38:41 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77735] FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-1.c (test for warnings, line 358) Date: Wed, 28 Sep 2016 00:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on component assigned_to everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02264.txt.bz2 Content-length: 1383 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77735 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |diagnostic Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-28 Component|testsuite |middle-end Assignee|unassigned at gcc dot gnu.org |msebor at gcc dot g= nu.org Ever confirmed|0 |1 Known to fail| |7.0 --- Comment #1 from Martin Sebor --- I have reproduced the test failure with a cross-compiler for hppa-unknown-linux-gnu. The problem is due to the c_strlen function define= d in builtins.c accepting wide strings but not handling them correctly (in this case, returning zero for L"1"). The problem doesn't show up in the tests on little-endian targets because the longest strings used by the wide character tests are 1 wide character long and the first character is in the least significant byte. Let me look into enhancing c_strlen to handle wide chara= cter strings if that's doable without too much effort. If not, I'll have to dis= able the -Wformat-length warning for wide strings. >>From gcc-bugs-return-538650-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 00:59:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 7501 invoked by alias); 28 Sep 2016 00:59:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 7111 invoked by uid 48); 28 Sep 2016 00:59:00 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77713] gcc.dg/tree-ssa/builtin-sprintf.c compilation failed to produce executable Date: Wed, 28 Sep 2016 00:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02265.txt.bz2 Content-length: 622 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77713 --- Comment #4 from Martin Sebor --- It looks to me like the failures might be due to bad assumptions in the test about the precision of type short, and due to bad assumptions about the out= put of %a made in the pass itself. Let me look into fixing the former under th= is bug but please go ahead and open a new bug for the %a failures. They were pointed out on the gcc-patches list (https://gcc.gnu.org/ml/gcc-patches/2016-09/msg01684.html) but I don't think there is a bug for them in Bugzilla yet. Thanks for your help and patience! >>From gcc-bugs-return-538652-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 01:03:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22242 invoked by alias); 28 Sep 2016 01:03:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 21776 invoked by uid 48); 28 Sep 2016 01:03:37 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77736] FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-2.c (test for warnings, line 50) Date: Wed, 28 Sep 2016 01:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02267.txt.bz2 Content-length: 692 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77736 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |diagnostic Status|UNCONFIRMED |RESOLVED Last reconfirmed| |2016-9-27 Resolution|--- |DUPLICATE --- Comment #1 from Martin Sebor --- The root cause of this failure is the same as in bug 77735 so I'll close th= is as a dupe. *** This bug has been marked as a duplicate of bug 77735 *** >>From gcc-bugs-return-538651-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 01:03:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22230 invoked by alias); 28 Sep 2016 01:03:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 21798 invoked by uid 48); 28 Sep 2016 01:03:38 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77735] FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-1.c (test for warnings, line 358) Date: Wed, 28 Sep 2016 01:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02266.txt.bz2 Content-length: 181 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77735 --- Comment #2 from Martin Sebor --- *** Bug 77736 has been marked as a duplicate of this bug. *** >>From gcc-bugs-return-538653-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 01:10:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39370 invoked by alias); 28 Sep 2016 01:10:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 38965 invoked by uid 55); 28 Sep 2016 01:10:42 -0000 From: "dave.anglin at bell dot net" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77735] FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-1.c (test for warnings, line 358) Date: Wed, 28 Sep 2016 01:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: dave.anglin at bell dot net X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02268.txt.bz2 Content-length: 961 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77735 --- Comment #3 from dave.anglin at bell dot net --- On 2016-09-27, at 8:38 PM, msebor at gcc dot gnu.org wrote: > I have reproduced the test failure with a cross-compiler for > hppa-unknown-linux-gnu. The problem is due to the c_strlen function defi= ned in > builtins.c accepting wide strings but not handling them correctly (in this > case, returning zero for L"1"). The problem doesn't show up in the tests= on > little-endian targets because the longest strings used by the wide charac= ter > tests are 1 wide character long and the first character is in the least > significant byte. Let me look into enhancing c_strlen to handle wide cha= racter > strings if that's doable without too much effort. If not, I'll have to d= isable > the -Wformat-length warning for wide strings. It seems like this could be a problem in other situations as well. -- John David Anglin dave.anglin@bell.net >>From gcc-bugs-return-538654-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 01:42:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 89805 invoked by alias); 28 Sep 2016 01:42:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 89647 invoked by uid 48); 28 Sep 2016 01:42:16 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77766] [7 Regression] wrong code at -O2 and -O3 in 64-bit mode on x86_64-linux-gnu (executable hangs) Date: Wed, 28 Sep 2016 01:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on target_milestone short_desc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02269.txt.bz2 Content-length: 826 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77766 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-28 Target Milestone|--- |7.0 Summary|wrong code at -O2 and -O3 |[7 Regression] wrong code |in 64-bit mode on |at -O2 and -O3 in 64-bit |x86_64-linux-gnu |mode on x86_64-linux-gnu |(executable hangs) |(executable hangs) Ever confirmed|0 |1 --- Comment #1 from Andrew Pinski --- Confirmed. >>From gcc-bugs-return-538655-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 01:51:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3119 invoked by alias); 28 Sep 2016 01:51:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 129885 invoked by uid 48); 28 Sep 2016 01:51:26 -0000 From: "bernd.edlinger at hotmail dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Wed, 28 Sep 2016 01:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: bernd.edlinger at hotmail dot de X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: bernd.edlinger at hotmail dot de X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02270.txt.bz2 Content-length: 2250 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #22 from Bernd Edlinger --- (In reply to Christophe Lyon from comment #21) > Ha, indeed, that's one of the differences between arm-none-eabi and > arm-none-linux-gnueabi. >=20 > Using -fno-short-enums does make execution succeed, unfortunately the lin= ker > complains because the startup code/libraries are not compiled with this f= lag: > ld: warning: /tmp/ccKhI9uW.o uses 32-bit enums yet the output is to use > variable-size enums; use of enum values across objects may fail >=20 > Is there an effective-target to check for short-enums? target short_enums but it looks like only checking the diagnostics from the compile not the link. Some use -Wl,--no-enum-size-warning which no other target undestands. Maybe we try this: Index: pr77550.C =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- pr77550.C (revision 240540) +++ pr77550.C (working copy) @@ -1,6 +1,7 @@ // { dg-do run } // { dg-options "-std=3Dc++14 -O3" } +#define enum enum __attribute((mode(SI))) namespace std { typedef int size_t; inline namespace __cxx11 {} @@ -229,15 +230,17 @@ struct _Alloc_hider { _Alloc_hider(pointer, allocator && =3D allocator()); } _M_dataplus; - size_type _M_string_length; + size_type _M_string_length =3D 0; enum { _S_local_capacity =3D 15 } _M_local_buf[_S_local_capacity]; - pointer _M_local_data(); - void _M_set_length(size_type); - basic_string() : _M_dataplus(_M_local_data()) { _M_set_length(0); } + basic_string() : _M_dataplus(0) {} basic_string(const basic_string &) : _M_dataplus(0) {} size_type size() { return _M_string_length; } char *data() const {} }; +//template<> basic_string, std::allocator>:: +//_Alloc_hider::_Alloc_hider(char*, std::allocator&&) {} +extern "C" void +_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcOS= 3_ (...) {} } template int operator=3D=3D(basic_string<_CharT> &p1, const basic_string<_CharT> &p= 2) { >>From gcc-bugs-return-538656-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 02:03:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 86673 invoked by alias); 28 Sep 2016 02:03:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 80634 invoked by uid 48); 28 Sep 2016 02:03:05 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Wed, 28 Sep 2016 02:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02271.txt.bz2 Content-length: 295 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |normal >>From gcc-bugs-return-538657-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 05:15:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121869 invoked by alias); 28 Sep 2016 05:15:15 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121299 invoked by uid 55); 28 Sep 2016 05:14:52 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77724] [7 Regression] bootstrap-O3 broken: ICE: in tree_to_uhwi, at tree.c:7330 Date: Wed, 28 Sep 2016 05:15:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build, ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02272.txt.bz2 Content-length: 623 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77724 --- Comment #3 from Markus Trippelsdorf --- Author: trippels Date: Wed Sep 28 05:13:19 2016 New Revision: 240565 URL: https://gcc.gnu.org/viewcvs?rev=3D240565&root=3Dgcc&view=3Drev Log: Fix PR tree-optimization/77724 2016-09-27 Robin Dapp PR tree-optimization/77724 * tree-vect-loop-manip.c (create_intersect_range_checks_index): Add tree_fits_shwi_p check. Added: trunk/gcc/testsuite/gcc.dg/vect/pr77724.c Modified: trunk/gcc/ChangeLog trunk/gcc/tree-vect-loop-manip.c >>From gcc-bugs-return-538658-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 05:18:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 111324 invoked by alias); 28 Sep 2016 05:18:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 74670 invoked by uid 48); 28 Sep 2016 05:18:05 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77724] [7 Regression] bootstrap-O3 broken: ICE: in tree_to_uhwi, at tree.c:7330 Date: Wed, 28 Sep 2016 05:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build, ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02273.txt.bz2 Content-length: 441 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77724 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #4 from Markus Trippelsdorf --- Fixed. >>From gcc-bugs-return-538659-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 05:51:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 52976 invoked by alias); 28 Sep 2016 05:51:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 52823 invoked by uid 48); 28 Sep 2016 05:50:48 -0000 From: "clyon at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Wed, 28 Sep 2016 05:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: clyon at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: bernd.edlinger at hotmail dot de X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02274.txt.bz2 Content-length: 154 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #23 from Christophe Lyon --- Yes, it does the trick. Thanks! >>From gcc-bugs-return-538660-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 06:02:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 92018 invoked by alias); 28 Sep 2016 06:02:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 91860 invoked by uid 48); 28 Sep 2016 06:01:58 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] New: [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Wed, 28 Sep 2016 06:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02275.txt.bz2 Content-length: 2051 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 Bug ID: 77768 Summary: [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: bootstrap Assignee: unassigned at gcc dot gnu.org Reporter: trippels at gcc dot gnu.org Target Milestone: --- on gcc-112 (ppc64le) during final LTO link of cc1/cc1plus: ../../gcc/gcc/tree-vrp.c: In member function =E2=80=98execute=E2=80=99: ../../gcc/gcc/tree-vrp.c:11053:0: internal compiler error: Segmentation fau= lt virtual unsigned int execute (function *) Please submit a full bug report, with preprocessed source if appropriate. See for instructions. make[4]: *** [/home/trippels/tmp/ccYNb8Te.ltrans10.ltrans.o] Error 1 Thread 2.1 "lto1-ltrans" received signal SIGSEGV, Segmentation fault. [Switching to process 103667] 0x0000000010f818d8 in visit_use(tree_node*) () (gdb) bt #0 0x0000000010f818d8 in visit_use(tree_node*) () #1 0x0000000010f83790 in DFS(tree_node*) () #2 0x0000000010f84f6c in sccvn_dom_walker::before_dom_children(basic_block_def*) () #3 0x0000000011806c08 in dom_walker::walk(basic_block_def*) () #4 0x0000000010f7f1e4 in run_scc_vn(vn_lookup_kind) () #5 0x0000000010f3d654 in (anonymous namespace)::pass_pre::execute(function= *) () #6 0x0000000010a4349c in execute_one_pass(opt_pass*) () #7 0x0000000010a446a0 in execute_pass_list_1(opt_pass*) () #8 0x0000000010a446dc in execute_pass_list_1(opt_pass*) () #9 0x0000000010a447fc in execute_pass_list(function*, opt_pass*) () #10 0x00000000103af6d4 in cgraph_node::expand() () #11 0x00000000103b2d1c in symbol_table::compile() () #12 0x00000000102659f8 in lto_main() () #13 0x0000000010c38bd4 in compile_file() () #14 0x00000000101f6f5c in toplev::main(int, char**) () #15 0x00000000101fcda4 in main () >>From gcc-bugs-return-538661-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 06:11:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 104158 invoked by alias); 28 Sep 2016 06:11:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 103857 invoked by uid 48); 28 Sep 2016 06:11:11 -0000 From: "yzhang1985 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug other/77769] New: function generated for OpenMP region uses wrong instruction set Date: Wed, 28 Sep 2016 06:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: other X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: yzhang1985 at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02276.txt.bz2 Content-length: 3011 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77769 Bug ID: 77769 Summary: function generated for OpenMP region uses wrong instruction set Product: gcc Version: 6.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: other Assignee: unassigned at gcc dot gnu.org Reporter: yzhang1985 at gmail dot com Target Milestone: --- Created attachment 39707 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39707&action=3Dedit compilation will fail with "target specific option mismatch" Greetings, I'm trying write AVX2 SIMD intrinsics code that will be dynamica= lly dispatched at runtime through a function pointer. The code has to work for vanilla x86_64 processors, so I can't use -mavx2. Instead, I use #pragma GCC target("avx2") to target AVX2 for selected functions. The bug is that whenever I call AVX or AVX2 intrinsics inside an OpenMP region, I get the error, "target specific option mismatch" If I move the intrinsics code to another function, it can compile, but if I mark that function with __attribute__((always_inline)), the compilation fai= ls with the same error. So, my conclusion is that the OpenMP code generator is still targeting vani= lla x86_64, instead of AVX2. Appreciate it if someone can work on fixing this. command line: g++ -O3 -fopenmp openmp_wrong_target_isa.cpp Sorry, I couldn't include the preprocessed file as requested - exceeds uplo= ad limit. gcc -v output: Using built-in specs. COLLECT_GCC=3Dgcc COLLECT_LTO_WRAPPER=3D/usr/lib/gcc/x86_64-linux-gnu/6/lto-wrapper Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion=3D'Debian 6.2.0-4' --with-bugurl=3Dfile:///usr/share/doc/gcc-6/README.Bugs --enable-languages=3Dc,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=3D/u= sr --program-suffix=3D-6 --program-prefix=3Dx86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=3D/usr/lib --without-included-gettext --enable-threads=3Dposix --libdir=3D/usr/lib --enable-nls --with-sysroot=3D/ --enable-clocale=3Dgnu --enable-libstdcxx-debug --enable-libstdcxx-time=3Dy= es --with-default-libstdcxx-abi=3Dnew --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=3Dgtk --enable-gtk-cairo --with-java-home=3D/usr/lib/jvm/java-1.5.0-gcj-6-amd64/jre --enable-java-ho= me --with-jvm-root-dir=3D/usr/lib/jvm/java-1.5.0-gcj-6-amd64 --with-jvm-jar-dir=3D/usr/lib/jvm-exports/java-1.5.0-gcj-6-amd64 --with-arch-directory=3Damd64 --with-ecj-jar=3D/usr/share/java/eclipse-ecj.= jar --enable-objc-gc --enable-multiarch --with-arch-32=3Di686 --with-abi=3Dm64 --with-multilib-list=3Dm32,m64,mx32 --enable-multilib --with-tune=3Dgeneric --enable-checking=3Drelease --build=3Dx86_64-linux-gnu --host=3Dx86_64-linu= x-gnu --target=3Dx86_64-linux-gnu Thread model: posix gcc version 6.2.0 20160914 (Debian 6.2.0-4) >>From gcc-bugs-return-538662-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 06:28:16 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 34842 invoked by alias); 28 Sep 2016 06:28:16 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33544 invoked by uid 48); 28 Sep 2016 06:28:03 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77769] function generated for OpenMP region uses wrong instruction set Date: Wed, 28 Sep 2016 06:28:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: openmp, rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords component Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02277.txt.bz2 Content-length: 581 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77769 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |rejects-valid Component|other |middle-end --- Comment #1 from Andrew Pinski --- So what is most likely happening is when openmp is creating the new function for outlining, it does not copy the target attribute to the new function. >>From gcc-bugs-return-538663-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 07:49:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 99613 invoked by alias); 28 Sep 2016 07:49:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 99214 invoked by uid 48); 28 Sep 2016 07:49:28 -0000 From: "zoltan at bendor dot com.au" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77770] New: Internal compiler error on source which compiles with earlier versions. Date: Wed, 28 Sep 2016 07:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: zoltan at bendor dot com.au X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02278.txt.bz2 Content-length: 1377 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77770 Bug ID: 77770 Summary: Internal compiler error on source which compiles with earlier versions. Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: zoltan at bendor dot com.au Target Milestone: --- Created attachment 39708 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39708&action=3Dedit The compiler command line Source code which compiles with 4.7.2 (and I was told, but not tested, with 5.1.0 as well) fails with internal compiler error on 5.4.0 and 6.1.0. It is a cross-compiler, in all cases generated with the following configure: --target=3Darm-eabi --disable-libada --disable-libssp --disable-lto --enable-languages=3Dc The host is GNU/Linux, cross binutils installed with --target=3Darm-eabi It should be noted that it succeeds to compile the code for both ARM and TH= UMB if optimising for speed and also for ARM optimising for size, but fails with the THUMB and optimising for size case (the target architecture is ARM7TDMI= ). Attached are the command line, the error message and the preprocessed source file. This particular set of files was generated by the 5.4.0 compiler. >>From gcc-bugs-return-538664-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 07:50:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 113384 invoked by alias); 28 Sep 2016 07:50:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 113265 invoked by uid 48); 28 Sep 2016 07:50:31 -0000 From: "zoltan at bendor dot com.au" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77770] Internal compiler error on source which compiles with earlier versions. Date: Wed, 28 Sep 2016 07:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: zoltan at bendor dot com.au X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02279.txt.bz2 Content-length: 257 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77770 --- Comment #1 from Zoltan Kocsi --- Created attachment 39709 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39709&action=3Dedit The error message from the compiler >>From gcc-bugs-return-538665-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 07:51:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 114556 invoked by alias); 28 Sep 2016 07:51:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 114387 invoked by uid 48); 28 Sep 2016 07:51:27 -0000 From: "zoltan at bendor dot com.au" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77770] Internal compiler error on source which compiles with earlier versions. Date: Wed, 28 Sep 2016 07:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: zoltan at bendor dot com.au X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02280.txt.bz2 Content-length: 245 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77770 --- Comment #2 from Zoltan Kocsi --- Created attachment 39710 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39710&action=3Dedit The pre-compiled source >>From gcc-bugs-return-538666-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 08:07:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 104902 invoked by alias); 28 Sep 2016 08:07:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 104800 invoked by uid 48); 28 Sep 2016 08:07:11 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77770] [5/6 Regression] Internal compiler error on source which compiles with earlier versions. Date: Wed, 28 Sep 2016 08:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords target_milestone short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02281.txt.bz2 Content-length: 644 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77770 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code Target Milestone|--- |5.5 Summary|Internal compiler error on |[5/6 Regression] Internal |source which compiles with |compiler error on source |earlier versions. |which compiles with earlier | |versions. >>From gcc-bugs-return-538667-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 08:25:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 72332 invoked by alias); 28 Sep 2016 08:25:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 72202 invoked by uid 48); 28 Sep 2016 08:25:12 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77770] [5/6/7 Regression] Internal compiler error on source which compiles with earlier versions. Date: Wed, 28 Sep 2016 08:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02282.txt.bz2 Content-length: 869 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77770 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-28 Ever confirmed|0 |1 --- Comment #3 from Markus Trippelsdorf --- markus@x4 gcc % cat print_flt32.i extern void fn2(int, int); int a; void fn1(float p1) { __asm__("" : "=3Dr"(a) : "0"(p1)); fn2(0, a); } markus@x4 gcc % ./cc1 -mthumb -fpreprocessed print_flt32.i -quiet -Os -o /dev/null print_flt32.i: In function =E2=80=98fn1=E2=80=99: print_flt32.i:6:1: internal compiler error: Max. number of generated reload insns per insn is achieved (90) >>From gcc-bugs-return-538668-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 08:42:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25831 invoked by alias); 28 Sep 2016 08:42:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25684 invoked by uid 48); 28 Sep 2016 08:41:53 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77769] function generated for OpenMP region uses wrong instruction set Date: Wed, 28 Sep 2016 08:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: openmp, rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02283.txt.bz2 Content-length: 243 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77769 --- Comment #2 from Richard Biener --- The testcase you attached can't work because we can't inline an avx2 functi= on into a function not having avx2 enabled. >>From gcc-bugs-return-538669-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 08:43:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27477 invoked by alias); 28 Sep 2016 08:43:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27252 invoked by uid 48); 28 Sep 2016 08:43:11 -0000 From: "robert-gcc at debian dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug driver/19541] need another option to support what -I- did just besides -iquote Date: Wed, 28 Sep 2016 08:43:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: driver X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: patch X-Bugzilla-Severity: enhancement X-Bugzilla-Who: robert-gcc at debian dot org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02284.txt.bz2 Content-length: 713 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D19541 Robert Luberda changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |robert-gcc at debian dot o= rg --- Comment #26 from Robert Luberda --- After 11 years since the first report I can confirm the bug is still presen= t in gcc-6: -the compiler still claims that -I- is deprecated, -it also still lies that -iquote can be used instead,=20 - and it still does not provide any other option to get rid of the current file's directory from the search path... >>From gcc-bugs-return-538670-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 08:45:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 29460 invoked by alias); 28 Sep 2016 08:45:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29265 invoked by uid 48); 28 Sep 2016 08:44:47 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Wed, 28 Sep 2016 08:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: lto X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02285.txt.bz2 Content-length: 1051 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |lto CC| |rguenth at gcc dot gnu.org Target Milestone|--- |7.0 --- Comment #1 from Richard Biener --- Hmpf, that's little information. I guess it's caused by /* Pick up flags from a devirtualization target. */ tree fn =3D gimple_call_fn (stmt); int extra_fnflags =3D 0; if (fn && TREE_CODE (fn) =3D=3D SSA_NAME) { fn =3D SSA_VAL (fn); if (TREE_CODE (fn) =3D=3D ADDR_EXPR && TREE_CODE (TREE_OPERAND (fn, 0)) =3D=3D FUNCTION_DECL) extra_fnflags =3D flags_from_decl_or_type (TREE_OPERAND (fn, 0)= ); } but I cant' see what the issue is whith this (how it can even segfault). >>From gcc-bugs-return-538671-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 08:47:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 36510 invoked by alias); 28 Sep 2016 08:47:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 36210 invoked by uid 48); 28 Sep 2016 08:47:17 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77761] [7 Regression] wrong code with -fschedule-insns -mavx512f --param=max-pending-list-length=512 Date: Wed, 28 Sep 2016 08:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02286.txt.bz2 Content-length: 293 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77761 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |7.0 >>From gcc-bugs-return-538672-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 09:02:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 14169 invoked by alias); 28 Sep 2016 09:02:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 13887 invoked by uid 48); 28 Sep 2016 09:02:38 -0000 From: "ubizjak at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Wed, 28 Sep 2016 09:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ubizjak at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02287.txt.bz2 Content-length: 754 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 Uro=C5=A1 Bizjak changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-28 Assignee|unassigned at gcc dot gnu.org |ubizjak at gmail do= t com Ever confirmed|0 |1 --- Comment #1 from Uro=C5=A1 Bizjak --- Created attachment 39711 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39711&action=3Dedit Patch that fixes __get_cpuid Can you please check if the attached patch fixes your problem? >>From gcc-bugs-return-538673-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 09:03:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 15025 invoked by alias); 28 Sep 2016 09:03:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 14298 invoked by uid 48); 28 Sep 2016 09:02:52 -0000 From: "ubizjak at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Wed, 28 Sep 2016 09:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ubizjak at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02288.txt.bz2 Content-length: 293 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 Uro=C5=A1 Bizjak changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |6.3 >>From gcc-bugs-return-538674-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 09:24:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 83425 invoked by alias); 28 Sep 2016 09:24:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 82922 invoked by uid 48); 28 Sep 2016 09:23:57 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Wed, 28 Sep 2016 09:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: lto X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02289.txt.bz2 Content-length: 915 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 --- Comment #2 from Markus Trippelsdorf --- 0x10c39b13 crash_signal ../../gcc/gcc/toplev.c:337 0x10f818d8 visit_reference_op_store ../../gcc/gcc/tree-ssa-sccvn.c:3613 0x10f818d8 visit_use ../../gcc/gcc/tree-ssa-sccvn.c:3858 0x10f8378f process_scc ../../gcc/gcc/tree-ssa-sccvn.c:4142 0x10f8378f extract_and_process_scc_for_name ../../gcc/gcc/tree-ssa-sccvn.c:4198 0x10f8378f DFS ../../gcc/gcc/tree-ssa-sccvn.c:4250 0x10f84f6b sccvn_dom_walker::before_dom_children(basic_block_def*) ../../gcc/gcc/tree-ssa-sccvn.c:4703 0x11806c07 dom_walker::walk(basic_block_def*) ../../gcc/gcc/domwalk.c:265 0x10f7f1e3 run_scc_vn(vn_lookup_kind) ../../gcc/gcc/tree-ssa-sccvn.c:4827 0x10f3d653 execute ../../gcc/gcc/tree-ssa-pre.c:5021 Please submit a full bug report, >>From gcc-bugs-return-538675-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 09:26:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 87923 invoked by alias); 28 Sep 2016 09:26:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 87663 invoked by uid 48); 28 Sep 2016 09:26:16 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Wed, 28 Sep 2016 09:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: lto X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02290.txt.bz2 Content-length: 176 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 --- Comment #3 from Markus Trippelsdorf --- So it looks like r240534 is causing this issue. >>From gcc-bugs-return-538676-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 09:32:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 32219 invoked by alias); 28 Sep 2016 09:32:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31997 invoked by uid 48); 28 Sep 2016 09:31:57 -0000 From: "bruck.michael at googlemail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77771] New: internal compiler error: in cxx_eval_bit_field_ref, at cp/constexpr.c:2090 Date: Wed, 28 Sep 2016 09:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: bruck.michael at googlemail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02291.txt.bz2 Content-length: 998 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77771 Bug ID: 77771 Summary: internal compiler error: in cxx_eval_bit_field_ref, at cp/constexpr.c:2090 Product: gcc Version: 5.4.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: bruck.michael at googlemail dot com Target Milestone: --- struct S { char x[2]; unsigned y; }; constexpr bool func(const S s) { return s.x[0] !=3D 42 || s.x[1] !=3D 0; } static_assert(!func({{42, 7}, 0}), "bla"); --- Compiled with -std=3Dc++11 -O on various compilers (http://gcc.godbolt.org/) starting with 4.7.1 up to 7 I get an ICE: Example with 5.4: 12 : in constexpr expansion of 'func(S{char [2]{'*', '\007'}, 0u})' 12 : internal compiler error: in cxx_eval_bit_field_ref, at cp/constexpr.c:= 2090 static_assert(!func({{42, 7}, 0}), "bla"); >>From gcc-bugs-return-538677-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 09:32:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 33415 invoked by alias); 28 Sep 2016 09:32:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33247 invoked by uid 48); 28 Sep 2016 09:32:34 -0000 From: "achurch+gcc at achurch dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug driver/19541] need another option to support what -I- did just besides -iquote Date: Wed, 28 Sep 2016 09:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: driver X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: patch X-Bugzilla-Severity: enhancement X-Bugzilla-Who: achurch+gcc at achurch dot org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02292.txt.bz2 Content-length: 471 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D19541 --- Comment #27 from Andrew Church --- I've updated the undeprecation patch at http://achurch.org/patch-pile/#gcc = for 4.9.4 and 6.2.0 (sorry about laziness). I'm mildly amused at how the quotation style ('...' vs `...') and line wrap column in the pregenerated info files varies more or less randomly between versions. It certainly makes updating the patch an interesting task... >>From gcc-bugs-return-538678-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 09:37:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 91507 invoked by alias); 28 Sep 2016 09:37:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 91147 invoked by uid 48); 28 Sep 2016 09:37:43 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Wed, 28 Sep 2016 09:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: lto X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02293.txt.bz2 Content-length: 1240 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 --- Comment #4 from Richard Biener --- Interesting. This means vnresult is NULL. I see we can arrive here through tree vn_reference_lookup (tree op, tree vuse, vn_lookup_kind kind, vn_reference_t *vnresult, bool tbaa_p) { vec operands; struct vn_reference_s vr1; tree cst; bool valuezied_anything; if (vnresult) *vnresult =3D NULL; vr1.vuse =3D vuse_ssa_val (vuse); vr1.operands =3D operands =3D valueize_shared_reference_ops_from_ref (op, &valuezied_anything); vr1.type =3D TREE_TYPE (op); vr1.set =3D tbaa_p ? get_alias_set (op) : 0; vr1.hashcode =3D vn_reference_compute_hash (&vr1); if ((cst =3D fully_constant_vn_reference_p (&vr1))) return cst; but somehow this means that we have sth like static const int i[5] =3D { 1, 2, 3, }; i[1] =3D 2; which should prevent the initializer from being constant ... A really odd case I'd like to see a testcase for (trying to reproduce on x86_64 right no= w). A simple "fix" is to guard the code for the vnresult =3D=3D NULL, erring on the safe side. Can you dump me the stmt and maybe also the stored decl (with debug_tree)? >>From gcc-bugs-return-538679-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 09:41:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 65059 invoked by alias); 28 Sep 2016 09:41:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 64963 invoked by uid 48); 28 Sep 2016 09:41:16 -0000 From: "antonio.poggiali at datalogic dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77772] New: Segmentation fault when running an application with gdb Date: Wed, 28 Sep 2016 09:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: antonio.poggiali at datalogic dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02294.txt.bz2 Content-length: 2465 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77772 Bug ID: 77772 Summary: Segmentation fault when running an application with gdb Product: gcc Version: 5.2.0 Status: UNCONFIRMED Severity: major Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: antonio.poggiali at datalogic dot com Target Milestone: --- Created attachment 39712 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39712&action=3Dedit Logs, command line and temp file with GCC 5.2.0 Host system: Linux APoggialiNpVb-lx 3.13.0-95-generic #142-Ubuntu SMP Fri Aug 12 17:00:09 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux Target system: ARM cortex A5 Linux 4.1.0-linux4sam_5.2-00045-g633e08a-dirty #1 Wed Aug= 31 16:22:02 CEST 2016 armv7l GNU/Linux Cross-compiler invocation, output and temp file in attachment (5.2.0.tar.gz= ). The compiler is generated from Yocto Poky (jethro): arm-poky-linux-gnueabi-g++ (GCC) 5.2.0 Copyright (C) 2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Comment: If I deploy the application on the target and launch it, everything is fine (return value is zero). If I debug the application using gdbserver+gdb, I get a segmentation fault= on the glibc library (see logs in attachment). Working system: Cross compiling with GCC 4.9.3 toward a glibc 2.20 stub (generated from Yo= cto Poky (dizzy)), I am able to run and debug successfully on the target. Note = that the target system is not changed and still have the glibc 2.22 shared object (/lib/libc-2.22.so). Cross-compiler invocation, output and temp file in attachment (4.9.3.tar.gz). Trick to have the debugger working: If I change the code from this: >> class _my_class >> { >> public: >>=20 >> // Return empty string >> static char *get_empty_string() >> { >> static char empty_string =3D '\0'; >> return &empty_string; >> } >> }; >>=20 >> char _my_class::empty_string =3D '\0'; to this: >> class _my_class >> { >> public: >>=20 >> static char empty_string; >>=20 >> // Return empty string >> static char *get_empty_string() >> { >> return &empty_string; >> } >> }; >>=20 >> char _my_class::empty_string =3D '\0'; then everything works fine even with GCC 5.2.0. >>From gcc-bugs-return-538680-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 09:42:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 66228 invoked by alias); 28 Sep 2016 09:42:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 66095 invoked by uid 48); 28 Sep 2016 09:41:56 -0000 From: "antonio.poggiali at datalogic dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77772] Segmentation fault when running an application with gdb Date: Wed, 28 Sep 2016 09:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: antonio.poggiali at datalogic dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02295.txt.bz2 Content-length: 285 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77772 --- Comment #1 from Antonio Poggiali --- Created attachment 39713 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39713&action=3Dedit Logs, command line and temp file with GCC 4.9.3 >>From gcc-bugs-return-538681-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 09:42:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 67527 invoked by alias); 28 Sep 2016 09:42:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 67299 invoked by uid 48); 28 Sep 2016 09:42:44 -0000 From: "antonio.poggiali at datalogic dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77772] Segmentation fault when running an application with gdb Date: Wed, 28 Sep 2016 09:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: antonio.poggiali at datalogic dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02296.txt.bz2 Content-length: 250 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77772 --- Comment #2 from Antonio Poggiali --- Created attachment 39714 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39714&action=3Dedit Source files >>From gcc-bugs-return-538682-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 09:44:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69134 invoked by alias); 28 Sep 2016 09:44:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 68933 invoked by uid 48); 28 Sep 2016 09:44:03 -0000 From: "antonio.poggiali at datalogic dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77772] Segmentation fault when running an application with gdb Date: Wed, 28 Sep 2016 09:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: antonio.poggiali at datalogic dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02297.txt.bz2 Content-length: 310 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77772 --- Comment #3 from Antonio Poggiali --- Created attachment 39715 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39715&action=3Dedit Logs of the cross-compiled program segmentation fault with gdb attached. >>From gcc-bugs-return-538683-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 09:55:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 86619 invoked by alias); 28 Sep 2016 09:55:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 86037 invoked by uid 48); 28 Sep 2016 09:54:48 -0000 From: "yzhang1985 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77769] function generated for OpenMP region uses wrong instruction set Date: Wed, 28 Sep 2016 09:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: openmp, rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: yzhang1985 at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02298.txt.bz2 Content-length: 553 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77769 --- Comment #3 from Yale Zhang --- (In reply to Richard Biener from comment #2) > The testcase you attached can't work because we can't inline an avx2 > function into a function not having avx2 enabled. Right, but main() and the OpenMP function should have AVX2 enabled because = they come after #pragma GCC target("avx2") which is still in effect. If the target("avx2") was surrounded by #pragma GCC push_options/pop_option= s, then main would not have AVX2 enabled >>From gcc-bugs-return-538684-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 10:01:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 98747 invoked by alias); 28 Sep 2016 10:01:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 98647 invoked by uid 48); 28 Sep 2016 10:01:00 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Wed, 28 Sep 2016 10:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: lto X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02299.txt.bz2 Content-length: 4698 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 --- Comment #5 from Markus Trippelsdorf --- (gdb) p vnresult $1 =3D (vn_reference_s *) 0x0 (gdb) p debug_tree(lhs)=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 unit size align 32 symtab 0 alias set -1 canonical type 0x3fffaf63bc58 precision 3 min max > unsigned SI size unit size align 32 symtab 0 alias set -1 canonical type 0x3fffaf590738 precis= ion 32 min max values value chain value chain value chain value chain value >>>>> context chain > arg 0 unit size align 64 symtab 0 alias set -1 canonical type 0x3fffaffaabf0 fi= elds context pointer_to_this reference_to_this > readonly addressable public static BLK file ../../gcc/gcc/tree-vrp.c line 646 col 0 size unit size align 64 context ini= tial chain unsigned DI file ../../gcc/gcc/tree-vrp.c line 648 col 0 size unit size align 64 context chain >> arg 1 unsigned nonlocal SI file ../../gcc/gcc/tree-vrp.h line 30 col 0 si= ze unit size align 32 offset_align 128 offset bit offset context chain unsigned nonlocal DI file ../../gcc/gcc/tree-vrp.h line 43 col 0 size unit size align 64 offset_align 128 offset = bit offset context chain >> ../../gcc/gcc/tree-vrp.c:339:0 start: ../../gcc/gcc/tree-vrp.c:339:0 finish: ../../gcc/gcc/tree-vrp.c:339:0> $3 =3D void (gdb) p debug_tree(0x3fffa6ee5e80)=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20 > var def_stmt .MEM_834 =3D PHI <.MEM_258(504), .MEM_1232(486)> version 834> $9 =3D void >>From gcc-bugs-return-538685-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 10:18:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 105767 invoked by alias); 28 Sep 2016 10:18:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 105553 invoked by uid 48); 28 Sep 2016 10:17:56 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77772] Segmentation fault when running an application with gdb Date: Wed, 28 Sep 2016 10:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_gcctarget bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02300.txt.bz2 Content-length: 363 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77772 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Target| |arm-*-linux-gnueabi Severity|major |normal >>From gcc-bugs-return-538686-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 10:27:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 81901 invoked by alias); 28 Sep 2016 10:27:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 81735 invoked by uid 48); 28 Sep 2016 10:27:30 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Wed, 28 Sep 2016 10:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: lto X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02301.txt.bz2 Content-length: 1390 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-28 Assignee|unassigned at gcc dot gnu.org |rguenth at gcc dot = gnu.org Ever confirmed|0 |1 --- Comment #6 from Richard Biener --- So somebody is writing to vr_const_varying declared here: static value_range * get_value_range (const_tree var) { static const value_range vr_const_varying =3D { VR_VARYING, NULL_TREE, NULL_TREE, NULL }; ... /* If we query the range for a new SSA name return an unmodifiable VARYIN= G. We should get here at most from the substitute-and-fold stage which will never try to change values. */ if (ver >=3D num_vr_values) return CONST_CAST (value_range *, &vr_const_varying); I wonder if this is related to early VRP or latent. Yeah, FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_DEF) set_value_range_to_varying (get_value_range (def)); those callers are certainly prone of hitting this after we eventually alloc= ated new SSA names (early VRP folds and thus does). >>From gcc-bugs-return-538687-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 10:36:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125438 invoked by alias); 28 Sep 2016 10:36:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125299 invoked by uid 48); 28 Sep 2016 10:35:52 -0000 From: "avieira at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/77773] New: [7/6 regression] Segfault when compiling __simd64_float16_t using arm-none-eabi-g++ with debug information Date: Wed, 28 Sep 2016 10:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: avieira at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02302.txt.bz2 Content-length: 2280 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77773 Bug ID: 77773 Summary: [7/6 regression] Segfault when compiling __simd64_float16_t using arm-none-eabi-g++ with debug information Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: debug Assignee: unassigned at gcc dot gnu.org Reporter: avieira at gcc dot gnu.org Target Milestone: --- Hello, When compiling the following: $ cat t.c typedef __simd64_float16_t float16x4_t; with: $ arm-none-eabi-g++ -S t.c -mfloat-abi=3Dhard -march=3Darmv7-a -g t.c:1:28: internal compiler error: Segmentation fault 0xd33a1f crash_signal src/gcc/gcc/toplev.c:336 0x881b8f tree_class_check src/gcc/gcc/tree.h:3148 0x881b8f c_pretty_printer::simple_type_specifier(tree_node*) src/gcc/gcc/c-family/c-pretty-print.c:351 0x7ce46e cxx_pretty_printer::simple_type_specifier(tree_node*) src/gcc/gcc/cp/cxx-pretty-print.c:1324 0x884dec pp_c_specifier_qualifier_list(c_pretty_printer*, tree_node*) src/gcc/gcc/c-family/c-pretty-print.c:478 0x884dde pp_c_specifier_qualifier_list(c_pretty_printer*, tree_node*) src/gcc/gcc/c-family/c-pretty-print.c:474 0x7ccbe2 pp_cxx_type_specifier_seq src/gcc/gcc/cp/cxx-pretty-print.c:1379 0x6b4cd4 dump_type src/gcc/gcc/cp/error.c:467 0x6be905 dump_type_prefix src/gcc/gcc/cp/error.c:811 0x6b26b2 dump_simple_decl src/gcc/gcc/cp/error.c:970 0x6b2e00 dump_decl src/gcc/gcc/cp/error.c:1057 0x6beaf1 decl_as_string(tree_node*, int) src/gcc/gcc/cp/error.c:2882 0x6beb1f decl_as_dwarf_string(tree_node*, int) src/gcc/gcc/cp/error.c:2871 0x59a171 cxx_dwarf_name src/gcc/gcc/cp/cp-lang.c:119 0x97f8be type_tag src/gcc/gcc/dwarf2out.c:19191 0x9a1369 gen_array_type_die src/gcc/gcc/dwarf2out.c:19367 0x9a1369 gen_type_die_with_usage src/gcc/gcc/dwarf2out.c:23080 0x9a1c8b gen_type_die src/gcc/gcc/dwarf2out.c:23142 0x9ab9d7 modified_type_die src/gcc/gcc/dwarf2out.c:11469 0x9abf9c add_type_attribute src/gcc/gcc/dwarf2out.c:19123 Removing -g makes it compile without errors. >>From gcc-bugs-return-538688-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 10:39:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 422 invoked by alias); 28 Sep 2016 10:39:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 130838 invoked by uid 48); 28 Sep 2016 10:39:43 -0000 From: "avieira at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/77773] [7/6 regression] Segfault when compiling __simd64_float16_t using arm-none-eabi-g++ with debug information Date: Wed, 28 Sep 2016 10:39:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: avieira at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02303.txt.bz2 Content-length: 347 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77773 --- Comment #1 from avieira at gcc dot gnu.org --- When I say without errors I meant without segfaulting. It will print out the following error for version 5 if you dont include '-mfpu=3Dneon': t.c:1:9: error: '__simd64_float16_t' does not name a type typedef __simd64_float16_t float16x4_t; >>From gcc-bugs-return-538689-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 10:42:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4585 invoked by alias); 28 Sep 2016 10:42:35 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4444 invoked by uid 48); 28 Sep 2016 10:42:23 -0000 From: "ktkachov at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/77773] [6/7 regression] Segfault when compiling __simd64_float16_t using arm-none-eabi-g++ with debug information Date: Wed, 28 Sep 2016 10:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: ktkachov at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc short_desc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02304.txt.bz2 Content-length: 949 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77773 ktkachov at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-invalid-code Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-28 CC| |ktkachov at gcc dot gnu.org Summary|[7/6 regression] Segfault |[6/7 regression] Segfault |when compiling |when compiling |__simd64_float16_t using |__simd64_float16_t using |arm-none-eabi-g++ with |arm-none-eabi-g++ with |debug information |debug information Ever confirmed|0 |1 --- Comment #2 from ktkachov at gcc dot gnu.org --- Confirmed >>From gcc-bugs-return-538690-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 10:57:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 44215 invoked by alias); 28 Sep 2016 10:57:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 42978 invoked by uid 48); 28 Sep 2016 10:57:40 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/77773] [6/7 regression] Segfault when compiling __simd64_float16_t using arm-none-eabi-g++ with debug information Date: Wed, 28 Sep 2016 10:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02305.txt.bz2 Content-length: 293 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77773 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |6.3 >>From gcc-bugs-return-538691-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 10:58:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 46393 invoked by alias); 28 Sep 2016 10:58:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 44504 invoked by uid 48); 28 Sep 2016 10:57:56 -0000 From: "avieira at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/77773] [6/7 regression] Segfault when compiling __simd64_float16_t using arm-none-eabi-g++ with debug information Date: Wed, 28 Sep 2016 10:58:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: avieira at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02306.txt.bz2 Content-length: 766 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77773 --- Comment #3 from avieira at gcc dot gnu.org --- Just to make it clear: The command I showed without the '-g' did use to error on gcc-5, but it doe= snt on 6 and 7: $ gcc-5/arm-none-eabi-g++ -S t.c -mfloat-abi=3Dhard -march=3Darmv7-a t.c:1:9: error: '__simd64_float16_t' does not name a type typedef __simd64_float16_t float16x4_t; $ gcc-6/arm-none-eabi-g++ -S t.c -mfloat-abi=3Dhard -march=3Darmv7-a $ gcc-7/arm-none-eabi-g++ -S t.c -mfloat-abi=3Dhard -march=3Darmv7-a Adding -mfpu=3Dneon to gcc-5 gets rid of the error: $ gcc-5/arm-none-eabi-g++ -S t.c -mfloat-abi=3Dhard -march=3Darmv7-a -mfpu= =3Dneon Adding -mfpu=3Dneon to eitehr gcc-6 or 7 is irrelevant to both compilations= with or without '-g'. >>From gcc-bugs-return-538692-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 10:58:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 48071 invoked by alias); 28 Sep 2016 10:58:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 47383 invoked by uid 55); 28 Sep 2016 10:58:20 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Wed, 28 Sep 2016 10:58:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02307.txt.bz2 Content-length: 505 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #19 from Jonathan Wakely --- Author: redi Date: Wed Sep 28 10:57:46 2016 New Revision: 240567 URL: https://gcc.gnu.org/viewcvs?rev=3D240567&root=3Dgcc&view=3Drev Log: libstdc++/77686 use may_alias for std::function storage PR libstdc++/77686 * include/std/functional (_Any_data): Add may_alias attribute. Modified: trunk/libstdc++-v3/ChangeLog trunk/libstdc++-v3/include/std/functional >>From gcc-bugs-return-538693-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 11:01:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 52477 invoked by alias); 28 Sep 2016 11:01:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 52258 invoked by uid 48); 28 Sep 2016 11:01:22 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77772] Segmentation fault when running an application with gdb Date: Wed, 28 Sep 2016 11:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02308.txt.bz2 Content-length: 661 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77772 --- Comment #4 from Richard Biener --- This looks like a libc/loader issue to me. My source points at /* Initialize _r_debug if it has not already been done. The argument is the run-time load address of the dynamic linker, to be put in _r_debug.r_ldbase. Returns the address of _r_debug. */ struct r_debug * internal_function _dl_debug_initialize (ElfW(Addr) ldbase, Lmid_t ns) { struct r_debug *r; if (ns =3D=3D LM_ID_BASE) r =3D &_r_debug; else r =3D &GL(dl_ns)[ns]._ns_debug; if (r->r_map =3D=3D NULL || ldbase !=3D 0) and thus 'r' being NULL. >>From gcc-bugs-return-538694-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 11:12:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23589 invoked by alias); 28 Sep 2016 11:12:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23209 invoked by uid 48); 28 Sep 2016 11:12:40 -0000 From: "wdijkstr at arm dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/32650] Convert p+strlen(p) to strchr(p, '\0') if profitable Date: Wed, 28 Sep 2016 11:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: wdijkstr at arm dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02309.txt.bz2 Content-length: 531 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D32650 Wilco changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |wdijkstr at arm dot com --- Comment #2 from Wilco --- This is codesize optimization as strchr is significantly slower than strlen= - see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61056 which changes strc= hr into strlen. >>From gcc-bugs-return-538695-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 11:18:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35224 invoked by alias); 28 Sep 2016 11:18:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35071 invoked by uid 48); 28 Sep 2016 11:18:39 -0000 From: "antonio.poggiali at datalogic dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77772] Segmentation fault when running an application with gdb Date: Wed, 28 Sep 2016 11:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: antonio.poggiali at datalogic dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02310.txt.bz2 Content-length: 840 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77772 --- Comment #5 from Antonio Poggiali --- (In reply to Richard Biener from comment #4) > This looks like a libc/loader issue to me. My source points at >=20 > /* Initialize _r_debug if it has not already been done. The argument is > the run-time load address of the dynamic linker, to be put in > _r_debug.r_ldbase. Returns the address of _r_debug. */ >=20 > struct r_debug * > internal_function > _dl_debug_initialize (ElfW(Addr) ldbase, Lmid_t ns) > { > struct r_debug *r; >=20 > if (ns =3D=3D LM_ID_BASE) > r =3D &_r_debug; > else > r =3D &GL(dl_ns)[ns]._ns_debug; >=20 > if (r->r_map =3D=3D NULL || ldbase !=3D 0) >=20 > and thus 'r' being NULL. I confirm your analysis. My code (dl-debug.c) is the same of yours. >>From gcc-bugs-return-538696-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 11:45:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22222 invoked by alias); 28 Sep 2016 11:45:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 21176 invoked by uid 48); 28 Sep 2016 11:45:26 -0000 From: "coypu at sdf dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77774] New: Build failure on netbsd-7.0.1/arm6hf of gcc 6.2.0, 7-20160925 Date: Wed, 28 Sep 2016 11:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: coypu at sdf dot org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02311.txt.bz2 Content-length: 2068 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77774 Bug ID: 77774 Summary: Build failure on netbsd-7.0.1/arm6hf of gcc 6.2.0, 7-20160925 Product: gcc Version: 6.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: bootstrap Assignee: unassigned at gcc dot gnu.org Reporter: coypu at sdf dot org Target Milestone: --- Created attachment 39716 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39716&action=3Dedit Errors in the build Attached errors from the build. This is from an RPi1 (ARM1176JZF-S apparently) armed with a lot of swap. failing on things like: undefined reference to `arm_no_early_mul_dep(rtx_def*, rtx_def*)' If relevant, native compiler: $ gcc -v Using built-in specs. COLLECT_GCC=3Dgcc COLLECT_LTO_WRAPPER=3D/usr/libexec/lto-wrapper Target: armv6--netbsdelf-eabihf Configured with: /usr/7/src/tools/gcc/../../external/gpl3/gcc/dist/configure --target=3Darmv6--netbsdelf-eabihf --enable-long-long --enable-threads --with-bugurl=3Dhttp://www.NetBSD.org/Misc/send-pr.html --with-pkgversion= =3D'NetBSD nb2 20150115' --with-system-zlib --enable-__cxa_atexit --enable-libstdcxx-threads --enable-libstdcxx-time=3Drt --enable-lto --with-mpc-lib=3D/var/obj/mknative/evbarm-earmv6hf/usr/7/src/external/lgpl3= /mpc/lib/libmpc --with-mpfr-lib=3D/var/obj/mknative/evbarm-earmv6hf/usr/7/src/external/lgpl= 3/mpfr/lib/libmpfr --with-gmp-lib=3D/var/obj/mknative/evbarm-earmv6hf/usr/7/src/external/lgpl3= /gmp/lib/libgmp --with-mpc-include=3D/usr/7/src/external/lgpl3/mpc/dist/src --with-mpfr-include=3D/usr/7/src/external/lgpl3/mpfr/dist/src --with-gmp-include=3D/usr/7/src/external/lgpl3/gmp/lib/libgmp/arch/earmhf --enable-tls --enable-initfini-array --disable-multilib --disable-symvers --disable-libstdcxx-pch --build=3Dx86_64-unknown-netbsd6.0. --host=3Darmv6--netbsdelf-eabihf --with-sysroot=3D/var/obj/mknative/evbarm-earmv6hf/usr/7/src/destdir.evbarm Thread model: posix gcc version 4.8.4 (nb2 20150115) >>From gcc-bugs-return-538697-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:04:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 108585 invoked by alias); 28 Sep 2016 12:04:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 108325 invoked by uid 55); 28 Sep 2016 12:04:15 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Wed, 28 Sep 2016 12:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02312.txt.bz2 Content-length: 537 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #20 from Jonathan Wakely --- Author: redi Date: Wed Sep 28 12:03:43 2016 New Revision: 240571 URL: https://gcc.gnu.org/viewcvs?rev=3D240571&root=3Dgcc&view=3Drev Log: libstdc++/77686 use may_alias for std::function storage PR libstdc++/77686 * include/std/functional (_Any_data): Add may_alias attribute. Modified: branches/gcc-6-branch/libstdc++-v3/ChangeLog branches/gcc-6-branch/libstdc++-v3/include/std/functional >>From gcc-bugs-return-538698-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:06:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110373 invoked by alias); 28 Sep 2016 12:06:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 110234 invoked by uid 48); 28 Sep 2016 12:05:54 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Wed, 28 Sep 2016 12:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02313.txt.bz2 Content-length: 426 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #21 from Jonathan Wakely --- Fixed. >>From gcc-bugs-return-538699-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:08:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 113121 invoked by alias); 28 Sep 2016 12:08:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 112572 invoked by uid 55); 28 Sep 2016 12:08:01 -0000 From: "rguenther at suse dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Wed, 28 Sep 2016 12:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenther at suse dot de X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02314.txt.bz2 Content-length: 698 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #22 from rguenther at suse dot de --- On Wed, 28 Sep 2016, redi at gcc dot gnu.org wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 >=20 > Jonathan Wakely changed: >=20 > What |Removed |Added > -------------------------------------------------------------------------= --- > Status|NEW |RESOLVED > Resolution|--- |FIXED >=20 > --- Comment #21 from Jonathan Wakely --- > Fixed. The issue is latent on the GCC 5 branch as well I guess. >>From gcc-bugs-return-538700-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:12:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 6237 invoked by alias); 28 Sep 2016 12:12:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 5868 invoked by uid 55); 28 Sep 2016 12:12:29 -0000 From: "edlinger at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Wed, 28 Sep 2016 12:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: edlinger at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: bernd.edlinger at hotmail dot de X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02315.txt.bz2 Content-length: 485 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 --- Comment #24 from Bernd Edlinger --- Author: edlinger Date: Wed Sep 28 12:11:57 2016 New Revision: 240573 URL: https://gcc.gnu.org/viewcvs?rev=3D240573&root=3Dgcc&view=3Drev Log: 2016-09-28 Bernd Edlinger PR c++/77748 * g++.dg/pr77550.C: Avoid undefined behavior. Modified: trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/g++.dg/pr77550.C >>From gcc-bugs-return-538701-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:23:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 44920 invoked by alias); 28 Sep 2016 12:23:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 44742 invoked by uid 48); 28 Sep 2016 12:23:15 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77733] Add fixit hint suggesting to use std::move Date: Wed, 28 Sep 2016 12:23:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02316.txt.bz2 Content-length: 1948 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77733 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-28 Ever confirmed|0 |1 --- Comment #2 from Jonathan Wakely --- The location for the "cannot bind rvalue reference" error is not a rich location, so I couldn't figure out how to add a proper fix-it. This just adds "did you mean std::move(x)?" to the end: --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -6804,7 +6804,8 @@ convert_like_real (conversion *convs, tree expr, tree= fn, int argnum, if (TYPE_REF_IS_RVALUE (ref_type) && lvalue_p (expr)) error_at (loc, "cannot bind rvalue reference of type %qT to " - "lvalue of type %qT", totype, extype); + "lvalue of type %qT; did you mean %?", + totype, extype, expr); else if (!TYPE_REF_IS_RVALUE (ref_type) && !lvalue_p (expr) && !CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type)= )) error_at (loc, "cannot bind non-const lvalue reference of " Of course sometimes std::move is not the right fix, and it should be std::forward(x) instead. Maybe it would be possible to detect whether the expression is a function parameter declared as a forwarding reference, but that's probably beyond my ken. Also, if the lvalue is cv-qualified this still suggests std::move(x) even w= hen that wouldn't work: move2.cc:13:9: error: cannot bind rvalue reference of type =E2=80=98X&&=E2= =80=99 to lvalue of type =E2=80=98const X=E2=80=99; did you mean =E2=80=98std::move(x)=E2=80=99= ?=20 There's room for improvement. >>From gcc-bugs-return-538702-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:27:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 51042 invoked by alias); 28 Sep 2016 12:27:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 50740 invoked by uid 48); 28 Sep 2016 12:26:49 -0000 From: "rearnsha at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77774] Build failure on netbsd-7.0.1/arm6hf of gcc 6.2.0, 7-20160925 Date: Wed, 28 Sep 2016 12:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rearnsha at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02317.txt.bz2 Content-length: 759 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77774 Richard Earnshaw changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |WAITING Last reconfirmed| |2016-09-28 Ever confirmed|0 |1 --- Comment #1 from Richard Earnshaw --- This function is defined in aarch-common.c. It sounds like configure has probably failed to add that to the build list. A quick test on a cross build to that target does show aarch-common.o in EXTRA_OBJS in gcc/Makefile, so can you check to see if that is the same for you. >>From gcc-bugs-return-538703-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:30:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 58708 invoked by alias); 28 Sep 2016 12:30:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 58541 invoked by uid 48); 28 Sep 2016 12:30:38 -0000 From: "ktkachov at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77774] Build failure on netbsd-7.0.1/arm6hf of gcc 6.2.0, 7-20160925 Date: Wed, 28 Sep 2016 12:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ktkachov at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02318.txt.bz2 Content-length: 553 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77774 ktkachov at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ktkachov at gcc dot gnu.org --- Comment #2 from ktkachov at gcc dot gnu.org --- The configure target used here is armv6--netbsdelf-eabihf (note two dashes after armv6) aarch64-common.o is added to extra_objs in config.gcc for arm*-*-*. Would that catch armv6--netbsdelf-eabihf? >>From gcc-bugs-return-538704-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:33:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 62478 invoked by alias); 28 Sep 2016 12:33:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 62326 invoked by uid 48); 28 Sep 2016 12:32:54 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77707] [5/6/7 Regression] formatted direct access: nextrec off by one Date: Wed, 28 Sep 2016 12:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: priority bug_status cf_reconfirmed_on cf_known_to_work everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02319.txt.bz2 Content-length: 737 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77707 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P3 |P4 Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-28 Known to work|4.3.5 |4.3.6 Ever confirmed|0 |1 Known to fail| |4.4.7, 5.4.0, 6.2.0, 7.0 --- Comment #2 from Dominique d'Humieres --- Patch submitted at https://gcc.gnu.org/ml/fortran/2016-09/msg00172.html. >>From gcc-bugs-return-538705-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:33:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63628 invoked by alias); 28 Sep 2016 12:33:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 63525 invoked by uid 48); 28 Sep 2016 12:33:24 -0000 From: "ktkachov at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77774] Build failure on netbsd-7.0.1/arm6hf of gcc 6.2.0, 7-20160925 Date: Wed, 28 Sep 2016 12:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ktkachov at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02320.txt.bz2 Content-length: 350 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77774 --- Comment #3 from ktkachov at gcc dot gnu.org --- (In reply to ktkachov from comment #2) > The configure target used here is armv6--netbsdelf-eabihf (note two dashes > after armv6) >=20 > aarch64-common.o is added to extra_objs in config.gcc Of course I meant aarch-common.o. Muscle memory... >>From gcc-bugs-return-538706-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:35:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 65599 invoked by alias); 28 Sep 2016 12:35:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 65409 invoked by uid 48); 28 Sep 2016 12:34:54 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77775] New: [7 Regression] since r238559 Kdevelop gets miscompiled Date: Wed, 28 Sep 2016 12:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02321.txt.bz2 Content-length: 3019 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77775 Bug ID: 77775 Summary: [7 Regression] since r238559 Kdevelop gets miscompiled Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: trippels at gcc dot gnu.org CC: jason at gcc dot gnu.org Target Milestone: --- Created attachment 39717 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39717&action=3Dedit unreduced testcase Starting with r238559: commit 5157eff877f9491e7c0fc9231ac2b686983eaa41 Author: jason Date: Thu Jul 21 06:05:33 2016 +0000 PR c++/71121 - -Waddress, constexpr, and PMFs. * cp-gimplify.c (cp_fully_fold): First call maybe_constant_valu= e. Kdevelop gets miscompiled and crashes on startup. I've narrowed the issue to a single file. See the attachments. x4 sublime # diff -u good_ bad_ --- good_ 2016-09-28 12:37:52.508094930 +0200 +++ bad_ 2016-09-28 14:24:11.674668521 +0200 @@ -1016,7 +1016,7 @@ pushq %r13 pushq %r12 pushq %rbx - subq $376, %rsp + subq $216, %rsp .cfi_offset 15, -24 .cfi_offset 14, -32 .cfi_offset 13, -40 @@ -1337,19 +1337,15 @@ movq 8(%rax), %rax movq %rax, -72(%rbp) movq -72(%rbp), %rax - movq (%rax), %rdx - movq=20=20=20 _ZN7Sublime4Area9viewAddedEPNS_9AreaIndexEPNS_4ViewE@GOTPCREL(%rip), %rax - movq %rax, %r8 - movl $0, %r9d - movq %r8, %rax - cmpq %rax, %rdx + movq (%rax), %rax + testq %rax, %rax jne .L87 movq -72(%rbp), %rax movq 8(%rax), %rdx movq=20=20=20 _ZN7Sublime4Area9viewAddedEPNS_9AreaIndexEPNS_4ViewE@GOTPCREL(%rip), %rax - movq %rax, %r10 - movl $0, %r11d - movq %r11, %rax + movq %rax, %r8 + movl $0, %r9d + movq %r9, %rax cmpq %rax, %rdx je .L88 movq -72(%rbp), %rax @@ -1362,19 +1358,15 @@ jmp .L55 .L87: movq -72(%rbp), %rax - movq (%rax), %rdx - movq=20=20=20 _ZN7Sublime4Area17aboutToRemoveViewEPNS_9AreaIndexEPNS_4ViewE@GOTPCREL(%rip= ), %rax - movq %rax, %r12 - movl $0, %r13d - movq %r12, %rax - cmpq %rax, %rdx + movq (%rax), %rax + testq %rax, %rax jne .L89 movq -72(%rbp), %rax movq 8(%rax), %rdx movq=20=20=20 _ZN7Sublime4Area17aboutToRemoveViewEPNS_9AreaIndexEPNS_4ViewE@GOTPCREL(%rip= ), %rax - movq %rax, %r14 - movl $0, %r15d - movq %r15, %rax + movq %rax, %r10 + movl $0, %r11d + movq %r11, %rax cmpq %rax, %rdx je .L90 movq -72(%rbp), %rax ... >>From gcc-bugs-return-538707-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:35:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 66521 invoked by alias); 28 Sep 2016 12:35:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 66415 invoked by uid 48); 28 Sep 2016 12:35:27 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77775] [7 Regression] since r238559 Kdevelop gets miscompiled Date: Wed, 28 Sep 2016 12:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02322.txt.bz2 Content-length: 242 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77775 --- Comment #1 from Markus Trippelsdorf --- Created attachment 39718 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39718&action=3Dedit good assembly >>From gcc-bugs-return-538708-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:36:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 70001 invoked by alias); 28 Sep 2016 12:36:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 68119 invoked by uid 48); 28 Sep 2016 12:35:56 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77775] [7 Regression] since r238559 Kdevelop gets miscompiled Date: Wed, 28 Sep 2016 12:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02323.txt.bz2 Content-length: 241 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77775 --- Comment #2 from Markus Trippelsdorf --- Created attachment 39719 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39719&action=3Dedit bad assembly >>From gcc-bugs-return-538709-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:36:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 74407 invoked by alias); 28 Sep 2016 12:36:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 74332 invoked by uid 48); 28 Sep 2016 12:36:45 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77775] [7 Regression] since r238559 Kdevelop gets miscompiled Date: Wed, 28 Sep 2016 12:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02324.txt.bz2 Content-length: 168 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77775 --- Comment #3 from Markus Trippelsdorf --- g++ -O0 -fPIC -c moc_area.ii -S -o bad_ >>From gcc-bugs-return-538710-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:45:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 6145 invoked by alias); 28 Sep 2016 12:45:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 6056 invoked by uid 48); 28 Sep 2016 12:45:36 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77776] New: C++17 std::hypot implementation is poor Date: Wed, 28 Sep 2016 12:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02325.txt.bz2 Content-length: 550 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77776 Bug ID: 77776 Summary: C++17 std::hypot implementation is poor Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: redi at gcc dot gnu.org Target Milestone: --- Make it better. https://gcc.gnu.org/ml/gcc-patches/2016-09/msg02075.html https://gcc.gnu.org/ml/gcc-patches/2016-09/msg02120.html >>From gcc-bugs-return-538711-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:48:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 11934 invoked by alias); 28 Sep 2016 12:48:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 11605 invoked by uid 55); 28 Sep 2016 12:47:57 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77686] [6/7 Regression] wrong code on arm-linux-gnueabi and arm-linux-gnueabihf Date: Wed, 28 Sep 2016 12:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02326.txt.bz2 Content-length: 537 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77686 --- Comment #23 from Jonathan Wakely --- Author: redi Date: Wed Sep 28 12:47:24 2016 New Revision: 240574 URL: https://gcc.gnu.org/viewcvs?rev=3D240574&root=3Dgcc&view=3Drev Log: libstdc++/77686 use may_alias for std::function storage PR libstdc++/77686 * include/std/functional (_Any_data): Add may_alias attribute. Modified: branches/gcc-5-branch/libstdc++-v3/ChangeLog branches/gcc-5-branch/libstdc++-v3/include/std/functional >>From gcc-bugs-return-538712-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:49:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 14940 invoked by alias); 28 Sep 2016 12:49:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 14829 invoked by uid 55); 28 Sep 2016 12:48:49 -0000 From: "edlinger at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77411] object-size-9.c -fpic -m32 failure Date: Wed, 28 Sep 2016 12:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: patch X-Bugzilla-Severity: normal X-Bugzilla-Who: edlinger at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02327.txt.bz2 Content-length: 632 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77411 --- Comment #5 from Bernd Edlinger --- Author: edlinger Date: Wed Sep 28 12:48:16 2016 New Revision: 240575 URL: https://gcc.gnu.org/viewcvs?rev=3D240575&root=3Dgcc&view=3Drev Log: backport from mainline 2016-09-23 Bernd Edlinger Tom de Vries PR testsuite/77411 * c-c++-common/ubsan/object-size-9.c: Call __builtin_exit in C++. Modified: branches/gcc-5-branch/gcc/testsuite/ChangeLog branches/gcc-5-branch/gcc/testsuite/c-c++-common/ubsan/object-size-9.c >>From gcc-bugs-return-538713-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 12:54:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69061 invoked by alias); 28 Sep 2016 12:54:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 68915 invoked by uid 48); 28 Sep 2016 12:54:42 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77399] Poor code generation for vector casts and loads Date: Wed, 28 Sep 2016 12:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02328.txt.bz2 Content-length: 1376 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77399 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |rguenth at gcc dot = gnu.org --- Comment #10 from Richard Biener --- I have a patch handling same-size element conversions mixed with permutatio= ns. Thus in addition to the testcase in the description also typedef int v4si __attribute__((vector_size(16))); typedef float v4sf __attribute__((vector_size(16))); v4sf vec_cast(v4si f) { return (v4sf){f[1], f[1], f[2], f[3]}; } expanding to vec_cast: .LFB0: .cfi_startproc pshufd $229, %xmm0, %xmm0 cvtdq2ps %xmm0, %xmm0 ret Note this doesn't handle int <-> double conversions where on GIMPLE we'd ha= ve VEC_UNPACK_* VEC_PACK_* but I'm not sure those represent a good middle-end representation for optimizers (we should create/pattern match those late and only if the target supports the ops). vector construction from loads is another story (I think SLP vectorization should handle this and IIRC there is already a bug for this - CONSTRUCTORS supposed to be handled the same as grouped stores). >>From gcc-bugs-return-538715-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 13:08:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 108199 invoked by alias); 28 Sep 2016 13:08:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 108080 invoked by uid 48); 28 Sep 2016 13:08:42 -0000 From: "coypu at sdf dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77774] Build failure on netbsd-7.0.1/arm6hf of gcc 6.2.0, 7-20160925 Date: Wed, 28 Sep 2016 13:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: coypu at sdf dot org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02330.txt.bz2 Content-length: 201 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77774 --- Comment #4 from coypu --- indeed in EXTRAOBJS I only have netbsd.o I'll try to use arm*) instead, and will report back. >>From gcc-bugs-return-538714-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 13:08:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 107360 invoked by alias); 28 Sep 2016 13:08:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 107234 invoked by uid 48); 28 Sep 2016 13:08:20 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77777] New: Use rich location to mark correct expression for "invalid use of non-static member function" Date: Wed, 28 Sep 2016 13:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02329.txt.bz2 Content-length: 1015 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77777 Bug ID: 77777 Summary: Use rich location to mark correct expression for "invalid use of non-static member function" Product: gcc Version: 7.0 Status: UNCONFIRMED Keywords: diagnostic Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: redi at gcc dot gnu.org Target Milestone: --- There are lots of cases where we should use rich locations, but here's one = to start with: struct X { int f(); }; void g(int); int main() { X x; g( x.f ); } The error is: c.cc: In function =E2=80=98int main()=E2=80=99: c.cc:12:4: error: invalid use of non-static member function =E2=80=98int X:= :f()=E2=80=99; did you mean =E2=80=98x.X::f()=E2=80=99? ); ^ () c.cc:2:7: note: declared here int f(); ^ The location should point to x.f not the next token. >>From gcc-bugs-return-538716-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 13:11:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 112216 invoked by alias); 28 Sep 2016 13:11:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 112080 invoked by uid 48); 28 Sep 2016 13:11:25 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77711] Add fix-it hints for missing parentheses in member function call Date: Wed, 28 Sep 2016 13:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02331.txt.bz2 Content-length: 2316 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77711 --- Comment #3 from Jonathan Wakely --- With: --- a/gcc/cp/typeck.c +++ b/gcc/cp/typeck.c @@ -1823,6 +1823,7 @@ invalid_nonstatic_memfn_p (location_t loc, tree expr, tsubst_flags_t complain) /* Don't enforce this in MS mode. */ if (flag_ms_extensions) return false; + tree origexpr =3D expr; if (is_overloaded_fn (expr) && !really_overloaded_fn (expr)) expr =3D get_first_fn (expr); if (DECL_NONSTATIC_MEMBER_FUNCTION_P (expr)) @@ -1831,8 +1832,18 @@ invalid_nonstatic_memfn_p (location_t loc, tree expr, tsubst_flags_t complain) { if (DECL_P (expr)) { - error_at (loc, "invalid use of non-static member function %qD= ", - expr); + tree args =3D TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (expr))); + if (list_length (args) =3D=3D 1) + { + gcc_rich_location richloc (loc); + richloc.add_fixit_insert_before(loc, "()"); + error_at_rich_loc (&richloc, "invalid use of non-static " + "member function %qD; did you mean " + "%<%E()%>?", expr, origexpr); + } + else + error_at (loc, "invalid use of non-static member function %qD", + expr); inform (DECL_SOURCE_LOCATION (expr), "declared here"); } else the first example gives: call.cc: In function =E2=80=98int main()=E2=80=99: call.cc:19:14: error: invalid use of non-static member function =E2=80=98in= t A::foo()=E2=80=99; did you mean =E2=80=98a.A::foo()=E2=80=99? bar( a.foo ); ^ () call.cc:2:7: note: declared here int foo(); ^~~ Which is OK, but not great. It should say a.foo() not a.A::foo(). The fixit is correct, but it would be better if we had a rich_location cove= ring a.foo rather than a non-rich one pointing to the next token (PR77777). In t= his specific example inserting () at the suggested location would match the GNU coding standards (with a space before the parentheses) but nobody writes C++ like that, and it's not correct if there's any more whitespace before the n= ext token. >>From gcc-bugs-return-538717-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 13:14:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 120923 invoked by alias); 28 Sep 2016 13:14:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 120659 invoked by uid 48); 28 Sep 2016 13:14:36 -0000 From: "dmalcolm at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77733] Add fixit hint suggesting to use std::move Date: Wed, 28 Sep 2016 13:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: dmalcolm at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02332.txt.bz2 Content-length: 3384 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77733 David Malcolm changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dmalcolm at gcc dot gnu.org --- Comment #3 from David Malcolm --- (In reply to Jonathan Wakely from comment #2) > The location for the "cannot bind rvalue reference" error is not a rich > location, so I couldn't figure out how to add a proper fix-it. It's trivial to get a rich_location from a location_t: rich_location richloc (loc); // maybe add some fixits to richloc here... error_at_rich_loc (&richloc, "cannot bind..." etc etc An issue here is that "loc" isn't a good enough location_t: in convert_like_real it comes from: location_t loc =3D EXPR_LOC_OR_LOC (expr, input_location); In the example, expr is a VAR_DECL and uses of decls don't have locations, = so it uses input_location for "loc", putting it on the closing paren of the ca= ll: /tmp/test.cc: In function =E2=80=98int main()=E2=80=99: /tmp/test.cc:14:10: error: cannot bind rvalue reference of type =E2=80=98X&= &=E2=80=99 to lvalue of type =E2=80=98X=E2=80=99 y.foo(x); ^ If loc had a meaningful location for x, you could use something like,: richloc.add_fixit_insert_before (loc, "std::move ("); richloc.add_fixit_insert_after (loc, ")"); The "not every expression has a location_t" is PR 43486 - maybe this should= be a dependency of that bug? (unless there's some way to ensure that all calle= rs of convert_like_real preserve the location information from the cp_expr in = the C++ parser). (I've been experimenting with ideas for fixing PR 43486, but it's unlikely = to make it for gcc 7). > This just adds "did you mean std::move(x)?" to the end: >=20 > --- a/gcc/cp/call.c > +++ b/gcc/cp/call.c > @@ -6804,7 +6804,8 @@ convert_like_real (conversion *convs, tree expr, tr= ee > fn, int argnum, > if (TYPE_REF_IS_RVALUE (ref_type) > && lvalue_p (expr)) > error_at (loc, "cannot bind rvalue reference of type %qT to= " > - "lvalue of type %qT", totype, extype); > + "lvalue of type %qT; did you mean > %?", > + totype, extype, expr); > else if (!TYPE_REF_IS_RVALUE (ref_type) && !lvalue_p (expr) > && !CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_typ= e))) > error_at (loc, "cannot bind non-const lvalue reference of " FWIW, I'm not sure we want to add uses of %E to the compiler; my recollecti= on is that it can lead to poor output for the more complicated cases. > Of course sometimes std::move is not the right fix, and it should be > std::forward(x) instead. Maybe it would be possible to detect > whether the expression is a function parameter declared as a forwarding > reference, but that's probably beyond my ken. > Also, if the lvalue is cv-qualified this still suggests std::move(x) even > when that wouldn't work: >=20 > move2.cc:13:9: error: cannot bind rvalue reference of type =E2=80=98X&&= =E2=80=99 to lvalue > of type =E2=80=98const X=E2=80=99; did you mean =E2=80=98std::move(x)=E2= =80=99?=20 >=20 >=20 > There's room for improvement. (nods) >>From gcc-bugs-return-538718-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 13:19:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125244 invoked by alias); 28 Sep 2016 13:19:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125145 invoked by uid 48); 28 Sep 2016 13:19:08 -0000 From: "dmalcolm at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77733] Add fixit hint suggesting to use std::move Date: Wed, 28 Sep 2016 13:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: dmalcolm at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02333.txt.bz2 Content-length: 318 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77733 --- Comment #4 from David Malcolm --- (In reply to Jonathan Wakely from comment #1) > As well as a fixit hint suggesting to use std::move it might be useful to > display the "" text in colour so it stands out. Good idea. >>From gcc-bugs-return-538719-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 13:19:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 126394 invoked by alias); 28 Sep 2016 13:19:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126033 invoked by uid 48); 28 Sep 2016 13:19:34 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77711] Add fix-it hints for missing parentheses in member function call Date: Wed, 28 Sep 2016 13:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02334.txt.bz2 Content-length: 483 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77711 --- Comment #4 from Jonathan Wakely --- Ideally we'd look to see if a.foo() would return a type that would make the call bar( a.foo() ) valid, and not suggest it otherwise (there's no point suggesting it if a.foo() returns void, for example). And we could also look to see if bar( &A::foo ) would be valid, and suggest that if so. Sometimes either would be valid, e.g. template void bar(T). >>From gcc-bugs-return-538720-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 13:24:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4817 invoked by alias); 28 Sep 2016 13:24:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4575 invoked by uid 48); 28 Sep 2016 13:24:15 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77407] Optimize integer i / abs (i) into the sign of i Date: Wed, 28 Sep 2016 13:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02335.txt.bz2 Content-length: 383 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77407 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |rguenth at gcc dot = gnu.org >>From gcc-bugs-return-538721-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 13:24:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 5736 invoked by alias); 28 Sep 2016 13:24:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 5624 invoked by uid 48); 28 Sep 2016 13:24:51 -0000 From: "thopre01 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/77710] FAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-4.c Date: Wed, 28 Sep 2016 13:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: thopre01 at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02336.txt.bz2 Content-length: 2802 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77710 --- Comment #4 from Thomas Preud'homme --- (In reply to Martin Sebor from comment #3) > With GCC 7.0.0 20160927 configured with --build=3Dx86_64-pc-linux-gnu > --host=3Dx86_64-pc-linux-gnu --target=3Darm-none-eabi I get the expected = output > (below). I see failures in other tests in the results reported for > arm-unknown-linux-gnueabihf below but none in the builtin-sprintf-warn-4.c > test: > https://gcc.gnu.org/ml/gcc-testresults/2016-09/msg02201.html >=20 > Can you please check again? >=20 > /src/gcc/trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:10:= 24: > warning: writing a terminating nul past the end of the destination > [-Wformat-length=3D] > sprintf (dst + 7, "%-s", "1"); > ~~^~ > /src/gcc/trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:10:= 3: > note: format output 2 bytes into a destination of size 1 > sprintf (dst + 7, "%-s", "1"); > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > /src/gcc/trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:22:= 22: > warning: '%-s' directive writing 4 bytes into a region of size 1 > [-Wformat-length=3D] > sprintf (dst + 7, "%-s", "abcd"); > ^~~ ~~~~~~ > /src/gcc/trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:22:= 3: > note: format output 5 bytes into a destination of size 1 > sprintf (dst + 7, "%-s", "abcd"); > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ At r240573 I still get: % build/gcc/xgcc -v Using built-in specs. COLLECT_GCC=3Dbuild/gcc/xgcc Target: arm-none-eabi Configured with: src/configure --prefix=3Dinstall --target=3Darm-none-eabi --enable-languages=3Dc,c++ --with-cpu=3Dcortex-m0 --with-mode=3Dthumb --wit= h-newlib --with-headers=3Dsrc/newlib/libc/include --enable-newlib-register-fini --disable-newlib-supplied-syscalls --disable-multilib --with-libexpat --with-system-zlib --disable-gdbtk --enable-plugins --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-rda --disable-sid --disable= -tui --disable-utils --disable-werror --disable-fixed-point=20 Thread model: single gcc version 7.0.0 20160928 (experimental) (GCC) % grep -A 2 FAIL build/gcc/testsuite/gcc/gcc.logFAIL: gcc.dg/tree-ssa/builtin-sprintf-warn-4.c (test for excess errors) Excess errors: src/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-4.c:10:24: warning: writing a terminating nul past the end of the destination [-Wformat-length=3D]src/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-= 4.c:22:22: warning: '%-s' directive writing 4 bytes into a region of size 1 [-Wformat-length=3D] I'll try to investigate myself since it is difficult to reproduce it for yo= u. Best regards, Thomas >>From gcc-bugs-return-538722-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 13:25:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 8629 invoked by alias); 28 Sep 2016 13:25:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 8503 invoked by uid 48); 28 Sep 2016 13:25:42 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77764] ICE in is_anonymous_component, at fortran/interface.c:450 Date: Wed, 28 Sep 2016 13:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02337.txt.bz2 Content-length: 570 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77764 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-28 CC| |foreese at gcc dot gnu.org Ever confirmed|0 |1 --- Comment #1 from Dominique d'Humieres --- Confirmed. >>From gcc-bugs-return-538723-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 13:47:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 65377 invoked by alias); 28 Sep 2016 13:47:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 65190 invoked by uid 48); 28 Sep 2016 13:46:57 -0000 From: "rearnsha at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77774] Build failure on netbsd-7.0.1/arm6hf of gcc 6.2.0, 7-20160925 Date: Wed, 28 Sep 2016 13:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rearnsha at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02338.txt.bz2 Content-length: 413 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77774 --- Comment #5 from Richard Earnshaw --- (In reply to coypu from comment #4) > indeed in EXTRAOBJS I only have netbsd.o > I'll try to use arm*) instead, and will report back. netbsd.o (and netbsd.c) don't appear to exist or be referenced anywhere in = the gcc-6 sources. I suspect this is a bug in some local changes you have. >>From gcc-bugs-return-538724-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 13:48:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76383 invoked by alias); 28 Sep 2016 13:48:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 76181 invoked by uid 48); 28 Sep 2016 13:48:43 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/72712] [7 Regression] Tenfold compile time regression Date: Wed, 28 Sep 2016 13:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: compile-time-hog X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02339.txt.bz2 Content-length: 705 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D72712 --- Comment #5 from Richard Biener --- Now that we have another (early) pass things should be even worse. Current trunk at -O2 with -fno-checking improved though (I guess by means of a cost model or so): phase opt and generate : 69.39 (99%) usr 0.98 (98%) sys 72.38 (99%) w= all=20 289872 kB (97%) ggc tree SSA incremental : 16.94 (24%) usr 0.00 ( 0%) sys 17.36 (24%) w= all=20 13582 kB ( 5%) ggc backwards jump threading: 5.04 ( 7%) usr 0.00 ( 0%) sys 5.20 ( 7%) w= all=20 115843 kB (39%) ggc PRE : 18.37 (26%) usr 0.25 (25%) sys 19.13 (26%) w= all=20 270 kB ( 0%) ggc >>From gcc-bugs-return-538725-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 13:50:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 90368 invoked by alias); 28 Sep 2016 13:50:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 90180 invoked by uid 48); 28 Sep 2016 13:50:28 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77775] [7 Regression] since r238559 Kdevelop gets miscompiled Date: Wed, 28 Sep 2016 13:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02340.txt.bz2 Content-length: 353 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77775 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |wrong-code Target Milestone|--- |7.0 >>From gcc-bugs-return-538726-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 14:04:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 116724 invoked by alias); 28 Sep 2016 14:04:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116559 invoked by uid 48); 28 Sep 2016 14:03:55 -0000 From: "coypu at sdf dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77774] Build failure on netbsd-7.0.1/arm6hf of gcc 6.2.0, 7-20160925 Date: Wed, 28 Sep 2016 14:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: coypu at sdf dot org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02341.txt.bz2 Content-length: 183 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77774 --- Comment #6 from coypu --- It is a local change bug! thanks. I'll let you know if the build completes. >>From gcc-bugs-return-538727-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 14:06:15 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 120570 invoked by alias); 28 Sep 2016 14:06:15 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 119698 invoked by uid 48); 28 Sep 2016 14:06:02 -0000 From: "rearnsha at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77774] Build failure on netbsd-7.0.1/arm6hf of gcc 6.2.0, 7-20160925 Date: Wed, 28 Sep 2016 14:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rearnsha at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02342.txt.bz2 Content-length: 468 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77774 Richard Earnshaw changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |INVALID --- Comment #7 from Richard Earnshaw --- OK. Resolving this issue as invalid. >>From gcc-bugs-return-538728-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 14:09:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127921 invoked by alias); 28 Sep 2016 14:09:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127750 invoked by uid 48); 28 Sep 2016 14:09:28 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/55152] MAX_EXPR(a,-a) is really ABS_EXPR(a) Date: Wed, 28 Sep 2016 14:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 4.8.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02343.txt.bz2 Content-length: 469 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D55152 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |rguenth at gcc dot = gnu.org --- Comment #6 from Richard Biener --- Testing a patch. >>From gcc-bugs-return-538729-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 14:29:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22523 invoked by alias); 28 Sep 2016 14:29:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22393 invoked by uid 48); 28 Sep 2016 14:29:35 -0000 From: "dmalcolm at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77777] Use rich location to mark correct expression for "invalid use of non-static member function" Date: Wed, 28 Sep 2016 14:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: dmalcolm at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02344.txt.bz2 Content-length: 536 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77777 David Malcolm changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dmalcolm at gcc dot gnu.org --- Comment #1 from David Malcolm --- (In reply to Jonathan Wakely from comment #0) > There are lots of cases where we should use rich locations, but here's one Do you mean a fix-it hint? >>From gcc-bugs-return-538730-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 14:41:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 113377 invoked by alias); 28 Sep 2016 14:41:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 111928 invoked by uid 48); 28 Sep 2016 14:41:38 -0000 From: "chengniansun at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77778] New: ICE at -Os and above on x86_64-linux-gnu in both 32-bit and 64-bit modes (Segmentation fault, visit_reference_op_store, extract_and_process_scc_for_name) Date: Wed, 28 Sep 2016 14:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: chengniansun at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02345.txt.bz2 Content-length: 2552 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77778 Bug ID: 77778 Summary: ICE at -Os and above on x86_64-linux-gnu in both 32-bit and 64-bit modes (Segmentation fault, visit_reference_op_store, extract_and_process_scc_for_name) Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: chengniansun at gmail dot com Target Milestone: --- $ gcc-trunk -v Using built-in specs. COLLECT_GCC=3Dgcc-trunk COLLECT_LTO_WRAPPER=3D/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/= 7.0.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: ../gcc-source-trunk/configure --enable-languages=3Dc,c++,l= to --prefix=3D/usr/local/gcc-trunk --disable-bootstrap Thread model: posix gcc version 7.0.0 20160928 (experimental) [trunk revision 240565] (GCC)=20 $=20 $ gcc-trunk -O3 small.c=20 small.c: In function =E2=80=98main=E2=80=99: small.c:5:5: warning: assignment discards =E2=80=98const=E2=80=99 qualifier= from pointer target type [-Wdiscarded-qualifiers] c =3D &a; ^ small.c:4:5: internal compiler error: Segmentation fault int main() { ^~~~ 0xbd143f crash_signal ../../gcc-source-trunk/gcc/toplev.c:337 0xda517d visit_reference_op_store ../../gcc-source-trunk/gcc/tree-ssa-sccvn.c:3613 0xda517d visit_use ../../gcc-source-trunk/gcc/tree-ssa-sccvn.c:3858 0xda675c process_scc ../../gcc-source-trunk/gcc/tree-ssa-sccvn.c:4111 0xda675c extract_and_process_scc_for_name ../../gcc-source-trunk/gcc/tree-ssa-sccvn.c:4198 0xda675c DFS ../../gcc-source-trunk/gcc/tree-ssa-sccvn.c:4250 0xda6e55 sccvn_dom_walker::before_dom_children(basic_block_def*) ../../gcc-source-trunk/gcc/tree-ssa-sccvn.c:4716 0x128aed7 dom_walker::walk(basic_block_def*) ../../gcc-source-trunk/gcc/domwalk.c:265 0xda8532 run_scc_vn(vn_lookup_kind) ../../gcc-source-trunk/gcc/tree-ssa-sccvn.c:4827 0xd7d345 execute ../../gcc-source-trunk/gcc/tree-ssa-pre.c:5021 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See for instructions. $=20 $ cat small.c static const int a; int b; int *c, *d; int main() { c =3D &a; c =3D=3D d ?: __builtin_abort();=20 for (; b; b++ >=3D (*d =3D a)) ; return 0; } $ >>From gcc-bugs-return-538732-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 14:55:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69305 invoked by alias); 28 Sep 2016 14:55:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 68702 invoked by uid 48); 28 Sep 2016 14:54:57 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77778] ICE at -Os and above on x86_64-linux-gnu in both 32-bit and 64-bit modes (Segmentation fault, visit_reference_op_store, extract_and_process_scc_for_name) Date: Wed, 28 Sep 2016 14:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02347.txt.bz2 Content-length: 582 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77778 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED CC| |trippels at gcc dot gnu.org Resolution|--- |DUPLICATE --- Comment #1 from Markus Trippelsdorf --- dup. *** This bug has been marked as a duplicate of bug 77768 *** >>From gcc-bugs-return-538731-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 14:55:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69293 invoked by alias); 28 Sep 2016 14:55:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 68732 invoked by uid 48); 28 Sep 2016 14:54:58 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Wed, 28 Sep 2016 14:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: lto X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02346.txt.bz2 Content-length: 464 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |chengniansun at gmail dot = com --- Comment #7 from Markus Trippelsdorf --- *** Bug 77778 has been marked as a duplicate of this bug. *** >>From gcc-bugs-return-538733-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 15:01:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 87913 invoked by alias); 28 Sep 2016 15:01:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 87808 invoked by uid 48); 28 Sep 2016 15:01:07 -0000 From: "jfc at mit dot edu" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77779] New: unnecessary trap checks for pointer subtraction with -ftrapv Date: Wed, 28 Sep 2016 15:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 5.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: jfc at mit dot edu X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02348.txt.bz2 Content-length: 1742 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77779 Bug ID: 77779 Summary: unnecessary trap checks for pointer subtraction with -ftrapv Product: gcc Version: 5.4.1 Status: UNCONFIRMED Severity: minor Priority: P3 Component: middle-end Assignee: unassigned at gcc dot gnu.org Reporter: jfc at mit dot edu Target Milestone: --- Consider this code: long diff(long *a, long *b) { return (a - b) + (a - b); } Compiled with gcc -O2 -ftrapv on x86-64 the resulting code is diff: .LFB0: .cfi_startproc subq $8, %rsp .cfi_def_cfa_offset 16 call __subvdi3 sarq $3, %rax movq %rax, %rdi movq %rax, %rsi call __addvdi3 addq $8, %rsp .cfi_def_cfa_offset 8 ret .cfi_endproc .LFE0: .size diff, .-diff There are two problems here -- not bugs, but suboptimal code. 1. Pointer subtraction of sizes larger than 2 bytes should not generate a trapping subtract. In the usual case where pointers and ptrdiff_t are the = same size, the result will fit in a ptrdiff_t. 2. The addition can not overflow. In general, x/A + y/B with A and B both greater than 2 will not overflow. (This might not be worth fixing, but I t= hink the previous problem is.) I contrived this C example after seeing the first problem in C++. The real code is a call to std::vector::size() with type T 4 bytes or larger. size() can't overflow, but g++ inserts a ca= ll to __subvdi3 anyway. On Linux+ELF this results in a dynamic linker operati= on. This is in 5.2 and 5.4.1 20160926. I have not checked gcc 6+. >>From gcc-bugs-return-538734-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 15:06:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 117588 invoked by alias); 28 Sep 2016 15:06:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 117425 invoked by uid 48); 28 Sep 2016 15:06:01 -0000 From: "dje at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77780] New: Go front-end ignores NO_DOLLAR_IN_LABEL Date: Wed, 28 Sep 2016 15:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dje at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcctarget Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02349.txt.bz2 Content-length: 720 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77780 Bug ID: 77780 Summary: Go front-end ignores NO_DOLLAR_IN_LABEL Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: go Assignee: ian at airs dot com Reporter: dje at gcc dot gnu.org CC: cmang at google dot com Target Milestone: --- Target: powerpc-ibm-aix* The Go front-end uses '$' as a joiner and creates symbols such as internal_race.Acquire$descriptor. This is invalid on some targets. The Go front-end ignores the NO_DOLLAR_IN_LABEL macro and generates identifiers containing dollar signs. >>From gcc-bugs-return-538735-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 15:06:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 118497 invoked by alias); 28 Sep 2016 15:06:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 118359 invoked by uid 48); 28 Sep 2016 15:06:31 -0000 From: "dje at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77780] Go front-end ignores NO_DOLLAR_IN_LABEL Date: Wed, 28 Sep 2016 15:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dje at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02350.txt.bz2 Content-length: 551 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77780 David Edelsohn changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-28 CC| |tony.reix at atos dot net Ever confirmed|0 |1 --- Comment #1 from David Edelsohn --- Confirmed. >>From gcc-bugs-return-538736-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 15:09:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 129312 invoked by alias); 28 Sep 2016 15:09:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 128999 invoked by uid 48); 28 Sep 2016 15:08:51 -0000 From: "acsawdey at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77718] [7 Regression] expand_builtin_memcmp swaps args Date: Wed, 28 Sep 2016 15:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: acsawdey at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02351.txt.bz2 Content-length: 252 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77718 --- Comment #6 from acsawdey at gcc dot gnu.org --- I can confirm that Bernd's patch fixes the issue, bootstraps on powerpc64le, and does not cause any new regression test failures in "make check". >>From gcc-bugs-return-538737-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 15:12:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22203 invoked by alias); 28 Sep 2016 15:12:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22040 invoked by uid 48); 28 Sep 2016 15:12:28 -0000 From: "jonathan.ross at imc dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/71767] Endless stream of warnings when using GCC with -Wa,-q and Clang Integrated Assembler Date: Wed, 28 Sep 2016 15:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: assemble-failure X-Bugzilla-Severity: minor X-Bugzilla-Who: jonathan.ross at imc dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: iains at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02352.txt.bz2 Content-length: 730 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71767 Jonathan Ross changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.ross at imc dot c= om --- Comment #26 from Jonathan Ross --- (In reply to Iain Sandoe from comment #23) > (In reply to Francois-Xavier Coudert from comment #22) > > When a fix is designed, could you please backport it to the 6 branch (s= o it > > can make it into 6.3 for example)? It is also affected. >=20 > sure, "all open branches" would be the intent. I can confirm that 5.3 is also affected. >>From gcc-bugs-return-538738-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 15:12:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22626 invoked by alias); 28 Sep 2016 15:12:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22118 invoked by uid 48); 28 Sep 2016 15:12:32 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77385] "Unclassifiable statement" from gfortran Date: Wed, 28 Sep 2016 15:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02353.txt.bz2 Content-length: 2252 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77385 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-28 Ever confirmed|0 |1 --- Comment #1 from Dominique d'Humieres --- Confirmed from 4.7 up to trunk (7.0), Polymorphic arrays are not yet suppor= ted on 4.6. Note that the following variant MODULE a IMPLICIT NONE TYPE :: b CONTAINS PROCEDURE :: e END TYPE b TYPE :: c CLASS(b), POINTER :: i(:) =3D> NULL() END TYPE c CONTAINS FUNCTION e(this ) RESULT (s) CLASS(b) :: this TYPE(b) :: s s =3D b() END FUNCTION e END MODULE a MODULE m USE a IMPLICIT NONE TYPE d CLASS(b), DIMENSION(:), POINTER :: f =3D> NULL() END TYPE d CONTAINS FUNCTION g() RESULT (h) TYPE(d) :: j TYPE(c) :: h allocate(j%f(1)) print *, shape(j%f) ASSOCIATE( k =3D> j%f ) END ASSOCIATE END FUNCTION g END MODULE m use m type(c) :: res res =3D g() end gives ASSOCIATE( k =3D> j%f ) internal compiler error: Segmentation fault: 11 and MODULE a IMPLICIT NONE TYPE :: b CONTAINS PROCEDURE :: e END TYPE b TYPE :: c CLASS(b), POINTER :: i(:) =3D> NULL() END TYPE c CONTAINS FUNCTION e(this ) RESULT (s) CLASS(b) :: this TYPE(b) :: s s =3D b() END FUNCTION e END MODULE a MODULE m USE a IMPLICIT NONE TYPE d CLASS(b), DIMENSION(:), POINTER :: f =3D> NULL() END TYPE d CONTAINS FUNCTION g() RESULT (h) TYPE(d) :: j TYPE(c) :: h ALLOCATE(h%i(1)) allocate(j%f(1)) SELECT TYPE ( l =3D> h%i ) TYPE IS ( b ) l(1) =3D j*f(1)%e() END SELECT END FUNCTION g END MODULE m gives l(1) =3D j*f(1)%e() 1 Error: Symbol 'f' at (1) has no IMPLICIT type >>From gcc-bugs-return-538739-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 15:33:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 96119 invoked by alias); 28 Sep 2016 15:33:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 95999 invoked by uid 48); 28 Sep 2016 15:33:40 -0000 From: "iains at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/71767] Endless stream of warnings when using GCC with -Wa,-q and Clang Integrated Assembler Date: Wed, 28 Sep 2016 15:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: assemble-failure X-Bugzilla-Severity: minor X-Bugzilla-Who: iains at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: iains at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02354.txt.bz2 Content-length: 1097 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71767 --- Comment #27 from Iain Sandoe --- (In reply to Jonathan Ross from comment #26) > (In reply to Iain Sandoe from comment #23) > > (In reply to Francois-Xavier Coudert from comment #22) > > > When a fix is designed, could you please backport it to the 6 branch = (so it > > > can make it into 6.3 for example)? It is also affected. > >=20 > > sure, "all open branches" would be the intent. >=20 > I can confirm that 5.3 is also affected. OK. so the status is - we're checking for other test-cases that need amendment. - IMO this is a sufficiently invasive change that it needs testing on some bigger chunks of code - likewise across a representative set of the *darwin* patch * I will check ppc-d9 when I'm back in the office; with both ld-85.2.1 a= nd my back ported ld64-253.9 * I think Dominique will check x86_64-d10. feel free to volunteer to do some similar testing of builds of larger codes (e.g. python or LLVM etc). * I'll do back-ports for 6.x and 5.x early next week, traveling until then. >>From gcc-bugs-return-538740-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:02:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 54947 invoked by alias); 28 Sep 2016 16:02:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 54810 invoked by uid 55); 28 Sep 2016 16:02:38 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77753] [7 Regression] broken profiledbootstrap due to -Werror=format-length in varasm.c:1573 Date: Wed, 28 Sep 2016 16:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02355.txt.bz2 Content-length: 506 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77753 --- Comment #3 from Martin Sebor --- Author: msebor Date: Wed Sep 28 16:02:06 2016 New Revision: 240581 URL: https://gcc.gnu.org/viewcvs?rev=3D240581&root=3Dgcc&view=3Drev Log: PR bootstrap/77753 - [7 Regression] broken profiledbootstrap due to gcc/ChangeLog: PR bootstrap/77753 * varasm.c (assemble_addr_to_section): Increase local buffer size. Modified: trunk/gcc/ChangeLog trunk/gcc/varasm.c >>From gcc-bugs-return-538741-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:10:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 79864 invoked by alias); 28 Sep 2016 16:10:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 78450 invoked by uid 48); 28 Sep 2016 16:09:50 -0000 From: "ville.voutilainen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77781] New: [DR 1315] Date: Wed, 28 Sep 2016 16:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ville.voutilainen at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02356.txt.bz2 Content-length: 393 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77781 Bug ID: 77781 Summary: [DR 1315] Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: ville.voutilainen at gmail dot com Target Milestone: --- >>From gcc-bugs-return-538742-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:12:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110455 invoked by alias); 28 Sep 2016 16:12:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 110222 invoked by uid 55); 28 Sep 2016 16:12:16 -0000 From: "jsm28 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcc/77519] [5/6 Regression] complex multiply excess precision handling inverted Date: Wed, 28 Sep 2016 16:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcc X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: jsm28 at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02357.txt.bz2 Content-length: 1747 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77519 --- Comment #4 from Joseph S. Myers --- Author: jsm28 Date: Wed Sep 28 16:11:44 2016 New Revision: 240582 URL: https://gcc.gnu.org/viewcvs?rev=3D240582&root=3Dgcc&view=3Drev Log: Correct libgcc complex multiply excess precision handling (PR libgcc/77519). libgcc complex multiply is meant to eliminate excess precision from certain internal values by forcing them to memory in exactly those cases where the type has excess precision. But in https://gcc.gnu.org/ml/gcc-patches/2014-09/msg01894.html I accidentally inverted the logic so that values get forced to memory in exactly the cases where it's not needed. (This is a pessimization in the no-excess-precision case, in principle could lead to bad results depending on code generation in the excess-precision case. Note: I do not have a test demonstrating bad results.) Bootstrapped with no regressions on x86_64-pc-linux-gnu. Code size went down on x86_64 as expected; old sizes: text data bss dec hex filename 887 0 0 887 377 _muldc3.o 810 0 0 810 32a _mulsc3.o 2032 0 0 2032 7f0 _multc3.o 983 0 0 983 3d7 _mulxc3.o New sizes: 847 0 0 847 34f _muldc3.o 770 0 0 770 302 _mulsc3.o 2032 0 0 2032 7f0 _multc3.o 951 0 0 951 3b7 _mulxc3.o Backport from mainline 2016-09-07 Joseph Myers PR libgcc/77519 * libgcc2.c (NOTRUNC): Invert settings. Modified: branches/gcc-6-branch/libgcc/ChangeLog branches/gcc-6-branch/libgcc/libgcc2.c >>From gcc-bugs-return-538743-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:12:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 111412 invoked by alias); 28 Sep 2016 16:12:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 111265 invoked by uid 48); 28 Sep 2016 16:12:45 -0000 From: "ville.voutilainen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77781] [DR 1315] Some valid cases of partial specialization not accepted Date: Wed, 28 Sep 2016 16:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: ville.voutilainen at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02358.txt.bz2 Content-length: 1026 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77781 Ville Voutilainen changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |rejects-valid CC| |jason at redhat dot com Summary|[DR 1315] |[DR 1315] Some valid cases | |of partial specialization | |not accepted --- Comment #1 from Ville Voutilainen = --- gcc rejects the following, clang accepts it: template struct S; template struct S{}; both gcc and clang reject this: template struct S; template struct S{}; gcc accepts the following, clang rejects it: template struct S; template struct S{}; >>From gcc-bugs-return-538745-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:13:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 114072 invoked by alias); 28 Sep 2016 16:13:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 113852 invoked by uid 55); 28 Sep 2016 16:13:45 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77683] [7 regression] ICE on %lf directive in format_floating in gimple-ssa-sprintf.c:1163 Date: Wed, 28 Sep 2016 16:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02360.txt.bz2 Content-length: 899 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77683 --- Comment #3 from Martin Sebor --- Author: msebor Date: Wed Sep 28 16:13:12 2016 New Revision: 240583 URL: https://gcc.gnu.org/viewcvs?rev=3D240583&root=3Dgcc&view=3Drev Log: PR middle-end/77683 - ICE on %lf directive in format_floating in gcc/testsuite/ChangeLog: PR middle-end/77683 * gcc.dg/tree-ssa/builtin-sprintf-warn-1.c: Add test cases. gcc/ChangeLog: PR middle-end/77683 * gimple-ssa-sprintf.c (format_integer): Fail gracefully when length modifier is not expected. (format_floating): Ignore l length modifier and fail gracefuly when it isn't one of the other expected ones. Modified: trunk/gcc/ChangeLog trunk/gcc/gimple-ssa-sprintf.c trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-1.c >>From gcc-bugs-return-538744-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:13:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 112935 invoked by alias); 28 Sep 2016 16:13:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 112576 invoked by uid 48); 28 Sep 2016 16:13:09 -0000 From: "jsm28 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcc/77519] [5 Regression] complex multiply excess precision handling inverted Date: Wed, 28 Sep 2016 16:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcc X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: jsm28 at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02359.txt.bz2 Content-length: 552 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77519 Joseph S. Myers changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[5/6 Regression] complex |[5 Regression] complex |multiply excess precision |multiply excess precision |handling inverted |handling inverted --- Comment #5 from Joseph S. Myers --- Now fixed for GCC 6.3 as well. >>From gcc-bugs-return-538746-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:16:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 122775 invoked by alias); 28 Sep 2016 16:16:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 122523 invoked by uid 48); 28 Sep 2016 16:16:29 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77683] [7 regression] ICE on %lf directive in format_floating in gimple-ssa-sprintf.c:1163 Date: Wed, 28 Sep 2016 16:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02361.txt.bz2 Content-length: 434 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77683 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #4 from Martin Sebor --- Fixed by r240583. >>From gcc-bugs-return-538747-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:25:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 12951 invoked by alias); 28 Sep 2016 16:25:03 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 11354 invoked by uid 48); 28 Sep 2016 16:24:51 -0000 From: "daniel.gutson at intel dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/69976] Zero the local stack on function exit Date: Wed, 28 Sep 2016 16:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: daniel.gutson at intel dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: andres.tiraboschi at tallertechnologies dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02362.txt.bz2 Content-length: 146 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D69976 --- Comment #11 from Daniel Gutson --- Any update on this? >>From gcc-bugs-return-538748-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:25:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 14056 invoked by alias); 28 Sep 2016 16:25:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 13585 invoked by uid 55); 28 Sep 2016 16:25:08 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77762] Incorrect destination buffer length in -Wformat-length warning Date: Wed, 28 Sep 2016 16:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic, patch X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02363.txt.bz2 Content-length: 927 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77762 --- Comment #5 from Martin Sebor --- Author: msebor Date: Wed Sep 28 16:24:35 2016 New Revision: 240584 URL: https://gcc.gnu.org/viewcvs?rev=3D240584&root=3Dgcc&view=3Drev Log: PR c/77762 - Incorrect destination buffer length in -Wformat-length warning gcc/testsuite/ChangeLog: PR c/77762 * gcc.dg/tree-ssa/builtin-sprintf-warn-1.c (test_vsnprintf_chk_s): Call __builtin___vsnprintf_chk, not __builtin___snprintf_chk. (test_sprintf_p_const): Adjust line numbers to avoid failures introduced in r240503. gcc/ChangeLog: PR c/77762 * gimple-ssa-sprintf.c (pass_sprintf_length::handle_gimple_call): Fix typos. Modified: trunk/gcc/ChangeLog trunk/gcc/gimple-ssa-sprintf.c trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-1.c >>From gcc-bugs-return-538749-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:31:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 30394 invoked by alias); 28 Sep 2016 16:31:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29969 invoked by uid 48); 28 Sep 2016 16:31:32 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77777] Use rich location to mark correct expression for "invalid use of non-static member function" Date: Wed, 28 Sep 2016 16:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02364.txt.bz2 Content-length: 634 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77777 --- Comment #2 from Jonathan Wakely --- (In reply to David Malcolm from comment #1) > (In reply to Jonathan Wakely from comment #0) > > There are lots of cases where we should use rich locations, but here's = one > Do you mean a fix-it hint? I don't think so, but maybe I do :-) What I mean is we should display something like: c.cc:12:4: error: invalid use of non-static member function =E2=80=98int X:= :f()=E2=80=99 x.f ^~~ with a range that covers the relevant expression, not just a range of length zero pointing to the wrong place. >>From gcc-bugs-return-538750-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:34:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35762 invoked by alias); 28 Sep 2016 16:34:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35028 invoked by uid 48); 28 Sep 2016 16:33:55 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77777] Use rich location to mark correct expression for "invalid use of non-static member function" Date: Wed, 28 Sep 2016 16:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02365.txt.bz2 Content-length: 400 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77777 --- Comment #3 from Jonathan Wakely --- Or maybe even better, make the caret point to the member function, but cover the entire expression: x.foo ~~^~~ (Please ignore the "did you mean...?" part shown in the initial comment, th= at was produced by a locally patched gcc, but is not relevant to this bug). >>From gcc-bugs-return-538751-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:42:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63887 invoked by alias); 28 Sep 2016 16:42:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 63740 invoked by uid 48); 28 Sep 2016 16:42:14 -0000 From: "sv.mueller@tu-braunschweig.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/69080] No automatic deallocation of allocatable function results Date: Wed, 28 Sep 2016 16:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 4.9.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: sv.mueller@tu-braunschweig.de X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02366.txt.bz2 Content-length: 288 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D69080 --- Comment #14 from Mueller --- I'd really like to know why this report has been closed although there may = be a problem with deallocation. I think the rephrasing of Mikael pinpointed what= I meant. >>From gcc-bugs-return-538752-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:43:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 65939 invoked by alias); 28 Sep 2016 16:43:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 65712 invoked by uid 48); 28 Sep 2016 16:43:29 -0000 From: "gerhard.steinmetz.fortran@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77782] New: ICE in gfc_get_union_type, at fortran/trans-types.c:2387 Date: Wed, 28 Sep 2016 16:43:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02367.txt.bz2 Content-length: 2043 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77782 Bug ID: 77782 Summary: ICE in gfc_get_union_type, at fortran/trans-types.c:2387 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: gerhard.steinmetz.fortran@t-online.de Target Milestone: --- Together with option -fdec : $ cat z1.f90 program p structure /s1/ union map integer(4) a end map map real(4) b end map end union end structure structure /s2/ union map integer(2) x, y integer(4) z end map end union end structure record /s1/ r1 r1.a =3D 0 end $ gfortran-7-20160925 -fdec z1.f90 z1.f90:1:0: program p internal compiler error: in gfc_get_union_type, at fortran/trans-types.c:23= 87 0x7b79a6 gfc_get_union_type(gfc_symbol*) ../../gcc/fortran/trans-types.c:2387 0x7b7d88 gfc_copy_dt_decls_ifequal(gfc_symbol*, gfc_symbol*, bool) ../../gcc/fortran/trans-types.c:2325 0x7b7445 gfc_get_derived_type(gfc_symbol*, bool) ../../gcc/fortran/trans-types.c:2730 0x7b7b8c gfc_typenode_for_spec(gfc_typespec*, bool) ../../gcc/fortran/trans-types.c:1110 0x7b5bb3 gfc_sym_type(gfc_symbol*) ../../gcc/fortran/trans-types.c:2167 0x74eaa4 gfc_get_symbol_decl(gfc_symbol*) ../../gcc/fortran/trans-decl.c:1640 0x7526e7 generate_local_decl ../../gcc/fortran/trans-decl.c:5313 0x70df2b do_traverse_symtree ../../gcc/fortran/symbol.c:3963 0x753542 generate_local_vars ../../gcc/fortran/trans-decl.c:5513 0x753542 gfc_generate_function_code(gfc_namespace*) ../../gcc/fortran/trans-decl.c:6192 0x6de170 translate_all_program_units ../../gcc/fortran/parse.c:5940 0x6de170 gfc_parse_file() ../../gcc/fortran/parse.c:6146 0x720d82 gfc_be_parse_file ../../gcc/fortran/f95-lang.c:198 >>From gcc-bugs-return-538753-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:44:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 68624 invoked by alias); 28 Sep 2016 16:44:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 68352 invoked by uid 48); 28 Sep 2016 16:44:42 -0000 From: "dmalcolm at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77777] Use rich location to mark correct expression for "invalid use of non-static member function" Date: Wed, 28 Sep 2016 16:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: dmalcolm at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02368.txt.bz2 Content-length: 1208 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77777 --- Comment #4 from David Malcolm --- FWIW the location information is available in the frame above: Breakpoint 6, invalid_nonstatic_memfn_p (loc=3D205792, expr=3D, complain=3D3) at ../../src/gcc/cp/typeck.c:1834 1834 expr); (gdb) list 1829 if (complain & tf_error) 1830 { 1831 if (DECL_P (expr)) 1832 { 1833 error_at (loc, "invalid use of non-static member func= tion %qD", 1834 expr); 1835 inform (DECL_SOURCE_LOCATION (expr), "declared here"); 1836 } within EXPR_LOCATION (arg): (gdb) up #7 0x00000000007b1a65 in resolve_args (args=3D0x7ffff1a14460 =3D {...}, complain=3D3) at ../../src/gcc/cp/call.c:4012 4012 else if (invalid_nonstatic_memfn_p (input_location, arg, complain)) (gdb) call inform (arg->exp.locus, "") /tmp/pr77777.cc: In function =E2=80=98int main()=E2=80=99: /tmp/pr77777.cc:11:9: note:=20 x.f ~~^ so this location could be passed to invalid_nonstatic_memfn_p and a fix-it = hint added. >>From gcc-bugs-return-538754-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:46:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 71026 invoked by alias); 28 Sep 2016 16:46:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 70659 invoked by uid 48); 28 Sep 2016 16:46:02 -0000 From: "gerhard.steinmetz.fortran@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77783] New: ICE in gfc_compare_union_types, at fortran/interface.c:545 Date: Wed, 28 Sep 2016 16:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02369.txt.bz2 Content-length: 2236 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77783 Bug ID: 77783 Summary: ICE in gfc_compare_union_types, at fortran/interface.c:545 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: gerhard.steinmetz.fortran@t-online.de Target Milestone: --- Needs option -fdec, affects version 6 and 7 : $ cat z1.f90 subroutine f(x) structure /s1/ union map integer i end map end union end structure record /s1/ x x.i =3D 0 end subroutine g structure /s1/ union end union end structure record /s1/ x call f(x) end $ gfortran-7-20160925 -fdec -c z1.f90 f951: internal compiler error: Segmentation fault 0xc28c9f crash_signal ../../gcc/toplev.c:337 0x694787 gfc_compare_union_types(gfc_symbol*, gfc_symbol*) ../../gcc/fortran/interface.c:545 0x69469a compare_components ../../gcc/fortran/interface.c:502 0x694918 gfc_compare_derived_types(gfc_symbol*, gfc_symbol*) ../../gcc/fortran/interface.c:633 0x713474 gfc_type_compatible(gfc_typespec*, gfc_typespec*) ../../gcc/fortran/symbol.c:4906 0x6945a8 gfc_compare_types(gfc_typespec*, gfc_typespec*) ../../gcc/fortran/interface.c:693 0x696b8b compare_parameter ../../gcc/fortran/interface.c:2205 0x69792b compare_actual_formal ../../gcc/fortran/interface.c:2876 0x6998cd gfc_procedure_use(gfc_symbol*, gfc_actual_arglist**, locus*) ../../gcc/fortran/interface.c:3611 0x6f382d resolve_global_procedure ../../gcc/fortran/resolve.c:2477 0x6f3ba7 resolve_call ../../gcc/fortran/resolve.c:3455 0x6f0f60 gfc_resolve_code(gfc_code*, gfc_namespace*) ../../gcc/fortran/resolve.c:10758 0x6f3382 resolve_codes ../../gcc/fortran/resolve.c:15724 0x6f347e gfc_resolve(gfc_namespace*) ../../gcc/fortran/resolve.c:15759 0x6ddf9a resolve_all_program_units ../../gcc/fortran/parse.c:5879 0x6ddf9a gfc_parse_file() ../../gcc/fortran/parse.c:6131 0x720d82 gfc_be_parse_file ../../gcc/fortran/f95-lang.c:198 >>From gcc-bugs-return-538755-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:46:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73233 invoked by alias); 28 Sep 2016 16:46:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 73031 invoked by uid 48); 28 Sep 2016 16:46:39 -0000 From: "gerhard.steinmetz.fortran@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77783] ICE in gfc_compare_union_types, at fortran/interface.c:545 Date: Wed, 28 Sep 2016 16:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02370.txt.bz2 Content-length: 1025 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77783 --- Comment #1 from Gerhard Steinmetz --- Some variations : $ cat z2.f90 subroutine f(x) structure /s1/ union integer i end union end structure record /s1/ x x.i =3D 0 end subroutine g structure /s1/ union end union end structure record /s1/ x call f(x) end $ cat z3.f90 subroutine f(x) structure /s1/ union end union end structure record /s1/ x x.i =3D 0 end subroutine g structure /s1/ union end union end structure record /s1/ x call f(x) end $ gfortran-7-20160925 -fdec -c z3.f90 z3.f90:7:5: x.i =3D 0 1 Error: 'i' at (1) is not a member of the 'S1' structure f951: internal compiler error: Segmentation fault 0xc28c9f crash_signal ../../gcc/toplev.c:337 0x694783 gfc_compare_union_types(gfc_symbol*, gfc_symbol*) ../../gcc/fortran/interface.c:544 0x69469a compare_components ../../gcc/fortran/interface.c:502 #... >>From gcc-bugs-return-538756-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:48:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76070 invoked by alias); 28 Sep 2016 16:48:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 75730 invoked by uid 48); 28 Sep 2016 16:48:27 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77784] New: duplicate warning for snprintf for n > object size Date: Wed, 28 Sep 2016 16:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02371.txt.bz2 Content-length: 2648 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77784 Bug ID: 77784 Summary: duplicate warning for snprintf for n > object size Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end Assignee: unassigned at gcc dot gnu.org Reporter: msebor at gcc dot gnu.org Target Milestone: --- As mentioned in bug 77762#2, with both the -Wformat-length option used and _FORTIFY_SOURCE defined (and with optimization enabled), GCC now prints two warnings for calls to functions like snprintf (which normally calls __builtin___snprintf_chk). Only one warning should be printed. $ cat zzz.c && /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -S -Wall -Wformat-length=3D1 zzz.c char d [2]; void f (const char *s) { __builtin___snprintf_chk (d, 4, 0, 2, s); } zzz.c: In function =E2=80=98f=E2=80=99: zzz.c:5:3: warning: specified size 4 exceeds the size 2 of the destination object [-Wformat-length=3D] __builtin___snprintf_chk (d, 4, 0, 2, s); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ zzz.c:5:3: warning: call to __builtin___snprintf_chk will always overflow destination buffer As also pointed out in bug 77762 and as the following program shows, the la= tter warning is misleading because a buffer overflow need not actually take place and the call may be valid. This is just a minor detail when the default implementation of the __snprintf_chk function is used that calls abort in t= his case, but printing a more accurate message becomes important when an altern= ate implementation is used that does not abort (as is sometimes done in operati= ng system kernels, for example). $ cat zzz.c && /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -W= all -Wformat -Wextra -Wpedantic -Wformat-length=3D1 zzz.c && ./a.out=20 typedef __SIZE_TYPE__ size_t; char d [2]; int main (void) { char s[] =3D "x"; __builtin___snprintf_chk (d, 4, 0, 2, s); } int __snprintf_chk (char *s, size_t maxlen, int flag, size_t os, const char *fmt, ...) { __builtin_printf ("%s(%p, %zu, %i, %zu, \"%s\"...)\n", __func__, s, maxlen, flag, os, fmt); return __builtin_puts (fmt); } zzz.c: In function =E2=80=98main=E2=80=99: zzz.c:8:3: warning: specified size 4 exceeds the size 2 of the destination object [-Wformat-length=3D] __builtin___snprintf_chk (d, 4, 0, 2, s); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ zzz.c:8:3: warning: call to __builtin___snprintf_chk will always overflow destination buffer __snprintf_chk(0x601049, 4, 0, 2, "x"...) x >>From gcc-bugs-return-538757-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:49:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 77338 invoked by alias); 28 Sep 2016 16:49:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 77055 invoked by uid 48); 28 Sep 2016 16:49:06 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77762] Incorrect destination buffer length in -Wformat-length warning Date: Wed, 28 Sep 2016 16:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic, patch X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02372.txt.bz2 Content-length: 484 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77762 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #6 from Martin Sebor --- Fixed by r240584. I've raised bug 77784 for the duplicate warning. >>From gcc-bugs-return-538758-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 16:49:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 77351 invoked by alias); 28 Sep 2016 16:49:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 77228 invoked by uid 48); 28 Sep 2016 16:49:10 -0000 From: "gerhard.steinmetz.fortran@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77785] New: ICE in gfc_get_caf_token_offset, at fortran/trans-expr.c:1990 Date: Wed, 28 Sep 2016 16:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02373.txt.bz2 Content-length: 1594 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77785 Bug ID: 77785 Summary: ICE in gfc_get_caf_token_offset, at fortran/trans-expr.c:1990 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: gerhard.steinmetz.fortran@t-online.de Target Milestone: --- Since recently : $ cat z1.f90 subroutine s(x) integer, allocatable :: x(:)[:] allocate (x(1)[*]) end $ gfortran-7-20160925 -fcoarray=3Dsingle -c z1.f90 $ gfortran-7-20160925 -fcoarray=3Dlib -c z1.f90 z1.f90:3:0: allocate (x(1)[*]) internal compiler error: in gfc_get_caf_token_offset, at fortran/trans-expr.c:1990 0x765017 gfc_get_caf_token_offset(gfc_se*, tree_node**, tree_node**, tree_node*, tree_node*, gfc_expr*) ../../gcc/fortran/trans-expr.c:1989 0x7373d5 gfc_array_allocate(gfc_se*, gfc_expr*, tree_node*, tree_node*, tree_node*, tree_node*, tree_node*, tree_node**, gfc_expr*, tree_node*, boo= l) ../../gcc/fortran/trans-array.c:5546 0x7ac165 gfc_trans_allocate(gfc_code*) ../../gcc/fortran/trans-stmt.c:5799 0x723ff7 trans_code ../../gcc/fortran/trans.c:1870 0x753838 gfc_generate_function_code(gfc_namespace*) ../../gcc/fortran/trans-decl.c:6257 0x6de170 translate_all_program_units ../../gcc/fortran/parse.c:5940 0x6de170 gfc_parse_file() ../../gcc/fortran/parse.c:6146 0x720d82 gfc_be_parse_file ../../gcc/fortran/f95-lang.c:198 >>From gcc-bugs-return-538759-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 17:38:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 44436 invoked by alias); 28 Sep 2016 17:38:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 44257 invoked by uid 55); 28 Sep 2016 17:38:17 -0000 From: "jsm28 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcc/77519] [5 Regression] complex multiply excess precision handling inverted Date: Wed, 28 Sep 2016 17:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcc X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: jsm28 at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02374.txt.bz2 Content-length: 1747 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77519 --- Comment #6 from Joseph S. Myers --- Author: jsm28 Date: Wed Sep 28 17:37:45 2016 New Revision: 240586 URL: https://gcc.gnu.org/viewcvs?rev=3D240586&root=3Dgcc&view=3Drev Log: Correct libgcc complex multiply excess precision handling (PR libgcc/77519). libgcc complex multiply is meant to eliminate excess precision from certain internal values by forcing them to memory in exactly those cases where the type has excess precision. But in https://gcc.gnu.org/ml/gcc-patches/2014-09/msg01894.html I accidentally inverted the logic so that values get forced to memory in exactly the cases where it's not needed. (This is a pessimization in the no-excess-precision case, in principle could lead to bad results depending on code generation in the excess-precision case. Note: I do not have a test demonstrating bad results.) Bootstrapped with no regressions on x86_64-pc-linux-gnu. Code size went down on x86_64 as expected; old sizes: text data bss dec hex filename 887 0 0 887 377 _muldc3.o 810 0 0 810 32a _mulsc3.o 2032 0 0 2032 7f0 _multc3.o 983 0 0 983 3d7 _mulxc3.o New sizes: 847 0 0 847 34f _muldc3.o 770 0 0 770 302 _mulsc3.o 2032 0 0 2032 7f0 _multc3.o 951 0 0 951 3b7 _mulxc3.o Backport from mainline 2016-09-07 Joseph Myers PR libgcc/77519 * libgcc2.c (NOTRUNC): Invert settings. Modified: branches/gcc-5-branch/libgcc/ChangeLog branches/gcc-5-branch/libgcc/libgcc2.c >>From gcc-bugs-return-538760-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 17:39:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 54258 invoked by alias); 28 Sep 2016 17:39:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 48520 invoked by uid 48); 28 Sep 2016 17:39:01 -0000 From: "jsm28 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcc/77519] [5 Regression] complex multiply excess precision handling inverted Date: Wed, 28 Sep 2016 17:39:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcc X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: jsm28 at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02375.txt.bz2 Content-length: 444 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77519 Joseph S. Myers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #7 from Joseph S. Myers --- Also fixed for GCC 5.5. >>From gcc-bugs-return-538761-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 18:40:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 51261 invoked by alias); 28 Sep 2016 18:40:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 50950 invoked by uid 48); 28 Sep 2016 18:40:18 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77753] [7 Regression] broken profiledbootstrap due to -Werror=format-length in varasm.c:1573 Date: Wed, 28 Sep 2016 18:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02376.txt.bz2 Content-length: 4116 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77753 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #4 from Martin Sebor --- The warning should be gone with r240581 but my profiledbootstrap on powerpc= 64 fails in the feedback stage with the error below. I'll try again without a= da and resolve this in the meantime as fixed. If another -Wformat-length error shows up please open a new bug for it. +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3DGNAT BUG DETECTED=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D+ | 7.0.0 20160928 (experimental) (powerpc64le-unknown-linux-gnu) GCC error: | | in check_die, at dwarf2out.c:5897 | | Error detected around /src/gcc/trunk/gcc/ada/atree.adb:2538:8 | | Please submit a bug report; see http://gcc.gnu.org/bugs.html. | | Use a subject line meaningful to you and us to track the bug. | | Include the entire contents of this bug box in the report. | | Include the exact command that you entered. | | Also include sources listed below. | +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D+ Please include these source files with error report Note that list may not be accurate in some cases, so please double check that the problem can still be reproduced with the set of files listed. Consider also -gnatd.n switch (see debug.adb). /src/gcc/trunk/gcc/ada/system.ads /src/gcc/trunk/gcc/ada/exp_unst.adb /src/gcc/trunk/gcc/ada/exp_unst.ads /src/gcc/trunk/gcc/ada/table.ads /src/gcc/trunk/gcc/ada/types.ads /src/gcc/trunk/gcc/ada/unchconv.ads /src/gcc/trunk/gcc/ada/unchdeal.ads /src/gcc/trunk/gcc/ada/atree.ads /src/gcc/trunk/gcc/ada/alloc.ads /src/gcc/trunk/gcc/ada/sinfo.ads /src/gcc/trunk/gcc/ada/namet.ads /src/gcc/trunk/gcc/ada/hostparm.ads /src/gcc/trunk/gcc/ada/uintp.ads /src/gcc/trunk/gcc/ada/urealp.ads /src/gcc/trunk/gcc/ada/einfo.ads ada/snames.ads /src/gcc/trunk/gcc/ada/debug.ads /src/gcc/trunk/gcc/ada/elists.ads /src/gcc/trunk/gcc/ada/lib.ads /src/gcc/trunk/gcc/ada/nlists.ads ada/nmake.ads /src/gcc/trunk/gcc/ada/opt.ads /src/gcc/trunk/gcc/ada/s-string.ads /src/gcc/trunk/gcc/ada/ada.ads /src/gcc/trunk/gcc/ada/a-uncdea.ads /src/gcc/trunk/gcc/ada/s-wchcon.ads /src/gcc/trunk/gcc/ada/output.ads /src/gcc/trunk/gcc/ada/s-os_lib.ads /src/gcc/trunk/gcc/ada/rtsfind.ads /src/gcc/trunk/gcc/ada/sem.ads /src/gcc/trunk/gcc/ada/sem_ch8.ads /src/gcc/trunk/gcc/ada/sem_mech.ads /src/gcc/trunk/gcc/ada/sem_res.ads /src/gcc/trunk/gcc/ada/sem_util.ads /src/gcc/trunk/gcc/ada/exp_tss.ads /src/gcc/trunk/gcc/ada/sinput.ads /src/gcc/trunk/gcc/ada/casing.ads /src/gcc/trunk/gcc/ada/tbuild.ads /src/gcc/trunk/gcc/ada/s-exctab.ads /src/gcc/trunk/gcc/ada/s-stalib.ads /src/gcc/trunk/gcc/ada/a-unccon.ads /src/gcc/trunk/gcc/ada/s-unstyp.ads /src/gcc/trunk/gcc/ada/s-conca2.ads /src/gcc/trunk/gcc/ada/s-assert.ads /src/gcc/trunk/gcc/ada/s-secsta.ads /src/gcc/trunk/gcc/ada/s-stoele.ads /src/gcc/trunk/gcc/ada/a-except.ads /src/gcc/trunk/gcc/ada/s-parame.ads /src/gcc/trunk/gcc/ada/s-traent.ads /src/gcc/trunk/gcc/ada/s-soflin.ads /src/gcc/trunk/gcc/ada/s-stache.ads /src/gcc/trunk/gcc/ada/table.adb /src/gcc/trunk/gcc/ada/tree_io.ads /src/gcc/trunk/gcc/ada/s-memory.ads /src/gcc/trunk/gcc/ada/atree.adb /src/gcc/trunk/gcc/ada/aspects.ads /src/gcc/trunk/gcc/ada/gnat.ads /src/gcc/trunk/gcc/ada/g-hesorg.ads /src/gcc/trunk/gcc/ada/s-imenne.ads raised TYPES.UNRECOVERABLE_ERROR : comperr.adb:406 make[3]: *** [ada/exp_unst.o] Error 1 make[3]: *** Waiting for unfinished jobs.... >>From gcc-bugs-return-538762-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 18:42:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 53340 invoked by alias); 28 Sep 2016 18:42:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 53082 invoked by uid 48); 28 Sep 2016 18:42:20 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77784] duplicate warning for snprintf when n > object size Date: Wed, 28 Sep 2016 18:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: minor X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on short_desc everconfirmed bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02377.txt.bz2 Content-length: 715 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77784 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |diagnostic Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-28 Summary|duplicate warning for |duplicate warning for |snprintf for n > object |snprintf when n > object |size |size Ever confirmed|0 |1 Severity|normal |minor >>From gcc-bugs-return-538763-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 19:13:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22718 invoked by alias); 28 Sep 2016 19:13:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22389 invoked by uid 48); 28 Sep 2016 19:13:25 -0000 From: "wschmidt at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/71709] [6 Regression] powerpc64le: argument to strcpy() optimised out Date: Wed, 28 Sep 2016 19:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: patch X-Bugzilla-Severity: normal X-Bugzilla-Who: wschmidt at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: amodra at gmail dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02378.txt.bz2 Content-length: 161 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71709 --- Comment #11 from Bill Schmidt --- Working on the backports. Stay tuned. >>From gcc-bugs-return-538764-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 19:17:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 30639 invoked by alias); 28 Sep 2016 19:17:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30418 invoked by uid 48); 28 Sep 2016 19:17:21 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/69080] No automatic deallocation of allocatable function results Date: Wed, 28 Sep 2016 19:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 4.9.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02379.txt.bz2 Content-length: 1779 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D69080 Jerry DeLisle changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jvdelisle at gcc dot gnu.o= rg --- Comment #15 from Jerry DeLisle --- (In reply to Mueller from comment #14) > I'd really like to know why this report has been closed although there may > be a problem with deallocation. I think the rephrasing of Mikael pinpoint= ed > what I meant. This is a tricky question to 'see'. Whether or not a temporary is used as Mikael states, seems to be an implementation dependent artifact. dummy_create_allocatable() is allocating an object. dummy_do_nothing takes = it as intent(in) so it is not modified or changed in anyway. dummy_trigger does not do anything with it and as written can not even acce= ss it. So I think the example program itself is or ought to be invalid. Then from = my simple minded view you can choose to ignore the situation, generate a diagnostic like "unused function result", or as Mikael suggested, maybe try= to clean it up. The least effort approach is do nothing with this, especially since doing something gains nothing from a program that does nothing. It gets to be a policy or philosophical question. One could also make a point that the underlying operating system software t= akes care of it as well. Regardless, the code is sort of intriguing leaving thi= ngs sort of hanging there. If it is indicative of some other underlying issue y= et to be uncovered of course we should fix it. comp.lang.fortran might be a be= tter place for the broader questions of what 'should' it do. >>From gcc-bugs-return-538765-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 19:18:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31912 invoked by alias); 28 Sep 2016 19:18:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31519 invoked by uid 48); 28 Sep 2016 19:17:57 -0000 From: "dje at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/68703] __attribute__((vector_size(N))) template member confusion Date: Wed, 28 Sep 2016 19:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.2.1 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: dje at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jason at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02380.txt.bz2 Content-length: 847 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D68703 David Edelsohn changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dje at gcc dot gnu.org --- Comment #8 from David Edelsohn --- The new vector32.C and vector32a.C testcases fail on AIX: src/gcc/testsuite/g++.dg/ext/vector32.C: In function 'int main()': src/gcc/testsuite/g++.dg/ext/vector32.C:18:1: internal compiler error: in g= et, at cgraph.h:395 gcc_checking_assert (TREE_CODE (decl) =3D=3D FUNCTION_DECL || (TREE_CODE (decl) =3D=3D VAR_DECL && (TREE_STATIC (decl) || DECL_EXTERNAL (decl) || in_lto_p))); >>From gcc-bugs-return-538766-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 19:21:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35773 invoked by alias); 28 Sep 2016 19:21:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35612 invoked by uid 48); 28 Sep 2016 19:21:16 -0000 From: "yzhang1985 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Wed, 28 Sep 2016 19:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: yzhang1985 at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02381.txt.bz2 Content-length: 797 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 --- Comment #2 from Yale Zhang --- (In reply to Uro=C5=A1 Bizjak from comment #1) > Created attachment 39711 [details] > Patch that fixes __get_cpuid >=20 > Can you please check if the attached patch fixes your problem? Great, your patch works. Thanks for taking care of it so quickly. I see you made it flexible by setting ECX to 0 only for certain levels, wit= hout increasing machine code size since __get_cpuid() is inlined and most of the unused cases will get thrown away as dead code. But does level 13 really exist? I don't see any documentation for it. Also, any idea why the AVX2 auto detection used for function multiversioning was working earlier, which used __get_cpuid()? Was it just by chance? >>From gcc-bugs-return-538767-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 19:22:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 38148 invoked by alias); 28 Sep 2016 19:22:35 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 37842 invoked by uid 55); 28 Sep 2016 19:22:21 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77467] Segmentation fault with switch statement in constexpr function Date: Wed, 28 Sep 2016 19:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02382.txt.bz2 Content-length: 1653 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77467 --- Comment #4 from Jakub Jelinek --- Author: jakub Date: Wed Sep 28 19:21:47 2016 New Revision: 240591 URL: https://gcc.gnu.org/viewcvs?rev=3D240591&root=3Dgcc&view=3Drev Log: PR c++/77467 * constexpr.c (enum constexpr_switch_state): New. (struct constexpr_ctx): Add css_state field. (label_matches): Add CTX and STMT arguments, remove I and DEFAULT_LABEL. For CASE_LABEL_EXPR assert ctx->css_state !=3D NULL, handle default labels according to css_state. (cxx_eval_statement_list): Remove statement skipping, label_matches and default_label handling code. (cxx_eval_loop_expr): Exit after first iteration even if switches (jump_target). (cxx_eval_switch_expr): Set up css_state field in ctx, if default label has been seen in the body, but no cases matched, evaluate the body second time. (cxx_eval_constant_expression): Handle stmt skipping and label_matc= hes here. Handle PREDICT_EXPR. For MODIFY_EXPR or INIT_EXPR, assert statement is not skipped. For COND_EXPR during skipping, don't evaluate condition, just the then block and if still skipping at the end also the else block. (cxx_eval_outermost_constant_expr): Adjust constexpr_ctx initialize= r. (is_sub_constant_expr): Likewise. * g++.dg/cpp1y/constexpr-77467.C: New test. Added: trunk/gcc/testsuite/g++.dg/cpp1y/constexpr-77467.C Modified: trunk/gcc/cp/ChangeLog trunk/gcc/cp/constexpr.c trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538768-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 19:38:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 99163 invoked by alias); 28 Sep 2016 19:38:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 98369 invoked by uid 55); 28 Sep 2016 19:38:35 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77707] [5/6/7 Regression] formatted direct access: nextrec off by one Date: Wed, 28 Sep 2016 19:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02383.txt.bz2 Content-length: 531 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77707 --- Comment #3 from Jerry DeLisle --- Author: jvdelisle Date: Wed Sep 28 19:38:03 2016 New Revision: 240592 URL: https://gcc.gnu.org/viewcvs?rev=3D240592&root=3Dgcc&view=3Drev Log: 2016-09-28 Jerry DeLisle PR libgfortran/77707 io/transfer.c (next_record): Flush before calculating next_record. Correctly calculate. Modified: trunk/libgfortran/ChangeLog trunk/libgfortran/io/transfer.c >>From gcc-bugs-return-538769-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 19:43:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23298 invoked by alias); 28 Sep 2016 19:43:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23137 invoked by uid 55); 28 Sep 2016 19:43:35 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77707] [5/6/7 Regression] formatted direct access: nextrec off by one Date: Wed, 28 Sep 2016 19:43:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02384.txt.bz2 Content-length: 499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77707 --- Comment #4 from Jerry DeLisle --- Author: jvdelisle Date: Wed Sep 28 19:43:03 2016 New Revision: 240593 URL: https://gcc.gnu.org/viewcvs?rev=3D240593&root=3Dgcc&view=3Drev Log: 2016-09-28 Jerry DeLisle PR libgfortran/77707 * gfortran.dg/inquire_17.f90: New test. Added: trunk/gcc/testsuite/gfortran.dg/inquire_17.f90 Modified: trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538770-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 19:44:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24266 invoked by alias); 28 Sep 2016 19:44:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24203 invoked by uid 48); 28 Sep 2016 19:44:17 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77707] [5/6/7 Regression] formatted direct access: nextrec off by one Date: Wed, 28 Sep 2016 19:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02385.txt.bz2 Content-length: 168 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77707 --- Comment #5 from Jerry DeLisle --- Fixed on trunk. Will backport in a few days. >>From gcc-bugs-return-538771-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 19:46:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26610 invoked by alias); 28 Sep 2016 19:46:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 26543 invoked by uid 48); 28 Sep 2016 19:46:01 -0000 From: "matthias.thul at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77786] New: internal compiler error: in tsubst_copy, at cp/pt.c:13040 Date: Wed, 28 Sep 2016 19:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: matthias.thul at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02386.txt.bz2 Content-length: 3112 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77786 Bug ID: 77786 Summary: internal compiler error: in tsubst_copy, at cp/pt.c:13040 Product: gcc Version: 5.4.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: matthias.thul at gmail dot com Target Milestone: --- Created attachment 39720 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39720&action=3Dedit compiler output The below code fails with the the internal compiler error "in tsubst_copy, = at cp/pt.c:13040" in 5.4.1. The code compiles successfully with 4.9.4 and 6.2.= 0 as well as Clang 3.8.0. When removing the template parameter from foo, the internal compiler error changes to "Segmentation fault". When checking whether this was a duplicate of 70343, I changed the capture = of the lambda bar from [&] to [] and the internal compiler error still occurs (though the code is not valid any longer). =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D code =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D #include template void foo(std::vector a) { auto const a_size =3D a.size(); auto bar =3D [&](auto y) -> void { int a_size_2 =3D a_size; }; double x =3D 0.0; bar(x); } int main() { std::vector a(1); foo<1>(a); } =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D output of gcc -v =3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D Using built-in specs. COLLECT_GCC=3Dg++ COLLECT_LTO_WRAPPER=3D/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion=3D'Ubuntu 5.4.1-2ubuntu1~16.04' --with-bugurl=3Dfile:///usr/share/doc/gcc-5/README.Bu= gs --enable-languages=3Dc,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=3D/u= sr --program-suffix=3D-5 --enable-shared --enable-linker-build-id --libexecdir=3D/usr/lib --without-included-gettext --enable-threads=3Dposix --libdir=3D/usr/lib --enable-nls --with-sysroot=3D/ --enable-clocale=3Dgnu --enable-libstdcxx-debug --enable-libstdcxx-time=3Dyes --with-default-libstdcxx-abi=3Dnew --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=3Dgtk --enable-gtk-cairo --with-java-home=3D/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-ho= me --with-jvm-root-dir=3D/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=3D/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=3Damd64 --with-ecj-jar=3D/usr/share/java/eclipse-ecj.= jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=3Di686 --with-abi=3Dm64 --with-multilib-list=3Dm32,m64,mx32 --enable-multilib --with-tune=3Dgeneric --enable-checking=3Drelease --build=3Dx86_64-linux-gnu --host=3Dx86_64-linux-gnu --target=3Dx86_64-linux-gnu Thread model: posix gcc version 5.4.1 20160904 (Ubuntu 5.4.1-2ubuntu1~16.04)=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D complete command line that triggers the bug = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D g++ -std=3Dc++14 main.cpp -o main >>From gcc-bugs-return-538772-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 19:48:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35079 invoked by alias); 28 Sep 2016 19:48:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35001 invoked by uid 48); 28 Sep 2016 19:48:33 -0000 From: "matthias.thul at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77786] internal compiler error: in tsubst_copy, at cp/pt.c:13040 Date: Wed, 28 Sep 2016 19:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: matthias.thul at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02387.txt.bz2 Content-length: 243 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77786 --- Comment #1 from Matthias Thul --- Created attachment 39721 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39721&action=3Dedit preprocessed file >>From gcc-bugs-return-538773-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 19:51:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 128026 invoked by alias); 28 Sep 2016 19:51:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 107029 invoked by uid 55); 28 Sep 2016 19:51:40 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77721] -Wformat-length not uses arg range for converted vars Date: Wed, 28 Sep 2016 19:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02388.txt.bz2 Content-length: 570 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77721 --- Comment #2 from Martin Sebor --- Author: msebor Date: Wed Sep 28 19:51:08 2016 New Revision: 240595 URL: https://gcc.gnu.org/viewcvs?rev=3D240595&root=3Dgcc&view=3Drev Log: PR middle-end/77721 - -Wformat-length not uses arg range for converted vars gcc/testsuite/ChangeLog: PR middle-end/77721 * gcc.dg/tree-ssa/builtin-sprintf-warn-6.c: New test. Added: trunk/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-6.c Modified: trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538774-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 19:52:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 61140 invoked by alias); 28 Sep 2016 19:52:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 44224 invoked by uid 48); 28 Sep 2016 19:52:41 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77711] Add fix-it hints for missing parentheses in member function call Date: Wed, 28 Sep 2016 19:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02389.txt.bz2 Content-length: 586 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77711 --- Comment #5 from Jonathan Wakely --- For comparison, clang gives a much clearer error: 77711.cc:11:9: error: reference to non-static member function must be calle= d; did you mean to call it with no arguments? x.f ~~^ () It says *why* it's invalid (it must be called), and suggests adding an empty argument list (including when the function has parameters but they have def= ault arguments). I have a fix for PR77777 so we can print the same range info and fix-it as clang does. >>From gcc-bugs-return-538775-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 20:03:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 61871 invoked by alias); 28 Sep 2016 20:03:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 61618 invoked by uid 48); 28 Sep 2016 20:02:56 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77711] Add fix-it hints for missing parentheses in member function call Date: Wed, 28 Sep 2016 20:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02390.txt.bz2 Content-length: 693 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77711 --- Comment #6 from Jonathan Wakely --- Yet another variation on missing argument list for a member function call: call.cc: In function =E2=80=98int main()=E2=80=99: call.cc:20:14: error: cannot convert =E2=80=98A::foo=E2=80=99 from type =E2= =80=98int (A::)()=E2=80=99 to type =E2=80=98int (A::*)()=E2=80=99 auto x =3D a.foo; ^~~ Another completely different error, that's also pretty unhelpful. This shou= ld probably use invalid_nonstatic_memfn_p too. Clang gives exactly the same error in this case as for the bar( a.foo ) cas= e, which is much better than two different unclear messages. >>From gcc-bugs-return-538776-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 20:03:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63937 invoked by alias); 28 Sep 2016 20:03:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 63714 invoked by uid 48); 28 Sep 2016 20:03:42 -0000 From: "petschy at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77787] New: segfault in mangle.c Date: Wed, 28 Sep 2016 20:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: petschy at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02391.txt.bz2 Content-length: 8174 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77787 Bug ID: 77787 Summary: segfault in mangle.c Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: petschy at gmail dot com Target Milestone: --- Background: while trying to put cold data to a dedicated section I managed = to crash the compiler. The idea was that rarely used strings, eg src file names and expressions of assertions will be separated from normal data, resulting= in better dcache utilization: void prn(const char*); void foo() { __attribute__((section(".cold_rodata"))) static const char x[] =3D "foo"; prn(x); } inline void bar() { __attribute__((section(".cold_rodata"))) static const char x[] =3D "bar"; prn(x); }=20 int main() { foo(); bar(); } Let's pretend that the x[] arrays were put there by ASSERT() macros. Unfortunately, this won;t compile: $ g++ -c 20160928-section_type_conflict.cpp=20 20160928-section_type_conflict.cpp:9:20: error: x causes a section type conflict with x static const char x[] =3D "bar"; ^ 20160928-section_type_conflict.cpp:4:20: note: =E2=80=98x=E2=80=99 was decl= ared here static const char x[] =3D "foo"; ^ I know, I know: I shouldn't be using __attribute__ on non-globals. Unfortunately, there is no hot/cold attribute for data, only for code. For = my specific case, a 'cold' data attribute would partly solve the problem, but that's probably another discussion. The explanation can be found here, along with proposed solutions: http://stackoverflow.com/questions/35091862/inline-static-data-causes-a-sec= tion-type-conflict I thought that rather than messing with __asm__, I go full ret^H^H^Hcrafty: instead of the static x[], I define a local struct with a static inline fn, which has the static x[] in the desired section. This way x[] is always in = an inline function, so the conflict goes away. The result: gcc segfaults. 5.4.= 1, 6.2.1 and 7.0.0 all do it. I built a -g -O0 from 7.0, this is the output: common/src/dbgmac.h:264:23: internal compiler error: in operator[], at vec.h:732 DBG_STRING_DEF(expr_str, #expr); \ ^ common/src/platform.h:97:29: note: in definition of macro =E2=80=98CONCAT_= =E2=80=99 #define CONCAT_(a_, b_) a_ ## b_ ^~ common/src/platform.h:99:33: note: in expansion of macro =E2=80=98CONCAT2= =E2=80=99 #define CONCAT3(a_, b_, c_) CONCAT2(CONCAT2(a_, b_), c_) ^~~~~~~~~~ common/src/platform.h:98:29: note: in expansion of macro =E2=80=98CONCAT_= =E2=80=99 #define CONCAT2(a_, b_) CONCAT_(a_, b_) ^~~~~~~~~~ common/src/platform.h:99:44: note: in expansion of macro =E2=80=98CONCAT2= =E2=80=99 #define CONCAT3(a_, b_, c_) CONCAT2(CONCAT2(a_, b_), c_) ^~~~~~~~~~ common/src/dbgmac.h:73:34: note: in expansion of macro =E2=80=98CONCAT3=E2= =80=99 #define UNIQ_VAR_NAME(n_) CONCAT3(n_, _, __LINE__) ^~~~~~~~~~ common/src/dbgmac.h:86:22: note: in expansion of macro =E2=80=98UNIQ_VAR_NA= ME=E2=80=99 static const char UNIQ_VAR_NAME(var_) [] =3D val_; \ ^~~~~~~~~~~~~~~~~ common/src/dbgmac.h:264:4: note: in expansion of macro =E2=80=98DBG_STRING_= DEF=E2=80=99 DBG_STRING_DEF(expr_str, #expr); \ ^~~~~~~~~~~~~~~~~~ common/src/dbgmac.h:208:35: note: in expansion of macro =E2=80=98HARD_ASSER= T=E2=80=99 #define ASSERT(expr, args...) HARD_ASSERT(expr, ## args); ^~~~~~~~~~~~~~~ common/src/json.hpp:1493:2: note: in expansion of macro =E2=80=98ASSERT=E2= =80=99 ASSERT(div_ !=3D 0); ^~~~~~~~~~ 0x7c190a vec::operator[](unsigned int) ../../gcc/vec.h:732 0xa2f260 local_class_index ../../gcc/cp/mangle.c:1845 0xa2f9ea discriminator_for_local_entity ../../gcc/cp/mangle.c:1881 0xa2fd6f write_local_name ../../gcc/cp/mangle.c:1972 0xa299c0 write_name ../../gcc/cp/mangle.c:917 0xa291f0 write_encoding ../../gcc/cp/mangle.c:779 0xa2fb5d write_local_name ../../gcc/cp/mangle.c:1941 0xa299c0 write_name ../../gcc/cp/mangle.c:917 0xa291f0 write_encoding ../../gcc/cp/mangle.c:779 0xa28c89 write_mangled_name ../../gcc/cp/mangle.c:744 0xa39b28 mangle_decl_string ../../gcc/cp/mangle.c:3709 0xa39b6e get_mangled_id ../../gcc/cp/mangle.c:3731 0xa3a032 mangle_decl(tree_node*) ../../gcc/cp/mangle.c:3801 0x145f393 decl_assembler_name(tree_node*) ../../gcc/tree.c:669 0xbd4c72 symbol_table::insert_to_assembler_name_hash(symtab_node*, bool) ../../gcc/symtab.c:171 0xbd4fef symbol_table::symtab_initialize_asm_name_hash() ../../gcc/symtab.c:263 0xbd71dc symtab_node::get_for_asmname(tree_node const*) ../../gcc/symtab.c:930 0xbf366d handle_alias_pairs ../../gcc/cgraphunit.c:1258 0xbf75e2 symbol_table::finalize_compilation_unit() ../../gcc/cgraphunit.c:2541 Please submit a full bug report, Nothing fancy on the command line, just -I's -D's, does it with -O0 and -O3, too (though since it's probably a mangle bug, the optimization level should= not matter). Unfortunately, this is a closed source project, so I can't post the [preprocessed] code. I tried to reduce it, but as luck would have it, then everything goes just fine. Here is the reduced test: #include #define CONCAT_(a_, b_) a_ ## b_ #define CONCAT2(a_, b_) CONCAT_(a_, b_) #define CONCAT3(a_, b_, c_) CONCAT2(CONCAT2(a_, b_), c_) #define CONCAT4(a_, b_, c_, d_) CONCAT2(CONCAT3(a_, b_, c_), d_) #define LIKELY(expr_) __builtin_expect(!!(expr_), 1) #define UNLIKELY(expr_) __builtin_expect(!!(expr_), 0) #define UNIQ_VAR_NAME(n_) CONCAT3(n_, _, __LINE__) #define DBG_STRING_DEF(var_, val_) \ struct CONCAT4(DbgStringDefHelper_, var_, _, __LINE__) { \ static inline const char* Get() { \ __attribute__((section(".rodata.cold.debug"))) \ static const char UNIQ_VAR_NAME(var_) [] =3D val_; \ return UNIQ_VAR_NAME(var_); \ } \ } #define DBG_STRING_GET(var_) CONCAT4(DbgStringDefHelper_, var_, = _, __LINE__)::Get() #define ASSERT(expr, args...) \ if (LIKELY(expr)) { } else \ { \ DBG_STRING_DEF(file_str, __FILE__); \ DBG_STRING_DEF(expr_str, #expr); \ dbg_assert(DBG_STRING_GET(file_str), __LINE__, DBG_STRING_GET(expr_str), ## args); \ } void dbg_assert(const char* file_, int line_, const char* expr_, ...) { fprintf(stderr, "%s:%d: ASSERTION FAILED: '%s' is FALSE\n", file_, line_, expr_); } namespace baz { //inline void foo(int x) { ASSERT(x =3D=3D 42); } template //inline void bar(T x) { ASSERT(x =3D=3D 42); } } // ns baz int main() { using namespace baz; foo(23); bar(11); } I tried to make the functions inline, and/or putting them in the global namespace, but no luck. The error message says that the bug was triggered by the assertion in the j= son header at line 1493. That's in a free standing function template, the last = one in the header and in the whole preprocessed compilation unit. If I delete t= he fn from the header, the error remains, but then it is reported on the previ= ous fn. If I delete many functions, the error remains, but moves to a different header. There are 28 assertions total, so I though maybe that's too much, b= ut putting 30 assertions in bar() didn't trigger the error. I ran out of immed= iate ideas. I have the core dump, the error is 100% reproducible, just not in the reduc= ed test. If you have ideas how to extract more info, please let me know. Meanwhile, I will try to enhance the test to trigger. >>From gcc-bugs-return-538777-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 20:09:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73817 invoked by alias); 28 Sep 2016 20:09:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 73657 invoked by uid 48); 28 Sep 2016 20:08:53 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77784] duplicate warning for snprintf when n > object size Date: Wed, 28 Sep 2016 20:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: minor X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02392.txt.bz2 Content-length: 897 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77784 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #1 from Jakub Jelinek --- The preexisting warning is not that misleading, because even if there is not any buffer overflow, the program is still terminated whenever the user prov= ided buffer size is bigger than the __builtin_object_size provided size, without actually trying to print anything into the buffer. If you want to suggest different wording for the *snprintf* case, it could be changed, but I belie= ve it is the right spot for the warning - after all the GIMPLE optimizations, regardless of what warning options are enabled or not. >>From gcc-bugs-return-538778-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 20:36:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 105464 invoked by alias); 28 Sep 2016 20:36:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 105302 invoked by uid 48); 28 Sep 2016 20:36:20 -0000 From: "ubizjak at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Wed, 28 Sep 2016 20:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ubizjak at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02393.txt.bz2 Content-length: 837 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 --- Comment #3 from Uro=C5=A1 Bizjak --- (In reply to Yale Zhang from comment #2) > But does level 13 really exist? I don't see any documentation for it. Yes, apparently. It was added to driver-i386.c by Intel people, where: if (max_level >=3D 13) { __cpuid_count (13, 1, eax, ebx, ecx, edx); has_xsaveopt =3D eax & bit_XSAVEOPT; has_xsavec =3D eax & bit_XSAVEC; has_xsaves =3D eax & bit_XSAVES; } > Also, any idea why the AVX2 auto detection used for function multiversion= ing > was working earlier, which used __get_cpuid()? Was it just by chance? This is handled via a different code path in libgcc/config/i386/cpunfo.c, get_available_features, where __cpuid_count is used to get advanced feature= s at level 7. >>From gcc-bugs-return-538779-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 21:03:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23996 invoked by alias); 28 Sep 2016 21:03:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23807 invoked by uid 48); 28 Sep 2016 21:03:23 -0000 From: "gerald at pfeifer dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77683] [7 regression] ICE on %lf directive in format_floating in gimple-ssa-sprintf.c:1163 Date: Wed, 28 Sep 2016 21:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: gerald at pfeifer dot com X-Bugzilla-Status: VERIFIED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02394.txt.bz2 Content-length: 428 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77683 Gerald Pfeifer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |VERIFIED --- Comment #5 from Gerald Pfeifer --- Also verified with the testcase from Bug 77740: building Wine. >>From gcc-bugs-return-538780-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 21:30:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 78533 invoked by alias); 28 Sep 2016 21:30:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 78144 invoked by uid 55); 28 Sep 2016 21:30:33 -0000 From: "uros at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Wed, 28 Sep 2016 21:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: uros at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02395.txt.bz2 Content-length: 592 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 --- Comment #4 from uros at gcc dot gnu.org --- Author: uros Date: Wed Sep 28 21:29:47 2016 New Revision: 240597 URL: https://gcc.gnu.org/viewcvs?rev=3D240597&root=3Dgcc&view=3Drev Log: PR target/77756 * config/i386/cpuid.h (__get_cpuid): Handle CPUID level >=3D 7. testsuite/ChangeLog: PR target/77756 * gcc.target/i386/pr77756.c: New test. Added: trunk/gcc/testsuite/gcc.target/i386/pr77756.c Modified: trunk/gcc/ChangeLog trunk/gcc/config/i386/cpuid.h trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538781-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 21:36:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 118035 invoked by alias); 28 Sep 2016 21:36:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 117800 invoked by uid 55); 28 Sep 2016 21:36:11 -0000 From: "wschmidt at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/71709] [6 Regression] powerpc64le: argument to strcpy() optimised out Date: Wed, 28 Sep 2016 21:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: patch X-Bugzilla-Severity: normal X-Bugzilla-Who: wschmidt at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: amodra at gmail dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02396.txt.bz2 Content-length: 685 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71709 --- Comment #12 from Bill Schmidt --- Author: wschmidt Date: Wed Sep 28 21:35:37 2016 New Revision: 240598 URL: https://gcc.gnu.org/viewcvs?rev=3D240598&root=3Dgcc&view=3Drev Log: 2016-09-28 Bill Schmidt Alan Modra Backport from mainline 2016-07-01 Alan Modra PR rtl-optimization/71709 * ira-lives.c (find_call_crossed_cheap_reg): Exit loop on arg reg being set, not referenced. Modified: branches/gcc-6-branch/gcc/ChangeLog branches/gcc-6-branch/gcc/ira-lives.c >>From gcc-bugs-return-538782-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 21:37:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 120768 invoked by alias); 28 Sep 2016 21:37:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 120674 invoked by uid 55); 28 Sep 2016 21:37:32 -0000 From: "wschmidt at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/71709] [6 Regression] powerpc64le: argument to strcpy() optimised out Date: Wed, 28 Sep 2016 21:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: patch X-Bugzilla-Severity: normal X-Bugzilla-Who: wschmidt at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: amodra at gmail dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02397.txt.bz2 Content-length: 685 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71709 --- Comment #13 from Bill Schmidt --- Author: wschmidt Date: Wed Sep 28 21:36:59 2016 New Revision: 240599 URL: https://gcc.gnu.org/viewcvs?rev=3D240599&root=3Dgcc&view=3Drev Log: 2016-09-28 Bill Schmidt Alan Modra Backport from mainline 2016-07-01 Alan Modra PR rtl-optimization/71709 * ira-lives.c (find_call_crossed_cheap_reg): Exit loop on arg reg being set, not referenced. Modified: branches/gcc-5-branch/gcc/ChangeLog branches/gcc-5-branch/gcc/ira-lives.c >>From gcc-bugs-return-538783-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 22:42:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 79257 invoked by alias); 28 Sep 2016 22:42:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 79070 invoked by uid 48); 28 Sep 2016 22:42:36 -0000 From: "hjl.tools at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Wed, 28 Sep 2016 22:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: hjl.tools at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02398.txt.bz2 Content-length: 1303 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 H.J. Lu changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hjl.tools at gmail dot com --- Comment #5 from H.J. Lu --- For level >=3D 7, ECX may have other input values. It is incorrect to assume that ECX only takes 0 or 1. We should get another macro for level >=3D 7 with input for ECX: static __inline int __get_cpuid (unsigned int __level, unsigned int *__eax, unsigned int *__ebx, unsigned int *__ecx, unsigned int *__edx) { unsigned int __ext =3D __level & 0x80000000; if (__get_cpuid_max (__ext, 0) < __level) return 0; if (__level >=3D 7) return 0; __cpuid (__level, *__eax, *__ebx, *__ecx, *__edx); return 1; } static __inline int __get_cpuid_count (unsigned int __level, unsigned int count, unsigned int *__eax, unsigned int *__ebx, unsigned int *__ecx, unsigned int *__edx) { unsigned int __ext =3D __level & 0x80000000; if (__get_cpuid_max (__ext, 0) < __level) return 0; __cpuid_count (__level, count, *__eax, *__ebx, *__ecx, *__edx); return 1; } >>From gcc-bugs-return-538784-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 23:03:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 101810 invoked by alias); 28 Sep 2016 23:03:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 101567 invoked by uid 48); 28 Sep 2016 23:03:26 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/51242] [C++11] Unable to use strongly typed enums as bit fields Date: Wed, 28 Sep 2016 23:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 4.6.1 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02399.txt.bz2 Content-length: 618 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D51242 --- Comment #29 from Jonathan Wakely --- (In reply to Sasha B from comment #28) > You can disregard whether the underlying type is fixed or not. So, GCC > should not give a warning unless a bitfield containing Foo really is too > small to hold a given value of Foo, warning on the assignment makes sense. I agree that we could warn on assignment instead. If the values assigned to= the bitfield are constant and known to fit, there's no need to warn. See PR 614= 14 for the same warning. I don't know if we need to keep both bugs open. >>From gcc-bugs-return-538785-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 23:04:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 104774 invoked by alias); 28 Sep 2016 23:04:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 104150 invoked by uid 48); 28 Sep 2016 23:04:29 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/61414] enum class bitfield size-checking failure Date: Wed, 28 Sep 2016 23:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02400.txt.bz2 Content-length: 484 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61414 --- Comment #6 from Jonathan Wakely --- (In reply to Xidorn Quan from comment #5) > It seems G++ always throw that warning for enum class as bitfield, even w= hen > the enum class is actually empty: > > enum class K {}; > > struct S { > > K v : 5; > > }; >=20 > G++ would give: > > test.cpp:3:9: warning: 'S::v' is too small to hold all values of 'enum = class K' > > K v : 5; Yes, read comment 2. >>From gcc-bugs-return-538786-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 23:06:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 108022 invoked by alias); 28 Sep 2016 23:06:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 107834 invoked by uid 48); 28 Sep 2016 23:06:00 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/61414] enum class bitfield size-checking failure Date: Wed, 28 Sep 2016 23:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02401.txt.bz2 Content-length: 806 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61414 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |diagnostic Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-28 Ever confirmed|0 |1 --- Comment #7 from Jonathan Wakely --- PR 51242 discusses the same issue, and PR 51242 comment 27 notes that Clang only warns when a value that isn't known to fit is assigned to the bitfield, which seems more useful. At the very least there should be a -Wxxx switch controlling this option so= it can be disabled. >>From gcc-bugs-return-538787-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 23:13:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 116092 invoked by alias); 28 Sep 2016 23:13:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 115840 invoked by uid 48); 28 Sep 2016 23:12:50 -0000 From: "pthaugen at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/70754] [5/6/7 Regression] ICE during predictive commoning Date: Wed, 28 Sep 2016 23:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pthaugen at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02402.txt.bz2 Content-length: 596 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D70754 --- Comment #5 from Pat Haugen --- (In reply to Pat Haugen from comment #4) > This also occurs on powerpc64/powerpc64le. >=20 I should note that the failure on powerpc64* doesn't start until GCC 7 rev 236043, where a TARGET_SCHED_REASSOCIATION_WIDTH function was added, which I guess makes sense since predictive commoning appears to do some reassociati= on. The failure also requires -mcpu=3Dpower8 or -mcpu=3Dpower9 since those are = the only 2 values currently where the target hook will return a value > 1. >>From gcc-bugs-return-538788-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 23:38:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 70273 invoked by alias); 28 Sep 2016 23:38:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 70129 invoked by uid 55); 28 Sep 2016 23:38:45 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77694] ICE in optimize_binop_array_assignment, at fortran/frontend-passes.c:1080 Date: Wed, 28 Sep 2016 23:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02403.txt.bz2 Content-length: 826 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77694 --- Comment #7 from kargl at gcc dot gnu.org --- Author: kargl Date: Wed Sep 28 23:38:13 2016 New Revision: 240604 URL: https://gcc.gnu.org/viewcvs?rev=3D240604&root=3Dgcc&view=3Drev Log: 2016-09-28 Steven G. Kargl backport from trunk PR fortran/77694 * frontend-passes.c (optimize_binop_array_assignment): Check pointer for NULL. 2016-09-28 Steven G. Kargl backport from trunk PR fortran/77694 * gfortran.dg/pr77694.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77694.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/frontend-passes.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538789-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Sep 28 23:45:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 67245 invoked by alias); 28 Sep 2016 23:45:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 55102 invoked by uid 48); 28 Sep 2016 23:45:24 -0000 From: "petschy at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77787] segfault in mangle.c Date: Wed, 28 Sep 2016 23:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: petschy at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02404.txt.bz2 Content-length: 1598 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77787 --- Comment #1 from petschy at gmail dot com --- That last function in json.hpp was gutted: //template int foo(int div_) { ASSERT(div_ =3D=3D 0); return 0; } Removed the assertions from all the template functions, as this moved the c= rash location upward, then section type conflicts started to appear. Commented o= ut the assertions from back to front until the point where the code compiled. = Lots of assertions remained that didn't cause trouble. Now I have an assert() in a plain member function of a plain class. Then lo= ts of assertions in inline functions and static functions of fully specialized class templates. At the end I have the foo fn as above. If the template line is commented out, 'section type conflict' is the resul= t, no crash. If I comment out the assert in foo() or in the plain member, it compiles. If both assertions are active, and I uncomment the //template lin= e, it crashes. Unfortunately, the test still can't reproduce the behaviour, th= ough I put in there a class, and a class template specialization, too. It also turned out that function templates ignore the section attribute on = the static variable inside, gotcha. That's why I didn't get conflicts in the fi= rst version of the test. Moreover, the 'inline' on the Helper::Get() function is ignored, so the section of the static variable inside will not be flagged as "aG" always, but as "a" or as "aG" depending on the inline status of the outside function using the assert(). That's why I did get conflicts at all. >>From gcc-bugs-return-538791-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 00:19:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25430 invoked by alias); 29 Sep 2016 00:19:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25149 invoked by uid 55); 29 Sep 2016 00:19:16 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77612] [5/6 Regression] ICE on invalid character len in contained procedure Date: Thu, 29 Sep 2016 00:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: unknown X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02406.txt.bz2 Content-length: 1504 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77612 --- Comment #4 from kargl at gcc dot gnu.org --- Author: kargl Date: Thu Sep 29 00:18:44 2016 New Revision: 240608 URL: https://gcc.gnu.org/viewcvs?rev=3D240608&root=3Dgcc&view=3Drev Log: 2016-09-28 Steven G. Kargl backport from trunk PR fortran/71730 * gfortran.dg/pr71730.f90: New test. * gfortran.dg/bounds_check_strlen_2.f90: Fix invalid code. * gfortran.dg/array_constructor_27.f03: Update dg-error message. * gfortran.dg/array_constructor_26.f03: Ditto. PR fortran/77612 * gfortran.dg/pr77612.f90: New test. 2016-09-28 Steven G. Kargl backport from trunk PR fortran/71730 * decl.c (char_len_param_value): Check return value of gfc_reduce_init_expr(). PR fortran/77612 * decl.c (char_len_param_value): Check parent namespace for=20 seen_implicit_none. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr71730.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77612.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/decl.c branches/gcc-5-branch/gcc/testsuite/ChangeLog branches/gcc-5-branch/gcc/testsuite/gfortran.dg/array_constructor_26.f03 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/array_constructor_27.f03 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/bounds_check_strlen_2.f= 90 >>From gcc-bugs-return-538790-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 00:19:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25422 invoked by alias); 29 Sep 2016 00:19:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25146 invoked by uid 55); 29 Sep 2016 00:19:16 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/71730] [5/6/7 Regression] ICE when character length specification uses an undefined variable Date: Thu, 29 Sep 2016 00:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02405.txt.bz2 Content-length: 1504 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71730 --- Comment #5 from kargl at gcc dot gnu.org --- Author: kargl Date: Thu Sep 29 00:18:44 2016 New Revision: 240608 URL: https://gcc.gnu.org/viewcvs?rev=3D240608&root=3Dgcc&view=3Drev Log: 2016-09-28 Steven G. Kargl backport from trunk PR fortran/71730 * gfortran.dg/pr71730.f90: New test. * gfortran.dg/bounds_check_strlen_2.f90: Fix invalid code. * gfortran.dg/array_constructor_27.f03: Update dg-error message. * gfortran.dg/array_constructor_26.f03: Ditto. PR fortran/77612 * gfortran.dg/pr77612.f90: New test. 2016-09-28 Steven G. Kargl backport from trunk PR fortran/71730 * decl.c (char_len_param_value): Check return value of gfc_reduce_init_expr(). PR fortran/77612 * decl.c (char_len_param_value): Check parent namespace for=20 seen_implicit_none. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr71730.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77612.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/decl.c branches/gcc-5-branch/gcc/testsuite/ChangeLog branches/gcc-5-branch/gcc/testsuite/gfortran.dg/array_constructor_26.f03 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/array_constructor_27.f03 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/bounds_check_strlen_2.f= 90 >>From gcc-bugs-return-538792-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 01:11:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 16290 invoked by alias); 29 Sep 2016 01:11:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 16101 invoked by uid 48); 29 Sep 2016 01:11:19 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77788] New: profiledbootstrap failures on powerpc64le Date: Thu, 29 Sep 2016 01:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02407.txt.bz2 Content-length: 2513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77788 Bug ID: 77788 Summary: profiledbootstrap failures on powerpc64le Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: bootstrap Assignee: unassigned at gcc dot gnu.org Reporter: msebor at gcc dot gnu.org Target Milestone: --- Today's top of GCC trunk configured with -enable-languages=3Dall,c,c++,fortran,go,lto,objc,obj-c++ --no-recursion fa= ils in the feedback stage with (at least) the following errors: /src/gcc/trunk/gcc/expmed.h: In function =E2=80=98void init_expmed()=E2=80= =99: /src/gcc/trunk/gcc/expmed.h:622:77: error: array subscript is above array bounds [-Werror=3Darray-bounds] return &this_target_expmed->x_mul_highpart_cost[speed][mode - MIN_MODE_I= NT]; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~= ~~^ /src/gcc/trunk/gcc/expmed.h:622:77: error: array subscript is above array bounds [-Werror=3Darray-bounds] return &this_target_expmed->x_mul_highpart_cost[speed][mode - MIN_MODE_I= NT]; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~= ~~^ ... /src/gcc/trunk/gcc/gimple-ssa-strength-reduction.c: In member function =E2= =80=98virtual edge_def* find_candidates_dom_walker::before_dom_children(basic_block)=E2= =80=99: /src/gcc/trunk/gcc/gimple-ssa-strength-reduction.c:1583:28: error: =E2=80= =98c=E2=80=99 may be used uninitialized in this function [-Werror=3Dmaybe-uninitialized] add_cand_for_stmt (gs, c); ^ /src/gcc/trunk/gcc/gimple-ssa-strength-reduction.c:1532:26: note: =E2=80=98= c=E2=80=99 was declared here slsr_cand_t base_cand, c, c2; ^ cc1plus: all warnings being treated as errors make[3]: *** [expmed.o] Error 1 make[3]: *** Waiting for unfinished jobs.... cc1plus: all warnings being treated as errors make[3]: *** [gimple-ssa-strength-reduction.o] Error 1 rm cpp.pod fsf-funding.pod grmic.pod gcov.pod gc-analyze.pod gpl.pod gfdl.p= od gccgo.pod gfortran.pod gcc.pod gcj-dbtool.pod jcf-dump.pod gcj.pod jv-convert.pod gcov-tool.pod gij.pod make[3]: Leaving directory `/build/gcc-trunk/gcc' make[2]: *** [all-stagefeedback-gcc] Error 2 make[2]: Leaving directory `/build/gcc-trunk' make[1]: *** [stagefeedback-bubble] Error 2 make[1]: Leaving directory `/build/gcc-trunk' make: *** [profiledbootstrap] Error 2 make: Leaving directory `/build/gcc-trunk' >>From gcc-bugs-return-538793-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 01:37:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110723 invoked by alias); 29 Sep 2016 01:37:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 110456 invoked by uid 48); 29 Sep 2016 01:37:14 -0000 From: "Byron.Watkins at comcast dot net" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77789] New: MinGW option ./configure does not make Date: Thu, 29 Sep 2016 01:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: Byron.Watkins at comcast dot net X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02408.txt.bz2 Content-length: 1538 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77789 Bug ID: 77789 Summary: MinGW option ./configure does not make Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: Byron.Watkins at comcast dot net Target Milestone: --- Created attachment 39722 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39722&action=3Dedit The ./configure and make logs Hi, I am trying to build gsl libraries for use with MinGW so that I can dev= elop wxWidgets applications in Code::Blocks that contain gsl's math. I have downloaded some beta versions; however, I did not keep track of which are b= eta and which are release. I have read that by using --build=3Dx86_64-amd-mingw32 on ./configure's command line I can obtain libraries suitable for my goal. But this option = (and i686-amd-mingw32) fail to build. I have tried several variations of --buil= d, --host, and --target containing these types and all fail seemingly the same= . I have attached the configure.log and the stdout stream from make (make.log). The gcc that I am using under MicroSoft's bash shell for Windows 10 education is the latest version, but as I said it might be the beta or the release version. I will also suggest that the gsl maintainers investigate this; I expect that your group and their group might work together on this = one. Thank you, Byron >>From gcc-bugs-return-538794-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 03:02:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4674 invoked by alias); 29 Sep 2016 03:02:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4245 invoked by uid 48); 29 Sep 2016 03:02:11 -0000 From: "su at cs dot ucdavis.edu" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77790] New: ICE on valid C++14 code when compiling with "-std=c++11": in push_access_scope, at cp/pt.c:227 Date: Thu, 29 Sep 2016 03:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: su at cs dot ucdavis.edu X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02409.txt.bz2 Content-length: 3916 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77790 Bug ID: 77790 Summary: ICE on valid C++14 code when compiling with "-std=3Dc++11": in push_access_scope, at cp/pt.c:227 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: su at cs dot ucdavis.edu Target Milestone: --- It appears to be a regression from 4.8.x, and affects 4.9.x and later.=20 $ g++-trunk -v Using built-in specs. COLLECT_GCC=3Dg++-trunk COLLECT_LTO_WRAPPER=3D/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/= 7.0.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: ../gcc-source-trunk/configure --enable-languages=3Dc,c++,l= to --prefix=3D/usr/local/gcc-trunk --disable-bootstrap Thread model: posix gcc version 7.0.0 20160928 (experimental) [trunk revision 240585] (GCC) $ $ g++-trunk -c -std=3Dc++14 small.cpp $ $ g++-trunk -c -std=3Dc++11 small.cpp small.cpp:3:42: error: =E2=80=98f=E2=80=99 function uses =E2=80=98auto=E2= =80=99 type specifier without trailing return type template < typename T > static auto f () { return 0; } ^ small.cpp:3:42: note: deduced return type only available with -std=3Dc++14 = or -std=3Dgnu++14 small.cpp:7:26: internal compiler error: in push_access_scope, at cp/pt.c:2= 27 auto a =3D A < int > {}.g (); ^ 0x6c2c37 push_access_scope ../../gcc-source-trunk/gcc/cp/pt.c:226 0x71e343 fn_type_unification(tree_node*, tree_node*, tree_node*, tree_node* const*, unsigned int, tree_node*, unification_kind_t, int, bool, bool) ../../gcc-source-trunk/gcc/cp/pt.c:18004 0x67bfbb add_template_candidate_real ../../gcc-source-trunk/gcc/cp/call.c:3120 0x67ccec add_template_candidate ../../gcc-source-trunk/gcc/cp/call.c:3198 0x67ccec add_candidates ../../gcc-source-trunk/gcc/cp/call.c:5400 0x67d759 build_new_method_call_1 ../../gcc-source-trunk/gcc/cp/call.c:8515 0x67d759 build_new_method_call(tree_node*, tree_node*, vec**, tree_node*, int, tree_node**, int) ../../gcc-source-trunk/gcc/cp/call.c:8714 0x79e483 cp_parser_postfix_expression ../../gcc-source-trunk/gcc/cp/parser.c:6908 0x79c01c cp_parser_unary_expression ../../gcc-source-trunk/gcc/cp/parser.c:8019 0x7a5e57 cp_parser_cast_expression ../../gcc-source-trunk/gcc/cp/parser.c:8696 0x7a6455 cp_parser_binary_expression ../../gcc-source-trunk/gcc/cp/parser.c:8798 0x7a6d40 cp_parser_assignment_expression ../../gcc-source-trunk/gcc/cp/parser.c:9086 0x7a717a cp_parser_constant_expression ../../gcc-source-trunk/gcc/cp/parser.c:9354 0x7a7904 cp_parser_initializer_clause ../../gcc-source-trunk/gcc/cp/parser.c:21048 0x7a929b cp_parser_initializer ../../gcc-source-trunk/gcc/cp/parser.c:20986 0x7bb3fc cp_parser_init_declarator ../../gcc-source-trunk/gcc/cp/parser.c:18851 0x7bbb39 cp_parser_simple_declaration ../../gcc-source-trunk/gcc/cp/parser.c:12567 0x7bbe71 cp_parser_block_declaration ../../gcc-source-trunk/gcc/cp/parser.c:12435 0x7c3dd0 cp_parser_declaration ../../gcc-source-trunk/gcc/cp/parser.c:12332 0x7c2914 cp_parser_declaration_seq_opt ../../gcc-source-trunk/gcc/cp/parser.c:12211 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See for instructions. $ ------------------------------------------------------------------------- template < typename S > struct A {=20 template < typename T > static auto f () { return 0; } template < class U =3D decltype (f < S > ()) > int g () { return 0; } }; auto a =3D A < int > {}.g (); >>From gcc-bugs-return-538795-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 03:09:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25462 invoked by alias); 29 Sep 2016 03:09:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24972 invoked by uid 48); 29 Sep 2016 03:08:40 -0000 From: "su at cs dot ucdavis.edu" To: gcc-bugs@gcc.gnu.org Subject: =?UTF-8?B?W0J1ZyBjKysvNzc3OTFdIE5ldzogSUNFIG9uIGludmFsaWQgQysrMTEgY29k?= =?UTF-8?B?ZSB3aXRoIHJlZGVmaW5lZCBmdW5jdGlvbiBwYXJhbWV0ZXI6IHRyZWUgY2hl?= =?UTF-8?B?Y2s6IGV4cGVjdGVkIHRyZWUgdGhhdCBjb250YWlucyDigJhkZWNsIG1pbmlt?= =?UTF-8?B?YWzigJkgc3RydWN0dXJlLCBoYXZlIOKAmGVycm9yX21hcmvigJkgaW4gY3Bf?= =?UTF-8?B?cGFyc2VyX2xhbWJkYV9kZWNsYXJhdG9yX29wdCwgYXQgY3AvcGFyc2VyLmM6?= =?UTF-8?B?MTAxMQ==?= Date: Thu, 29 Sep 2016 03:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: su at cs dot ucdavis.edu X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02410.txt.bz2 Content-length: 3818 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77791 Bug ID: 77791 Summary: ICE on invalid C++11 code with redefined function parameter: tree check: expected tree that contains =E2=80=98decl minimal=E2=80=99 structure, have =E2=80= =98error_mark=E2=80=99 in cp_parser_lambda_declarator_opt, at cp/parser.c:1011 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: su at cs dot ucdavis.edu Target Milestone: --- It is regression from 6.2.x. $ g++-trunk -v Using built-in specs. COLLECT_GCC=3Dg++-trunk COLLECT_LTO_WRAPPER=3D/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/= 7.0.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: ../gcc-source-trunk/configure --enable-languages=3Dc,c++,l= to --prefix=3D/usr/local/gcc-trunk --disable-bootstrap Thread model: posix gcc version 7.0.0 20160928 (experimental) [trunk revision 240585] (GCC)=20 $=20 $ g++-trunk -std=3Dc++11 -c small.cpp small.cpp:1:29: error: redefinition of =E2=80=98int i=E2=80=99 auto a =3D [] (int i, int i =3D 0) {}; ^ small.cpp:1:18: note: =E2=80=98int i=E2=80=99 previously declared here auto a =3D [] (int i, int i =3D 0) {}; ^ small.cpp:1:29: internal compiler error: tree check: expected tree that contains =E2=80=98decl minimal=E2=80=99 structure, have =E2=80=98error_mark= =E2=80=99 in cp_parser_lambda_declarator_opt, at cp/parser.c:10119 auto a =3D [] (int i, int i =3D 0) {}; ^ 0x1090e44 tree_contains_struct_check_failed(tree_node const*, tree_node_structure_enum, char const*, int, char const*) ../../gcc-source-trunk/gcc/tree.c:9914 0x7b4612 contains_struct_check ../../gcc-source-trunk/gcc/tree.h:3145 0x7b4612 cp_parser_lambda_declarator_opt ../../gcc-source-trunk/gcc/cp/parser.c:10119 0x792a82 cp_parser_lambda_expression ../../gcc-source-trunk/gcc/cp/parser.c:9779 0x792a82 cp_parser_primary_expression ../../gcc-source-trunk/gcc/cp/parser.c:4966 0x79dbe6 cp_parser_postfix_expression ../../gcc-source-trunk/gcc/cp/parser.c:6724 0x79c01c cp_parser_unary_expression ../../gcc-source-trunk/gcc/cp/parser.c:8019 0x7a5e57 cp_parser_cast_expression ../../gcc-source-trunk/gcc/cp/parser.c:8696 0x7a6455 cp_parser_binary_expression ../../gcc-source-trunk/gcc/cp/parser.c:8798 0x7a6d40 cp_parser_assignment_expression ../../gcc-source-trunk/gcc/cp/parser.c:9086 0x7a717a cp_parser_constant_expression ../../gcc-source-trunk/gcc/cp/parser.c:9354 0x7a7904 cp_parser_initializer_clause ../../gcc-source-trunk/gcc/cp/parser.c:21048 0x7a929b cp_parser_initializer ../../gcc-source-trunk/gcc/cp/parser.c:20986 0x7bb3fc cp_parser_init_declarator ../../gcc-source-trunk/gcc/cp/parser.c:18851 0x7bbb39 cp_parser_simple_declaration ../../gcc-source-trunk/gcc/cp/parser.c:12567 0x7bbe71 cp_parser_block_declaration ../../gcc-source-trunk/gcc/cp/parser.c:12435 0x7c3dd0 cp_parser_declaration ../../gcc-source-trunk/gcc/cp/parser.c:12332 0x7c2914 cp_parser_declaration_seq_opt ../../gcc-source-trunk/gcc/cp/parser.c:12211 0x7c2c58 cp_parser_translation_unit ../../gcc-source-trunk/gcc/cp/parser.c:4356 0x7c2c58 c_parse_file() ../../gcc-source-trunk/gcc/cp/parser.c:37805 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See for instructions. $=20 ------------------------------------- auto a =3D [] (int i, int i =3D 0) {}; >>From gcc-bugs-return-538796-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 04:48:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 98778 invoked by alias); 29 Sep 2016 04:48:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 98571 invoked by uid 48); 29 Sep 2016 04:48:29 -0000 From: "zoltan at bendor dot com.au" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77770] [5/6/7 Regression] Internal compiler error on source which compiles with earlier versions. Date: Thu, 29 Sep 2016 04:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: ice-on-valid-code, ra X-Bugzilla-Severity: normal X-Bugzilla-Who: zoltan at bendor dot com.au X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02411.txt.bz2 Content-length: 246 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77770 --- Comment #4 from Zoltan Kocsi --- Tested several gcc versions.=20 Up to and including 4.8.5 everything seems to be OK, but 4.9.0 or above all throw the error. >>From gcc-bugs-return-538797-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 07:08:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 109124 invoked by alias); 29 Sep 2016 07:08:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 109008 invoked by uid 48); 29 Sep 2016 07:07:54 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Thu, 29 Sep 2016 07:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: lto X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02412.txt.bz2 Content-length: 1300 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 --- Comment #8 from Markus Trippelsdorf --- Looks like tree-ssa-pre.c also needs to be guarded: 0x10c3a273 crash_signal ../../gcc/gcc/toplev.c:337 0x10f30e2c eliminate_dom_walker::before_dom_children(basic_block_def*) ../../gcc/gcc/tree-ssa-pre.c:4448 0x11807427 dom_walker::walk(basic_block_def*) ../../gcc/gcc/domwalk.c:265 0x10f2a9a7 eliminate ../../gcc/gcc/tree-ssa-pre.c:4709 0x10f3e31f execute ../../gcc/gcc/tree-ssa-pre.c:5055 diff --git a/gcc/tree-ssa-pre.c b/gcc/tree-ssa-pre.c index 3675fb9..cc008c2 100644 --- a/gcc/tree-ssa-pre.c +++ b/gcc/tree-ssa-pre.c @@ -4445,8 +4445,8 @@ eliminate_dom_walker::before_dom_children (basic_bloc= k b) /* We can only remove the later store if the former aliases at least all accesses the later one does. */ alias_set_type set =3D get_alias_set (lhs); - if (vnresult->set =3D=3D set - || alias_set_subset_of (set, vnresult->set)) + if (vnresult && (vnresult->set =3D=3D set + || alias_set_subset_of (set, vnresult->set))) { if (dump_file && (dump_flags & TDF_DETAILS)) { >>From gcc-bugs-return-538798-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 07:16:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24709 invoked by alias); 29 Sep 2016 07:15:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24586 invoked by uid 55); 29 Sep 2016 07:15:47 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Thu, 29 Sep 2016 07:15:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: lto X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02413.txt.bz2 Content-length: 544 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 --- Comment #9 from Richard Biener --- Author: rguenth Date: Thu Sep 29 07:15:13 2016 New Revision: 240610 URL: https://gcc.gnu.org/viewcvs?rev=3D240610&root=3Dgcc&view=3Drev Log: 2016-09-29 Richard Biener PR tree-optimization/77768 * tree-ssa-sccvn.c (visit_reference_op_store): Properly deal with stores to a place we know has a constant value. Modified: trunk/gcc/ChangeLog trunk/gcc/tree-ssa-sccvn.c >>From gcc-bugs-return-538799-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 07:18:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 28629 invoked by alias); 29 Sep 2016 07:18:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 28491 invoked by uid 48); 29 Sep 2016 07:18:19 -0000 From: "schwab@linux-m68k.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77789] MinGW option ./configure does not make Date: Thu, 29 Sep 2016 07:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: schwab@linux-m68k.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: MOVED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02414.txt.bz2 Content-length: 522 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77789 Andreas Schwab changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |MOVED --- Comment #1 from Andreas Schwab --- You should report that to the maintainers of the gsl libraries. Btw, there= are no errors in the build log. >>From gcc-bugs-return-538800-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 07:20:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 34290 invoked by alias); 29 Sep 2016 07:20:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34132 invoked by uid 55); 29 Sep 2016 07:20:19 -0000 From: "rguenther at suse dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Thu, 29 Sep 2016 07:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: lto X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenther at suse dot de X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02415.txt.bz2 Content-length: 1711 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 --- Comment #10 from rguenther at suse dot de --- On Thu, 29 Sep 2016, trippels at gcc dot gnu.org wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 >=20 > --- Comment #8 from Markus Trippelsdorf --- > Looks like tree-ssa-pre.c also needs to be guarded: >=20 > 0x10c3a273 crash_signal > ../../gcc/gcc/toplev.c:337 > 0x10f30e2c eliminate_dom_walker::before_dom_children(basic_block_def*) > ../../gcc/gcc/tree-ssa-pre.c:4448 > 0x11807427 dom_walker::walk(basic_block_def*) > ../../gcc/gcc/domwalk.c:265 > 0x10f2a9a7 eliminate > ../../gcc/gcc/tree-ssa-pre.c:4709 > 0x10f3e31f execute > ../../gcc/gcc/tree-ssa-pre.c:5055 >=20 >=20 > diff --git a/gcc/tree-ssa-pre.c b/gcc/tree-ssa-pre.c > index 3675fb9..cc008c2 100644 > --- a/gcc/tree-ssa-pre.c > +++ b/gcc/tree-ssa-pre.c > @@ -4445,8 +4445,8 @@ eliminate_dom_walker::before_dom_children (basic_bl= ock b) > /* We can only remove the later store if the former aliases > at least all accesses the later one does. */ > alias_set_type set =3D get_alias_set (lhs); > - if (vnresult->set =3D=3D set > - || alias_set_subset_of (set, vnresult->set)) > + if (vnresult && (vnresult->set =3D=3D set > + || alias_set_subset_of (set, vnresult->set))) > { > if (dump_file && (dump_flags & TDF_DETAILS)) > { I'm testing ! vnresult || vnresult->set =3D=3D ... instead, we can remove stores to readonly memory if it stores the same value as present. Richard. >>From gcc-bugs-return-538801-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 07:35:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 105647 invoked by alias); 29 Sep 2016 07:35:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 105373 invoked by uid 48); 29 Sep 2016 07:35:09 -0000 From: "gk at torproject dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77459] [6/7 Regression] undefined reference to `snprintf' when building mingw-w64 cross-compiler Date: Thu, 29 Sep 2016 07:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: gk at torproject dot org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02416.txt.bz2 Content-length: 785 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77459 --- Comment #5 from Georg Koppen --- No, it is still broken after applying the patch to 6.2.0: ../src/c++11/.libs/libc++11convenience.a(debug.o): In function `format_word': /home/ubuntu/build/gcc/i686-w64-mingw32/libstdc++-v3/src/c++11/../../../../= gcc-6.2.0/libstdc++-v3/src/c++11/debug.cc:536: undefined reference to `snprintf' /home/ubuntu/build/gcc/i686-w64-mingw32/libstdc++-v3/src/c++11/../../../../= gcc-6.2.0/libstdc++-v3/src/c++11/debug.cc:536: undefined reference to `snprintf' /home/ubuntu/build/gcc/i686-w64-mingw32/libstdc++-v3/src/c++11/../../../../= gcc-6.2.0/libstdc++-v3/src/c++11/debug.cc:536: undefined reference to `snprintf' collect2: error: ld returned 1 exit status >>From gcc-bugs-return-538802-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 07:40:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 119316 invoked by alias); 29 Sep 2016 07:40:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 119018 invoked by uid 48); 29 Sep 2016 07:40:40 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77788] profiledbootstrap failures on powerpc64le Date: Thu, 29 Sep 2016 07:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02417.txt.bz2 Content-length: 472 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77788 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |diagnostic --- Comment #1 from Richard Biener --- I believe you usually need to use --disable-werror for non-standard bootstr= aps like with FDO or LTO. >>From gcc-bugs-return-538803-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 07:50:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 50677 invoked by alias); 29 Sep 2016 07:50:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 50005 invoked by uid 48); 29 Sep 2016 07:50:13 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77779] unnecessary trap checks for pointer subtraction with -ftrapv Date: Thu, 29 Sep 2016 07:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 5.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02418.txt.bz2 Content-length: 1413 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77779 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 Ever confirmed|0 |1 Known to fail| |5.4.0, 6.2.0 --- Comment #1 from Richard Biener --- Same with GCC 6. On trunk we get diff: .LFB0: .cfi_startproc subq $8, %rsp .cfi_def_cfa_offset 16 call __subvdi3 sarq $3, %rax movl $2, %esi movq %rax, %rdi call __mulvdi3 addq $8, %rsp .cfi_def_cfa_offset 8 ret because we "optimize" (canonicalize) the add to a multiplication by two. I believe the DImode overflow minus is spurious because of the way we represent pointer subtraction: a.0_1 =3D (long int) a_5(D); b.1_2 =3D (long int) b_6(D); _3 =3D a.0_1 - b.1_2; _4 =3D _3 /[ex] 8; thus a - b isn't distinguishable from ((long)a - (long)b) / 8. Anyway, confirmed. The "fix" is to make trapping ops explicit by using the existing builtins / internal-fns from the frontends that (want to) implement -ftrapv. There's a separate bug about this as well. >>From gcc-bugs-return-538804-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 07:59:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25666 invoked by alias); 29 Sep 2016 07:59:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25482 invoked by uid 48); 29 Sep 2016 07:59:40 -0000 From: "mati865 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/66297] [C++14] [DR 1684] constexpr non-static member functions of non-literal types Date: Thu, 29 Sep 2016 07:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mati865 at gmail dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02419.txt.bz2 Content-length: 126 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D66297 --- Comment #1 from mati865 at gmail dot com --- Still affects GCC 6.2. >>From gcc-bugs-return-538805-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 08:46:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 86320 invoked by alias); 29 Sep 2016 08:46:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 85807 invoked by uid 48); 29 Sep 2016 08:45:50 -0000 From: "ubizjak at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Thu, 29 Sep 2016 08:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ubizjak at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02420.txt.bz2 Content-length: 1842 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 --- Comment #6 from Uro=C5=A1 Bizjak --- (In reply to H.J. Lu from comment #5) > For level >=3D 7, ECX may have other input values. It is incorrect to > assume that ECX only takes 0 or 1. We should get another macro for > level >=3D 7 with input for ECX: We can extend __get_cpuid to assume subleaf =3D 0 and introduce new __get_cpuid_subleaf, in effect: --cut here-- static __inline int __get_cpuid (unsigned int __level, unsigned int *__eax, unsigned int *__ebx, unsigned int *__ecx, unsigned int *__edx) { unsigned int __ext =3D __level & 0x80000000; if (__get_cpuid_max (__ext, 0) < __level) return 0; if (__ext) __cpuid (__level, *__eax, *__ebx, *__ecx, *__edx); else if (__level >=3D 7) __cpuid_count (__level, 0, *__eax, *__ebx, *__ecx, *__edx); else __cpuid (__level, *__eax, *__ebx, *__ecx, *__edx); return 1; } static __inline int __get_cpuid_subleaf (unsigned int __level, unsigned int __subleaf, unsigned int *__eax, unsigned int *__ebx, unsigned int *__ecx, unsigned int *__edx) { unsigned int __ext =3D __level & 0x80000000; if (__get_cpuid_max (__ext, 0) < __level) return 0; if (__ext) __cpuid (__level, *__eax, *__ebx, *__ecx, *__edx); else if (__level >=3D 7) { __cpuid_count (__level, 0, *__eax, *__ebx, *__ecx, *__edx); if (__subleaf > *__eax) return 0; if (__subleaf) __cpuid_count (__level, __subleaf, *__eax, *__ebx, *__ecx, *__edx); } else __cpuid (__level, *__eax, *__ebx, *__ecx, *__edx); return 1; } --cut here-- Please note that the above __get_cpuid_subleaf also checks return value from subleaf =3D 0 and fails if requested subleaf is out of allowed range. >>From gcc-bugs-return-538806-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 09:34:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22289 invoked by alias); 29 Sep 2016 09:34:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22118 invoked by uid 48); 29 Sep 2016 09:34:21 -0000 From: "michele.caini at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77792] New: Generic lamdba scope issue when working with list::remove_if Date: Thu, 29 Sep 2016 09:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: michele.caini at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02421.txt.bz2 Content-length: 1274 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77792 Bug ID: 77792 Summary: Generic lamdba scope issue when working with list::remove_if Product: gcc Version: 6.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: michele.caini at gmail dot com Target Milestone: --- Consider the following code: #include #include template struct S { using FT =3D void(*)();=20 struct T { FT func; }; template=20 static void f() { }=20 std::list l{ { &f }, { &f } }; void run() { l.remove_if([](const T &t) { return t.func =3D=3D &f; }); = // (1) l.remove_if([](const auto &t) { return t.func =3D=3D &f; }= ); // (2) } }; int main() {=20 S s; s.run(); } (1) compiles fine, (2) doesn't compile with the error: > error: 'f' was not declared in this scope Note also that it compiles if modified as it follows: l.remove_if([](const auto &t) { return t.func =3D=3D &S::f; });= // (2) >>From gcc-bugs-return-538807-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 09:42:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 84954 invoked by alias); 29 Sep 2016 09:42:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 84724 invoked by uid 48); 29 Sep 2016 09:42:43 -0000 From: "lars.schulna at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug ada/77793] New: GNAT Bug Box when using the "&" operator from Ada.Containers.Vectors on inline uses of expression functions Date: Thu, 29 Sep 2016 09:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: ada X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: lars.schulna at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02422.txt.bz2 Content-length: 5454 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77793 Bug ID: 77793 Summary: GNAT Bug Box when using the "&" operator from Ada.Containers.Vectors on inline uses of expression functions Product: gcc Version: 6.2.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: ada Assignee: unassigned at gcc dot gnu.org Reporter: lars.schulna at gmail dot com Target Milestone: --- Created attachment 39723 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39723&action=3Dedit Source file triggering the bug box Compiling the attached file bug.adb with > gcc -v -save-temps -gnatd.n -c bug.adb Triggers the following bug box: Using built-in specs. COLLECT_GCC=3Dgcc Target: x86_64-pc-linux-gnu Configured with: /build/gcc-multilib/src/gcc/configure --prefix=3D/usr --libdir=3D/usr/lib --libexecdir=3D/usr/lib --mandir=3D/usr/share/man --infodir=3D/usr/share/info --with-bugurl=3Dhttps://bugs.archlinux.org/ --enable-languages=3Dc,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=3Dposix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=3Dgnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=3Dgnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=3Drelease Thread model: posix gcc version 6.2.1 20160830 (GCC)=20 COLLECT_GCC_OPTIONS=3D'-v' '-save-temps' '-gnatd.n' '-c' '-mtune=3Dgeneric' '-march=3Dx86-64' /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/gnat1 -quiet -dumpbase bug.adb -aux= base bug -gnatd.n -mtune=3Dgeneric -march=3Dx86-64 bug.adb -o bug.s /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/system.ads bug.adb /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/ada.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-contai.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-convec.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-iteint.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-conhel.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-finali.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-finroo.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-atocou.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-stream.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-tags.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-stoele.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-stalib.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-unccon.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-exctab.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-soflin.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-except.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-parame.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-traent.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-stache.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-addima.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-conca2.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-stopoo.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-stratt.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-unstyp.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-secsta.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-stposu.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-finmas.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-convec.adb /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-cgarso.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-uncdea.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/a-conhel.adb /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-stoele.adb /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-stalib.adb /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-memory.ads /usr/lib/gcc/x86_64-pc-linux-gnu/6.2.1/adainclude/s-atocou.adb +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3DGNAT BUG DETECTED=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D+ | 6.2.1 20160830 (x86_64-pc-linux-gnu) GCC error: | | in gnat_to_gnu_entity, at ada/gcc-interface/decl.c:376 | | Error detected at bug.adb:23:20 | | Please submit a bug report; see http://gcc.gnu.org/bugs.html. | | Use a subject line meaningful to you and us to track the bug. | | Include the entire contents of this bug box in the report. | | Include the exact command that you entered. | | Also include sources listed below. | +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D+ Note that the inline use of the function expression, the vector package and= the record types are necessary to trigger the box. Normal function declarations, extracting the parameters to "&" out into separate vars or using a user defined package with an operator "&" all compile as expected. >>From gcc-bugs-return-538808-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 09:45:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 12356 invoked by alias); 29 Sep 2016 09:45:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 12209 invoked by uid 48); 29 Sep 2016 09:45:40 -0000 From: "lars.schulna at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug ada/77793] GNAT Bug Box when using the "&" operator from Ada.Containers.Vectors on inline uses of expression functions Date: Thu, 29 Sep 2016 09:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: ada X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: lars.schulna at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02423.txt.bz2 Content-length: 164 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77793 --- Comment #1 from Lars Schulna --- Using record types is mandatory as well. >>From gcc-bugs-return-538809-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 10:13:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 45814 invoked by alias); 29 Sep 2016 10:13:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 45694 invoked by uid 48); 29 Sep 2016 10:12:53 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77763] ICE in parse_struct_map, at fortran/parse.c:3064 Date: Thu, 29 Sep 2016 10:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc target_milestone everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02424.txt.bz2 Content-length: 687 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77763 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 CC| |marxin at gcc dot gnu.org Target Milestone|--- |6.3 Ever confirmed|0 |1 Known to fail| |6.2.0, 7.0 --- Comment #2 from Martin Li=C5=A1ka --- Started with r235999. >>From gcc-bugs-return-538810-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 10:41:08 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 120026 invoked by alias); 29 Sep 2016 10:41:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 119827 invoked by uid 48); 29 Sep 2016 10:40:55 -0000 From: "macro@linux-mips.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77300] [MIPS] incorrectly moves instruction containing local GOT16 relocation into a delay slot Date: Thu, 29 Sep 2016 10:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: macro@linux-mips.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02425.txt.bz2 Content-length: 1461 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77300 Maciej W. Rozycki changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |macro@linux-mips.org --- Comment #2 from Maciej W. Rozycki --- Thank you for your bug report. The SVR4 MIPS psABI (o32) mandates that a HI16 or a local GOT16 relocation is immediately followed by a matching LO16 relocation. To address the very scenario described here however as a GNU extension we support an arbitrary number of HI16 or GOT16 relocations followed by a matching LO16 relocation. This is explicitly noted in BFD sources: "The ABI requires that the *LO16 immediately follow the *HI16. However, as a GNU extension, we permit an arbitrary number of *HI16s to be associated with a single *LO16. This significantly simplies the relocation handling in gcc." and has been like this since forever. The pairing is supposed to be done by the assembler so as long it has been done correctly there's nothing for the linker to complain about. I see in the Debian bug report referred that this error only happens with `gold', so I am highly suspicious that this is a `gold' bug. To ensure all is in order would you therefore please send me the output of `readelf -r src.o' and double-check your results with both `ld' and `gold'? >>From gcc-bugs-return-538811-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 10:47:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23372 invoked by alias); 29 Sep 2016 10:47:15 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23166 invoked by uid 48); 29 Sep 2016 10:47:03 -0000 From: "james410 at cowgill dot org.uk" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77300] [MIPS] incorrectly moves instruction containing local GOT16 relocation into a delay slot Date: Thu, 29 Sep 2016 10:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: james410 at cowgill dot org.uk X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02426.txt.bz2 Content-length: 4009 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77300 --- Comment #3 from James Cowgill --- $ mipsel-linux-gnu-readelf -r src.o Relocation section '.rel.text' at offset 0x584 contains 6 entries: Offset Info Type Sym.Value Sym. Name 00000000 00001005 R_MIPS_HI16 00000000 _gp_disp 00000004 00001006 R_MIPS_LO16 00000000 _gp_disp 00000010 0000170b R_MIPS_CALL16 00000000 _ZN1GC1Ei 00000028 00001725 R_MIPS_JALR 00000000 _ZN1GC1Ei 00000038 0000130b R_MIPS_CALL16 00000000 _ZN1HIiE5m_fn5ERK1G 0000003c 00001325 R_MIPS_JALR 00000000 _ZN1HIiE5m_fn5ERK1G Relocation section '.rel.pdr' at offset 0x5b4 contains 3 entries: Offset Info Type Sym.Value Sym. Name 00000000 00000702 R_MIPS_32 00000000 _ZN1HIiE5m_fn4ERK1G.is 00000020 00001302 R_MIPS_32 00000000 _ZN1HIiE5m_fn5ERK1G 00000040 00001802 R_MIPS_32 00000000 _Z3fn1v Relocation section '.rel.text._ZN1HIiE5m_fn4ERK1G.isra.1' at offset 0x5cc contains 6 entries: Offset Info Type Sym.Value Sym. Name 00000000 00001005 R_MIPS_HI16 00000000 _gp_disp 00000004 00001006 R_MIPS_LO16 00000000 _gp_disp 00000010 0000110b R_MIPS_CALL16 00000000 _ZN1DC1EP1C 00000030 00001125 R_MIPS_JALR 00000000 _ZN1DC1EP1C 00000044 0000120b R_MIPS_CALL16 00000000 _ZN1HIiE5m_fn3EP1C 00000048 00001225 R_MIPS_JALR 00000000 _ZN1HIiE5m_fn3EP1C Relocation section '.rel.text._ZN1HIiE5m_fn5ERK1G' at offset 0x5fc contains= 18 entries: Offset Info Type Sym.Value Sym. Name 00000000 00001005 R_MIPS_HI16 00000000 _gp_disp 00000004 00001006 R_MIPS_LO16 00000000 _gp_disp 00000010 0000140b R_MIPS_CALL16 00000000 _ZN1HIiE5m_fn2Ev 00000028 00001425 R_MIPS_JALR 00000000 _ZN1HIiE5m_fn2Ev 00000038 0000150b R_MIPS_CALL16 00000000 _ZN1HIiE5m_fn1Ev 0000003c 00001525 R_MIPS_JALR 00000000 _ZN1HIiE5m_fn1Ev 00000048 0000160b R_MIPS_CALL16 00000000 _ZN1HIiE5m_fn6Ev 0000004c 00001625 R_MIPS_JALR 00000000 _ZN1HIiE5m_fn6Ev 0000005c 00000709 R_MIPS_GOT16 00000000 _ZN1HIiE5m_fn4ERK1G.is 00000060 00000706 R_MIPS_LO16 00000000 _ZN1HIiE5m_fn4ERK1G.is 00000068 00000725 R_MIPS_JALR 00000000 _ZN1HIiE5m_fn4ERK1G.is 00000074 00000725 R_MIPS_JALR 00000000 _ZN1HIiE5m_fn4ERK1G.is 00000094 0000170b R_MIPS_CALL16 00000000 _ZN1GC1Ei 0000009c 00001725 R_MIPS_JALR 00000000 _ZN1GC1Ei 000000b0 0000150b R_MIPS_CALL16 00000000 _ZN1HIiE5m_fn1Ev 000000b4 00001525 R_MIPS_JALR 00000000 _ZN1HIiE5m_fn1Ev 000000cc 00000709 R_MIPS_GOT16 00000000 _ZN1HIiE5m_fn4ERK1G.is 000000d4 0000150b R_MIPS_CALL16 00000000 _ZN1HIiE5m_fn1Ev Relocation section '.rel.eh_frame' at offset 0x68c contains 3 entries: Offset Info Type Sym.Value Sym. Name 0000001c 00000602 R_MIPS_32 00000000 .text._ZN1HIiE5m_fn4ER 00000054 00000802 R_MIPS_32 00000000 .text._ZN1HIiE5m_fn5ER 00000090 00000202 R_MIPS_32 00000000 .text $ mipsel-linux-gnu-gcc -fuse-ld=3Dbfd src.o [... omitted irrelevant undefined references] /usr/lib/gcc-cross/mipsel-linux-gnu/6/../../../../mipsel-linux-gnu/bin/ld.b= fd: src.o: Can't find matching LO16 reloc against `_ZN1HIiE5m_fn4ERK1G.isra.1' = for R_MIPS_GOT16 at 0xcc in section `.text._ZN1HIiE5m_fn5ERK1G[_ZN1HIiE5m_fn5ERK1G]' [...] $ mipsel-linux-gnu-gcc -fuse-ld=3Dgold src.o=20 /usr/lib/gcc-cross/mipsel-linux-gnu/6/../../../../mipsel-linux-gnu/bin/ld.g= old: error: Can't find matching LO16 reloc /usr/lib/gcc-cross/mipsel-linux-gnu/6/../../../../mipsel-linux-gnu/bin/ld.g= old: error: Can't find matching LO16 reloc /usr/lib/gcc-cross/mipsel-linux-gnu/6/../../../../mipsel-linux-gnu/bin/ld.g= old: error: Can't find matching LO16 reloc /usr/lib/gcc-cross/mipsel-linux-gnu/6/../../../../mipsel-linux-gnu/bin/ld.g= old: error: Can't find matching LO16 reloc [...] >>From gcc-bugs-return-538812-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 10:48:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35226 invoked by alias); 29 Sep 2016 10:48:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30829 invoked by uid 48); 29 Sep 2016 10:48:17 -0000 From: "pawel_sikora at zoho dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77794] New: libstdc++ doesn't bootstrap with ./cofnigure --enable-symvers=gnu-versioned-namespace Date: Thu, 29 Sep 2016 10:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pawel_sikora at zoho dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02427.txt.bz2 Content-length: 687 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77794 Bug ID: 77794 Summary: libstdc++ doesn't bootstrap with ./cofnigure --enable-symvers=3Dgnu-versioned-namespace Product: gcc Version: 6.2.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: pawel_sikora at zoho dot com Target Milestone: --- Created attachment 39724 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39724&action=3Dedit buildlog hi, the recent 6.2-svn bootstrap fails on libstdc++. compressed buildlog attached. >>From gcc-bugs-return-538813-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 11:08:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 28412 invoked by alias); 29 Sep 2016 11:08:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 28224 invoked by uid 48); 29 Sep 2016 11:08:28 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77765] ICE in gfc_match_oacc_routine, at fortran/openmp.c:1781 Date: Thu, 29 Sep 2016 11:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code, openacc X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02428.txt.bz2 Content-length: 800 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77765 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-invalid-code, | |openacc Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 CC| |marxin at gcc dot gnu.org Ever confirmed|0 |1 Known to fail| |5.4.0, 6.2.0, 7.0 --- Comment #1 from Martin Li=C5=A1ka --- Confirmed. On trunk, it started to fail with r231081. >>From gcc-bugs-return-538814-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 11:18:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 45032 invoked by alias); 29 Sep 2016 11:18:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 44860 invoked by uid 48); 29 Sep 2016 11:18:19 -0000 From: "tripiana at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/70932] flexible array member with non-trivial destructor Date: Thu, 29 Sep 2016 11:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: tripiana at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02429.txt.bz2 Content-length: 541 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D70932 Carlos Tripiana Montes changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tripiana at gmail dot com --- Comment #8 from Carlos Tripiana Montes --- (In reply to Paul Wankadia from comment #7) > Ahh. Thank you for clarifying. I will continue to watch this bug then. :) Any updates on this?? >>From gcc-bugs-return-538815-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 11:32:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125649 invoked by alias); 29 Sep 2016 11:32:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125485 invoked by uid 48); 29 Sep 2016 11:32:12 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77795] New: [6/7 Regression] ::gets declared in C++14 mode Date: Thu, 29 Sep 2016 11:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone cf_gcctarget Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02430.txt.bz2 Content-length: 1190 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77795 Bug ID: 77795 Summary: [6/7 Regression] ::gets declared in C++14 mode Product: gcc Version: 6.2.1 Status: UNCONFIRMED Keywords: rejects-valid Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: redi at gcc dot gnu.org Target Milestone: --- Target: *-*-gnu-linux This is a valid C++14 program that is rejected since 6.1: int gets; #include And this should not compile, but is accepted since 6.1: #include using ::gets; Since we switched the default to -std=3Dgnu++14 the configure checks for ::= gets find it is missing from glibc, so we don't define _GLIBCXX_HAVE_GETS, and t= hen in we do: #ifndef _GLIBCXX_HAVE_GETS extern "C" char* gets (char* __s) __attribute__((__deprecated__)); #endif The configure check should use -std=3Dgnu++98 or -std=3Dgnu++11 (so we corr= ectly detect the presence of ::gets when it's needed) and the declaration should = only be done for C++98 and C++11 (so we only add it when it's needed). >>From gcc-bugs-return-538816-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 11:32:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 126593 invoked by alias); 29 Sep 2016 11:32:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126442 invoked by uid 48); 29 Sep 2016 11:32:37 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77795] [6/7 Regression] ::gets declared in C++14 mode Date: Thu, 29 Sep 2016 11:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: redi at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cf_known_to_work assigned_to everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02431.txt.bz2 Content-length: 604 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77795 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-29 Known to work| |5.4.0 Assignee|unassigned at gcc dot gnu.org |redi at gcc dot gnu= .org Ever confirmed|0 |1 Known to fail| |6.2.0, 7.0 >>From gcc-bugs-return-538817-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 11:37:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4557 invoked by alias); 29 Sep 2016 11:37:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3939 invoked by uid 48); 29 Sep 2016 11:37:10 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77771] internal compiler error: in cxx_eval_bit_field_ref, at cp/constexpr.c:2090 Date: Thu, 29 Sep 2016 11:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.4.1 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02432.txt.bz2 Content-length: 762 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77771 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 CC| |marxin at gcc dot gnu.org Ever confirmed|0 |1 Known to fail| |4.7.4, 4.8.5, 4.9.4, 5.4.0, | |6.2.0 --- Comment #1 from Martin Li=C5=A1ka --- Confirmed. >>From gcc-bugs-return-538818-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 11:42:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 30221 invoked by alias); 29 Sep 2016 11:42:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30062 invoked by uid 48); 29 Sep 2016 11:42:13 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77782] ICE in gfc_get_union_type, at fortran/trans-types.c:2387 Date: Thu, 29 Sep 2016 11:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02433.txt.bz2 Content-length: 719 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77782 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 CC| |fritzoreese at gmail dot c= om, | |marxin at gcc dot gnu.org Ever confirmed|0 |1 Known to fail| |7.0 --- Comment #1 from Martin Li=C5=A1ka --- Confirmed, started with r239819. >>From gcc-bugs-return-538819-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 11:44:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 32447 invoked by alias); 29 Sep 2016 11:44:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 32303 invoked by uid 48); 29 Sep 2016 11:44:10 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77783] ICE in gfc_compare_union_types, at fortran/interface.c:545 Date: Thu, 29 Sep 2016 11:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02434.txt.bz2 Content-length: 645 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77783 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 CC| |marxin at gcc dot gnu.org Ever confirmed|0 |1 Known to fail| |6.2.0, 7.0 --- Comment #2 from Martin Li=C5=A1ka --- Confirmed, started with r235999. >>From gcc-bugs-return-538820-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 11:47:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 51162 invoked by alias); 29 Sep 2016 11:47:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 47225 invoked by uid 48); 29 Sep 2016 11:47:11 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77785] ICE in gfc_get_caf_token_offset, at fortran/trans-expr.c:1990 Date: Thu, 29 Sep 2016 11:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc target_milestone everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02435.txt.bz2 Content-length: 822 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77785 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 CC| |marxin at gcc dot gnu.org, | |vehre at gcc dot gnu.org Target Milestone|--- |7.0 Ever confirmed|0 |1 Known to fail| |7.0 --- Comment #1 from Martin Li=C5=A1ka --- Started with r240231. >>From gcc-bugs-return-538821-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 11:55:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 67436 invoked by alias); 29 Sep 2016 11:55:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 67316 invoked by uid 48); 29 Sep 2016 11:55:04 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77786] [5 Regression] ICE in tsubst_copy, at cp/pt.c:13040 Date: Thu, 29 Sep 2016 11:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.4.1 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_known_to_work keywords cf_reconfirmed_on cc everconfirmed short_desc target_milestone cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02436.txt.bz2 Content-length: 1261 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77786 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Known to work| |4.9.4, 6.2.0, 7.0 Keywords| |ice-on-valid-code Last reconfirmed| |2016-09-29 CC| |jason at gcc dot gnu.org, | |marxin at gcc dot gnu.org Ever confirmed|0 |1 Summary|internal compiler error: in |[5 Regression] ICE in |tsubst_copy, at |tsubst_copy, at |cp/pt.c:13040 |cp/pt.c:13040 Target Milestone|--- |5.5 Known to fail| |4.5.4, 4.6.4, 4.7.4, 4.8.5, | |5.4.0 --- Comment #2 from Martin Li=C5=A1ka --- I can confirm that. On trunk the issue was fixed by r231863. It's probably up to Jason whether to backport the fix? >>From gcc-bugs-return-538822-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:00:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 77537 invoked by alias); 29 Sep 2016 12:00:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 77155 invoked by uid 48); 29 Sep 2016 12:00:36 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77790] ICE on valid C++14 code when compiling with "-std=c++11": in push_access_scope, at cp/pt.c:227 Date: Thu, 29 Sep 2016 12:00:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc cf_known_to_work everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02437.txt.bz2 Content-length: 685 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77790 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 CC| |marxin at gcc dot gnu.org Known to work| |4.8.5 Ever confirmed|0 |1 --- Comment #1 from Martin Li=C5=A1ka --- Confirmed. >>From gcc-bugs-return-538823-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:02:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 87247 invoked by alias); 29 Sep 2016 12:02:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 79758 invoked by uid 48); 29 Sep 2016 12:02:26 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: =?UTF-8?B?W0J1ZyBjKysvNzc3OTFdIElDRSBvbiBpbnZhbGlkIEMrKzExIGNvZGUgd2l0?= =?UTF-8?B?aCByZWRlZmluZWQgZnVuY3Rpb24gcGFyYW1ldGVyOiB0cmVlIGNoZWNrOiBl?= =?UTF-8?B?eHBlY3RlZCB0cmVlIHRoYXQgY29udGFpbnMg4oCYZGVjbCBtaW5pbWFs4oCZ?= =?UTF-8?B?IHN0cnVjdHVyZSwgaGF2ZSDigJhlcnJvcl9tYXJr4oCZIGluIGNwX3BhcnNl?= =?UTF-8?B?cl9sYW1iZGFfZGVjbGFyYXRvcl9vcHQsIGF0IGNwL3BhcnNlci5jOjEwMTE=?= Date: Thu, 29 Sep 2016 12:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02438.txt.bz2 Content-length: 1091 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77791 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-invalid-code Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 CC| |marxin at gcc dot gnu.org Ever confirmed|0 |1 Known to fail| |4.7.0 --- Comment #1 from Martin Li=C5=A1ka --- Confirmed, however it fails for releases from 4.7.0 with: pr77791.cpp:1:29: error: redefinition of =E2=80=98int i=E2=80=99 pr77791.cpp:1:18: error: =E2=80=98int i=E2=80=99 previously declared here pr77791.cpp:1:29: internal compiler error: tree check: expected tree that contains =E2=80=98decl minimal=E2=80=99 structure, have =E2=80=98error_mark= =E2=80=99 in cp_parser_lambda_declarator_opt, at cp/parser.c:8364 >>From gcc-bugs-return-538824-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:10:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 19688 invoked by alias); 29 Sep 2016 12:10:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 19560 invoked by uid 48); 29 Sep 2016 12:10:13 -0000 From: "vehre at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/71952] [Coarray, F2008] Rejects valid coarray access with array partref Date: Thu, 29 Sep 2016 12:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: vehre at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02439.txt.bz2 Content-length: 425 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71952 vehre at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |FIXED --- Comment #6 from vehre at gcc dot gnu.org --- No regressions reported so far. Closing. >>From gcc-bugs-return-538825-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:13:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 28386 invoked by alias); 29 Sep 2016 12:13:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27345 invoked by uid 48); 29 Sep 2016 12:13:11 -0000 From: "vehre at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77785] ICE in gfc_get_caf_token_offset, at fortran/trans-expr.c:1990 Date: Thu, 29 Sep 2016 12:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: vehre at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02440.txt.bz2 Content-length: 519 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77785 vehre at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |vehre at gcc dot gn= u.org --- Comment #2 from vehre at gcc dot gnu.org --- With the patch at: https://gcc.gnu.org/ml/fortran/2016-09/msg00188.html this ICE does not occur anymore. >>From gcc-bugs-return-538827-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:15:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 33329 invoked by alias); 29 Sep 2016 12:15:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33048 invoked by uid 48); 29 Sep 2016 12:15:38 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77767] [5/6/7 Regression] Side-effect from VLA array parameters lost Date: Thu, 29 Sep 2016 12:15:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02442.txt.bz2 Content-length: 561 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77767 Marek Polacek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 CC| |mpolacek at gcc dot gnu.org Ever confirmed|0 |1 --- Comment #2 from Marek Polacek --- Confirmed. >>From gcc-bugs-return-538826-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:15:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31955 invoked by alias); 29 Sep 2016 12:15:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31547 invoked by uid 48); 29 Sep 2016 12:14:51 -0000 From: "olegendo at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/61056] strchr (x, 0) is not converted to strlen (x) Date: Thu, 29 Sep 2016 12:15:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: olegendo at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02441.txt.bz2 Content-length: 184 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61056 --- Comment #5 from Oleg Endo --- https://gcc.gnu.org/viewcvs/gcc?view=3Drevision&revision=3D240568 >>From gcc-bugs-return-538828-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:16:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 34432 invoked by alias); 29 Sep 2016 12:16:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34289 invoked by uid 48); 29 Sep 2016 12:16:27 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77767] [5/6/7 Regression] Side-effect from VLA array parameters lost Date: Thu, 29 Sep 2016 12:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02443.txt.bz2 Content-length: 459 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77767 Marek Polacek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |mpolacek at gcc dot= gnu.org --- Comment #3 from Marek Polacek --- Mine. >>From gcc-bugs-return-538829-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:23:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 62369 invoked by alias); 29 Sep 2016 12:23:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 60638 invoked by uid 48); 29 Sep 2016 12:23:35 -0000 From: "michele.caini at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77792] Generic lamdba scope issue when working with list::remove_if Date: Thu, 29 Sep 2016 12:23:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: michele.caini at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02444.txt.bz2 Content-length: 199 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77792 --- Comment #1 from Michele Caini --- See also this question on SO: http://stackoverflow.com/q/39766467/4987285 >>From gcc-bugs-return-538831-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:28:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 105948 invoked by alias); 29 Sep 2016 12:28:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 103560 invoked by uid 48); 29 Sep 2016 12:28:39 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77407] Optimize integer i / abs (i) into the sign of i Date: Thu, 29 Sep 2016 12:28:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02446.txt.bz2 Content-length: 482 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77407 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED Target Milestone|--- |7.0 --- Comment #2 from Richard Biener --- Fixed. >>From gcc-bugs-return-538830-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:28:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 102104 invoked by alias); 29 Sep 2016 12:28:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 101257 invoked by uid 55); 29 Sep 2016 12:27:52 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/55152] MAX_EXPR(a,-a) is really ABS_EXPR(a) Date: Thu, 29 Sep 2016 12:28:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 4.8.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02445.txt.bz2 Content-length: 804 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D55152 --- Comment #7 from Richard Biener --- Author: rguenth Date: Thu Sep 29 12:27:19 2016 New Revision: 240615 URL: https://gcc.gnu.org/viewcvs?rev=3D240615&root=3Dgcc&view=3Drev Log: 2016-09-29 Richard Biener PR middle-end/55152 * match.pd: Add max(a,-a) -> abs(a) pattern. * tree-ssa-phiopt.c (minmax_replacement): Disable for HONOR_SIGNED_ZEROS types. * gcc.dg/pr55152.c: New testcase. * gcc.dg/tree-ssa/phi-opt-5.c: Adjust. Added: trunk/gcc/testsuite/gcc.dg/pr55152.c Modified: trunk/gcc/ChangeLog trunk/gcc/match.pd trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/gcc.dg/tree-ssa/phi-opt-5.c trunk/gcc/tree-ssa-phiopt.c >>From gcc-bugs-return-538832-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:29:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110600 invoked by alias); 29 Sep 2016 12:29:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 107107 invoked by uid 48); 29 Sep 2016 12:28:56 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/55152] MAX_EXPR(a,-a) is really ABS_EXPR(a) Date: Thu, 29 Sep 2016 12:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 4.8.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02447.txt.bz2 Content-length: 482 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D55152 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED Target Milestone|--- |7.0 --- Comment #8 from Richard Biener --- Fixed. >>From gcc-bugs-return-538834-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:29:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 112091 invoked by alias); 29 Sep 2016 12:29:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 111994 invoked by uid 48); 29 Sep 2016 12:29:24 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77775] [7 Regression] since r238559 Kdevelop gets miscompiled Date: Thu, 29 Sep 2016 12:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02449.txt.bz2 Content-length: 1257 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77775 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 Ever confirmed|0 |1 --- Comment #4 from Markus Trippelsdorf --- markus@x4 tmp % cat moc.ii namespace Sublime { struct View; struct AreaIndex; struct Area { void qt_static_metacall(); void viewAdded(AreaIndex *, View *); }; } void Sublime::Area::qt_static_metacall() { typedef void (Area::*_t)(AreaIndex *, View *); if (*reinterpret_cast<_t *>(1) =3D=3D _t(&Area::viewAdded)) __builtin_abort(); } gcc-6 -O3: Sublime::Area::qt_static_metacall(): cmpq Sublime::Area::viewAdded(Sublime::AreaIndex*, Sublime::View= *), 1 je .L7 .L1: rep ret .L7: cmpq $0, 9 jne .L1 subq $8, %rsp call abort trunk -O3: Sublime::Area::qt_static_metacall(): cmpq $0, 1 je .L7 rep ret .L7: subq $8, %rsp call abort >>From gcc-bugs-return-538833-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:29:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110608 invoked by alias); 29 Sep 2016 12:29:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 105261 invoked by uid 55); 29 Sep 2016 12:28:51 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77407] Optimize integer i / abs (i) into the sign of i Date: Thu, 29 Sep 2016 12:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02448.txt.bz2 Content-length: 620 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77407 --- Comment #3 from Richard Biener --- Author: rguenth Date: Thu Sep 29 12:28:19 2016 New Revision: 240616 URL: https://gcc.gnu.org/viewcvs?rev=3D240616&root=3Dgcc&view=3Drev Log: 2016-09-29 Richard Biener PR middle-end/77407 * match.pd: Add X / abs (X) -> X < 0 ? -1 : 1 and X / -X -> -1 simplifications. * gcc.dg/pr77407.c: New testcase. Added: trunk/gcc/testsuite/gcc.dg/pr77407.c Modified: trunk/gcc/ChangeLog trunk/gcc/match.pd trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538835-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:31:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 118921 invoked by alias); 29 Sep 2016 12:31:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 118717 invoked by uid 55); 29 Sep 2016 12:31:35 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Thu, 29 Sep 2016 12:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: lto X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02450.txt.bz2 Content-length: 697 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 --- Comment #11 from Richard Biener --- Author: rguenth Date: Thu Sep 29 12:31:02 2016 New Revision: 240617 URL: https://gcc.gnu.org/viewcvs?rev=3D240617&root=3Dgcc&view=3Drev Log: 2016-09-29 Richard Biener PR tree-optimization/77768 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): Handle stores to readonly memory when removing redundant stores. * gcc.dg/torture/pr77768.c: New testcase. Added: trunk/gcc/testsuite/gcc.dg/torture/pr77768.c Modified: trunk/gcc/ChangeLog trunk/gcc/testsuite/ChangeLog trunk/gcc/tree-ssa-pre.c >>From gcc-bugs-return-538836-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:38:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2158 invoked by alias); 29 Sep 2016 12:38:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2045 invoked by uid 48); 29 Sep 2016 12:38:18 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77792] Generic lamdba scope issue when working with list::remove_if Date: Thu, 29 Sep 2016 12:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02451.txt.bz2 Content-length: 827 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77792 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |rejects-valid Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 Ever confirmed|0 |1 --- Comment #2 from Jonathan Wakely --- Reduced: template void remove_if(Pred pred) { pred(1); } template struct S { template=20 static void f() { }=20 void run() { remove_if([](auto) { &f; }); // (2) } }; int main() { S s; s.run(); } >>From gcc-bugs-return-538837-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:46:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2187 invoked by alias); 29 Sep 2016 12:46:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1814 invoked by uid 48); 29 Sep 2016 12:46:44 -0000 From: "jamborm at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77677] [7 Regression] ICE at -O1 and above in both 32-bit and 64-bit modes on x86_64-linux-gnu (internal compiler error: in set_value_range, at tree-vrp.c:361) Date: Thu, 29 Sep 2016 12:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jamborm at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02452.txt.bz2 Content-length: 482 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77677 Martin Jambor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #13 from Martin Jambor --- So if I understand this correctly, this bug is fixed, right? >>From gcc-bugs-return-538838-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:52:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26050 invoked by alias); 29 Sep 2016 12:52:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25713 invoked by uid 48); 29 Sep 2016 12:52:42 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77792] Generic lamdba scope issue when working with list::remove_if Date: Thu, 29 Sep 2016 12:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02453.txt.bz2 Content-length: 278 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77792 --- Comment #3 from Jonathan Wakely --- The minimal example from an SO answer: template struct S { template static void f(); S() { void(*g)(char) =3D [](auto) { f<0>; }; } }; S<0> s; >>From gcc-bugs-return-538839-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 12:56:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 37928 invoked by alias); 29 Sep 2016 12:56:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 37741 invoked by uid 48); 29 Sep 2016 12:56:24 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77788] profiledbootstrap failures on powerpc64le Date: Thu, 29 Sep 2016 12:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02454.txt.bz2 Content-length: 4342 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77788 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 Ever confirmed|0 |1 --- Comment #2 from Martin Li=C5=A1ka --- Just for completeness, there's a list of profiledbootstrap warnings seen on x86_64-linux-gnu (w/o -Wimplicit-fallthrough): ../../../boehm-gc/os_dep.c:2766:26: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types] ../../gcc/combine.c:1310:8: warning: =E2=80=98prev=E2=80=99 may be used uni= nitialized in this function [-Wmaybe-uninitialized] ../../gcc/expmed.h:622:77: warning: array subscript is above array bounds [-Warray-bounds] ../../gcc/gimple-ssa-strength-reduction.c:1583:28: warning: =E2=80=98c=E2= =80=99 may be used uninitialized in this function [-Wmaybe-uninitialized] ../../gcc/tree-ssa-ccp.c:2852:4: warning: =E2=80=98op0=E2=80=99 may be used= uninitialized in this function [-Wmaybe-uninitialized] ../../gcc/tree-ssa-ccp.c:2853:21: warning: =E2=80=98op1=E2=80=99 may be use= d uninitialized in this function [-Wmaybe-uninitialized] ../../gcc/varasm.c:1572:1: warning: =E2=80=98%.5u=E2=80=99 directive writin= g between 5 and 10 bytes into a region of size 9 [-Wformat-length=3D] ../../gcc/varasm.c:1595:1: warning: =E2=80=98%.5u=E2=80=99 directive writin= g between 5 and 10 bytes into a region of size 9 [-Wformat-length=3D] gengtype-lex.c:1352:18: warning: comparison between signed and unsigned int= eger expressions [-Wsign-compare] gengtype-lex.c:1352:18: warning: comparison between signed and unsigned int= eger expressions [-Wsign-compare] gengtype-lex.c:1352:18: warning: comparison between signed and unsigned int= eger expressions [-Wsign-compare] gengtype-lex.c:1352:18: warning: comparison between signed and unsigned int= eger expressions [-Wsign-compare] gengtype-lex.c:1352:18: warning: comparison between signed and unsigned int= eger expressions [-Wsign-compare] gengtype-lex.c:1352:18: warning: comparison between signed and unsigned int= eger expressions [-Wsign-compare] gengtype-lex.c:2694:17: warning: comparison between signed and unsigned int= eger expressions [-Wsign-compare] gengtype-lex.c:2694:17: warning: comparison between signed and unsigned int= eger expressions [-Wsign-compare] gengtype-lex.c:2694:17: warning: comparison between signed and unsigned int= eger expressions [-Wsign-compare] gengtype-lex.c:2694:17: warning: comparison between signed and unsigned int= eger expressions [-Wsign-compare] gengtype-lex.c:2694:17: warning: comparison between signed and unsigned int= eger expressions [-Wsign-compare] gengtype-lex.c:2694:17: warning: comparison between signed and unsigned int= eger expressions [-Wsign-compare] ../../../../libgfortran/caf/single.c:1840:29: warning: =E2=80=98src_size=E2= =80=99 may be used uninitialized in this function [-Wmaybe-uninitialized] ../../../libgfortran/caf/single.c:1840:29: warning: =E2=80=98src_size=E2=80= =99 may be used uninitialized in this function [-Wmaybe-uninitialized] ../../../../libgfortran/caf/single.c:2629:29: warning: =E2=80=98src_size=E2= =80=99 may be used uninitialized in this function [-Wmaybe-uninitialized] ../../../libgfortran/caf/single.c:2629:29: warning: =E2=80=98src_size=E2=80= =99 may be used uninitialized in this function [-Wmaybe-uninitialized] ../../../../libgfortran/intrinsics/date_and_time.c:169:47: warning: =E2=80= =98%03d=E2=80=99 directive output may be truncated writing between 3 and 8 bytes into a regi= on of size 4 [-Wformat-length=3D] ../../../../libgfortran/intrinsics/date_and_time.c:173:33: warning: =E2=80= =98%+03d=E2=80=99 directive output may be truncated writing between 3 and 9 bytes into a regi= on of size 6 [-Wformat-length=3D] ../../../libgfortran/intrinsics/date_and_time.c:173:33: warning: =E2=80=98%= +03d=E2=80=99 directive output may be truncated writing between 3 and 9 bytes into a regi= on of size 6 [-Wformat-length=3D] As I talked to Jakub, we used to have working profiledbootstrap w/o --disable-werror. I can spend some time fixing these issues after stage1 finishes. >>From gcc-bugs-return-538840-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 13:11:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 21568 invoked by alias); 29 Sep 2016 13:11:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 21137 invoked by uid 48); 29 Sep 2016 13:11:10 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77745] [5/6 Regression] Inconsistent application of aliasing rules Date: Thu, 29 Sep 2016 13:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02455.txt.bz2 Content-length: 536 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77745 Bug 77745 depends on bug 77768, which changed state. Bug 77768 Summary: [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:= 11053:0: internal compiler error: Segmentation fault https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED >>From gcc-bugs-return-538841-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 13:11:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 21638 invoked by alias); 29 Sep 2016 13:11:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 21080 invoked by uid 48); 29 Sep 2016 13:11:10 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77768] [7 Regression] LTO/PGO -O3 bootstrap broken: tree-vrp.c:11053:0: internal compiler error: Segmentation fault Date: Thu, 29 Sep 2016 13:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: lto X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02456.txt.bz2 Content-length: 458 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77768 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #12 from Markus Trippelsdorf --- Finally fixed. Thanks. >>From gcc-bugs-return-538842-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 13:18:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 86848 invoked by alias); 29 Sep 2016 13:18:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 84767 invoked by uid 48); 29 Sep 2016 13:17:49 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77794] [5/6/7 Regression] libstdc++ doesn't bootstrap with ./configure --enable-symvers=gnu-versioned-namespace Date: Thu, 29 Sep 2016 13:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_gcctarget bug_status cf_reconfirmed_on cf_gcchost short_desc everconfirmed cf_known_to_fail cf_gccbuild Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02457.txt.bz2 Content-length: 964 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77794 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Target|x86_64-gnu-linux | Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 Host|x86_64-gnu-linux | Summary|libstdc++ doesn't bootstrap |[5/6/7 Regression] |with ./cofnigure |libstdc++ doesn't bootstrap |--enable-symvers=3Dgnu-versio |with ./configure |ned-namespace |--enable-symvers=3Dgnu-ver= sio | |ned-namespace Ever confirmed|0 |1 Known to fail| |5.4.1 Build|x86_64-gnu-linux | >>From gcc-bugs-return-538843-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 14:21:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 90749 invoked by alias); 29 Sep 2016 14:21:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 90640 invoked by uid 48); 29 Sep 2016 14:20:57 -0000 From: "linux at carewolf dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77796] New: tautological compare warning emitted for inherited static method comparisons Date: Thu, 29 Sep 2016 14:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: linux at carewolf dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02458.txt.bz2 Content-length: 1553 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77796 Bug ID: 77796 Summary: tautological compare warning emitted for inherited static method comparisons Product: gcc Version: 6.1.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: linux at carewolf dot com Target Milestone: --- We have been running into several issues with the tautological compare warn= ing in qtdeclarative, first there was https://bugreports.qt.io/browse/QTBUG-533= 73 (warning about comparing a typedef with its definition), and recently https://bugreports.qt.io/browse/QTBUG-56266 (warning about a method that is resolved to what it is compared to). Both cases the comparison are not tautological, but merely compile time, and specifically used in places where they need to be resolvable at compile tim= e. It makes no sense to warn about a comparison being resolvable at compile ti= me a place that demands a constexpr. The latest example can be reproduced with this simple code: class A { public: static void destroy() { } }; class B : public A { }; const int tbl[1] =3D { B::destroy =3D=3D A::destroy ? 0 : 1 }; It specifically looks for whether the method has been overwritten in a deri= ved class, but since the names are looked up using two different scopes, it shouldn't trigger the taulogical warning. Only comparing (A::destroy =3D=3D A::destroy) should do that. >>From gcc-bugs-return-538844-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 14:28:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 116254 invoked by alias); 29 Sep 2016 14:28:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116026 invoked by uid 48); 29 Sep 2016 14:28:17 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77795] [6/7 Regression] ::gets declared in C++14 mode Date: Thu, 29 Sep 2016 14:28:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: redi at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02459.txt.bz2 Content-length: 293 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77795 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |6.3 >>From gcc-bugs-return-538845-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 14:28:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 116262 invoked by alias); 29 Sep 2016 14:28:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116095 invoked by uid 48); 29 Sep 2016 14:28:24 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77794] [5/6/7 Regression] libstdc++ doesn't bootstrap with ./configure --enable-symvers=gnu-versioned-namespace Date: Thu, 29 Sep 2016 14:28:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02460.txt.bz2 Content-length: 293 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77794 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |5.5 >>From gcc-bugs-return-538847-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 14:32:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 90968 invoked by alias); 29 Sep 2016 14:32:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 76725 invoked by uid 48); 29 Sep 2016 14:32:40 -0000 From: "fritzoreese at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77764] ICE in is_anonymous_component, at fortran/interface.c:450 Date: Thu, 29 Sep 2016 14:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: fritzoreese at gmail dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02462.txt.bz2 Content-length: 457 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77764 Fritz Reese changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fritzoreese at gmail dot c= om --- Comment #2 from Fritz Reese --- https://gcc.gnu.org/ml/fortran/2016-09/msg00190.html Patch submitted >>From gcc-bugs-return-538846-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 14:32:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 14903 invoked by alias); 29 Sep 2016 14:32:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 106012 invoked by uid 48); 29 Sep 2016 14:31:53 -0000 From: "fritzoreese at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77782] ICE in gfc_get_union_type, at fortran/trans-types.c:2387 Date: Thu, 29 Sep 2016 14:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: fritzoreese at gmail dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02461.txt.bz2 Content-length: 191 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77782 --- Comment #2 from Fritz Reese --- https://gcc.gnu.org/ml/fortran/2016-09/msg00189.html Patch submitted >>From gcc-bugs-return-538848-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 14:33:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 105019 invoked by alias); 29 Sep 2016 14:33:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 91120 invoked by uid 48); 29 Sep 2016 14:32:49 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/70932] flexible array member with non-trivial destructor Date: Thu, 29 Sep 2016 14:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02463.txt.bz2 Content-length: 154 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D70932 --- Comment #9 from Martin Sebor --- Sorry, I haven't gotten to it yet. >>From gcc-bugs-return-538849-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 14:41:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 47500 invoked by alias); 29 Sep 2016 14:41:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 47344 invoked by uid 48); 29 Sep 2016 14:41:04 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77788] profiledbootstrap failures on powerpc64le Date: Thu, 29 Sep 2016 14:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02464.txt.bz2 Content-length: 431 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77788 --- Comment #3 from Martin Sebor --- It seems that few of us do profiledbootstrap during development so warnings tend to creep in and go unnoticed. Would it make sense to detect the missi= ng --disable-werror during configuration and print a big warning that such bui= lds are unsupported and will likely fail? (It might help avoid wasting time.) >>From gcc-bugs-return-538850-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 14:56:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 123293 invoked by alias); 29 Sep 2016 14:56:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123194 invoked by uid 48); 29 Sep 2016 14:56:27 -0000 From: "hjl.tools at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Thu, 29 Sep 2016 14:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: hjl.tools at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02465.txt.bz2 Content-length: 371 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 --- Comment #7 from H.J. Lu --- Level 7 returns the maximum input value in EAX with ECX =3D=3D 0. Level 9 and 10 don't use ECX as input. Level 11 takes ECX[7:0] as input level number. Level 13 takes many values in ECX as input. .... There is no fixed rule of ECX input for level >=3D 7. >>From gcc-bugs-return-538851-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 15:07:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 44607 invoked by alias); 29 Sep 2016 15:07:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 44413 invoked by uid 48); 29 Sep 2016 15:07:24 -0000 From: "macro@linux-mips.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77300] [MIPS] incorrectly moves instruction containing local GOT16 relocation into a delay slot Date: Thu, 29 Sep 2016 15:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: macro@linux-mips.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02466.txt.bz2 Content-length: 786 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77300 --- Comment #4 from Maciej W. Rozycki --- Thanks. I didn't expect -W would be required for non-truncated output, however at this stage it looks anyway like it's GAS which is at fault, because the GOT16 relocation at 0xcc isn't reordered (in the relocation table) ahead the LO16 relocation at 0x60. Could you therefore please file a bug against GAS at and attach the generated assembly which has triggered this problem? I'll take it from there. This bug can now be closed although I can't seem able to do that for some reason. NB it would be good to have links both ways recorded between the bug entries, so please record a link here once you've got the other bug's ID. >>From gcc-bugs-return-538852-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 15:19:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 7510 invoked by alias); 29 Sep 2016 15:19:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 7433 invoked by uid 48); 29 Sep 2016 15:19:48 -0000 From: "ubizjak at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Thu, 29 Sep 2016 15:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ubizjak at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02467.txt.bz2 Content-length: 1051 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 --- Comment #8 from Uro=C5=A1 Bizjak --- (In reply to H.J. Lu from comment #7) > Level 7 returns the maximum input value in EAX with ECX =3D=3D 0. > Level 9 and 10 don't use ECX as input. > Level 11 takes ECX[7:0] as input level number. > Level 13 takes many values in ECX as input. > .... >=20 > There is no fixed rule of ECX input for level >=3D 7. Thanks for clarifying - so, we should have simply: static __inline int __get_cpuid_subleaf (unsigned int __level, unsigned int __subleaf, unsigned int *__eax, unsigned int *__ebx, unsigned int *__ecx, unsigned int *__edx) { unsigned int __ext =3D __level & 0x80000000; if (__get_cpuid_max (__ext, 0) < __level) return 0; if (__ext) __cpuid (__level, *__eax, *__ebx, *__ecx, *__edx); else if (__level >=3D 7) __cpuid_count (__level, __subleaf, *__eax, *__ebx, *__ecx, *__edx); else __cpuid (__level, *__eax, *__ebx, *__ecx, *__edx); return 1; } >>From gcc-bugs-return-538854-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 15:21:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 13402 invoked by alias); 29 Sep 2016 15:21:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 11452 invoked by uid 48); 29 Sep 2016 15:21:44 -0000 From: "ebotcazou at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug ada/77793] ICE on "&" operator from Ada.Containers.Vectors with expression functions Date: Thu, 29 Sep 2016 15:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: ada X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ebotcazou at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc short_desc everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02469.txt.bz2 Content-length: 975 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77793 Eric Botcazou changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-29 CC| |ebotcazou at gcc dot gnu.o= rg Summary|GNAT Bug Box when using the |ICE on "&" operator from |"&" operator from |Ada.Containers.Vectors with |Ada.Containers.Vectors on |expression functions |inline uses of expression | |functions | Ever confirmed|0 |1 Known to fail| |4.9.4, 5.4.1, 6.2.1, 7.0 --- Comment #2 from Eric Botcazou --- Present in all versions. >>From gcc-bugs-return-538853-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 15:21:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 11440 invoked by alias); 29 Sep 2016 15:21:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 11207 invoked by uid 48); 29 Sep 2016 15:21:32 -0000 From: "coollpe at hotmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug sanitizer/77538] segmentation fault: thread sanitizer shadow stack overflow Date: Thu, 29 Sep 2016 15:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: sanitizer X-Bugzilla-Version: 4.8.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: coollpe at hotmail dot com X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02468.txt.bz2 Content-length: 7740 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77538 --- Comment #7 from peien luo --- tried, still got D state, build with gcc 4.9.4 [god@localhost 21586]$ cat stack [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] retint_signal+0x48/0x8c [] 0xffffffffffffffff [god@localhost 21586]$ cat status Name: test_metaserver State: D (disk sleep) Tgid: 21586 Ngid: 0 Pid: 21586 PPid: 12499 TracerPid: 0 Uid: 1000 1000 1000 1000 Gid: 1000 1000 1000 1000 FDSize: 256 Groups: 1000=20 VmPeak: 104153806860 kB VmSize: 104153793252 kB VmLck: 0 kB VmPin: 0 kB VmHWM: 342544 kB VmRSS: 342544 kB VmData: 104153254936 kB VmStk: 1048 kB VmExe: 18392 kB VmLib: 5992 kB VmPTE: 1904 kB VmSwap: 0 kB Threads: 8 SigQ: 0/63365 SigPnd: 0000000000000000 ShdPnd: 0000000000000000 SigBlk: 0000000000000000 SigIgn: 0000000000001000 SigCgt: 0000000180000000 CapInh: 0000000000000000 CapPrm: 0000000000000000 CapEff: 0000000000000000 CapBnd: 0000001fffffffff Seccomp: 0 Cpus_allowed: ffffffff,ffffffff,ffffffff,ffffffff Cpus_allowed_list: 0-127 Mems_allowed:=20=20 00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000= 00000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000= 00,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,= 00000000,00000000,00000000,00000000,00000000,00000000,00000001 Mems_allowed_list: 0 voluntary_ctxt_switches: 442 nonvoluntary_ctxt_switches: 9 [god@localhost 21586]$ cat task/*/stack [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] retint_signal+0x48/0x8c [] 0xffffffffffffffff [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [] pipe_wait+0x70/0xc0 [] pipe_write+0x236/0x5b0 [] do_sync_write+0x8d/0xd0 [] dump_write+0x52/0x70 [] dump_seek+0xa4/0xe0 [] elf_core_dump+0x896/0x950 [] do_coredump+0x882/0xb10 [] get_signal_to_deliver+0x1c7/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [god@localhost 21586]$ cat task/*/stack [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] retint_signal+0x48/0x8c [] 0xffffffffffffffff [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [] do_exit+0x1e4/0xa60 [] do_group_exit+0x3f/0xa0 [] get_signal_to_deliver+0x1d0/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [] pipe_wait+0x70/0xc0 [] pipe_write+0x236/0x5b0 [] do_sync_write+0x8d/0xd0 [] dump_write+0x52/0x70 [] dump_seek+0xa4/0xe0 [] elf_core_dump+0x896/0x950 [] do_coredump+0x882/0xb10 [] get_signal_to_deliver+0x1c7/0x6d0 [] do_signal+0x57/0x6c0 [] do_notify_resume+0x5f/0xb0 [] int_signal+0x12/0x17 [] 0xffffffffffffffff [god@localhost ~]$ g++ -v Using built-in specs. COLLECT_GCC=3Dg++ COLLECT_LTO_WRAPPER=3D/usr/local/libexec/gcc/x86_64-unknown-linux-gnu/4.9.4= /lto-wrapper Target: x86_64-unknown-linux-gnu Configured with: ../configure --enable-shared --enable-languages=3Dc,c++ --disable-multilib Thread model: posix gcc version 4.9.4 (GCC)=20 run with=20 [god@localhost test]$ TSAN_OPTIONS=3Ddisable_coredump=3D1 ./test_metaserver >>From gcc-bugs-return-538855-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 15:22:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 17257 invoked by alias); 29 Sep 2016 15:22:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 17058 invoked by uid 48); 29 Sep 2016 15:22:43 -0000 From: "james410 at cowgill dot org.uk" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77300] [MIPS] incorrectly moves instruction containing local GOT16 relocation into a delay slot Date: Thu, 29 Sep 2016 15:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: james410 at cowgill dot org.uk X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: MOVED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02470.txt.bz2 Content-length: 543 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77300 James Cowgill changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |MOVED --- Comment #5 from James Cowgill --- Moved here: https://sourceware.org/bugzilla/show_bug.cgi?id=3D20649 It seems I can close the bug so doing it now. >>From gcc-bugs-return-538856-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 16:57:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 60300 invoked by alias); 29 Sep 2016 16:57:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 60144 invoked by uid 48); 29 Sep 2016 16:57:26 -0000 From: "ubizjak at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Thu, 29 Sep 2016 16:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ubizjak at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02471.txt.bz2 Content-length: 1364 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 --- Comment #9 from Uro=C5=A1 Bizjak --- At the end of the day, it looks that we want simply an additional version of __get_cpuid where sub-leaf can be specified - a variant of HJ's proposal: --cut here-- /* Return cpuid data for requested cpuid leaf, as found in returned eax, ebx, ecx and edx registers. The function checks if cpuid is supported and returns 1 for valid cpuid information or 0 for unsupported cpuid leaf. All pointers are required to be non-null. */ static __inline int __get_cpuid (unsigned int __leaf, unsigned int *__eax, unsigned int *__ebx, unsigned int *__ecx, unsigned int *__edx) { unsigned int __ext =3D __leaf & 0x80000000; if (__get_cpuid_max (__ext, 0) < __leaf) return 0; __cpuid (__leaf, *__eax, *__ebx, *__ecx, *__edx); return 1; } /* Same as above, but sub-leaf can be specified. */ static __inline int __get_cpuid_count (unsigned int __leaf, unsigned int __subleaf, unsigned int *__eax, unsigned int *__ebx, unsigned int *__ecx, unsigned int *__edx) { unsigned int __ext =3D __leaf & 0x80000000; if (__get_cpuid_max (__ext, 0) < __leaf) return 0; __cpuid_count (__leaf, __subleaf, *__eax, *__ebx, *__ecx, *__edx); return 1; } --cut here-- >>From gcc-bugs-return-538857-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 17:19:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 8507 invoked by alias); 29 Sep 2016 17:19:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 8296 invoked by uid 48); 29 Sep 2016 17:19:18 -0000 From: "hjl.tools at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Thu, 29 Sep 2016 17:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: hjl.tools at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02472.txt.bz2 Content-length: 1481 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 --- Comment #10 from H.J. Lu --- (In reply to Uro=C5=A1 Bizjak from comment #9) > At the end of the day, it looks that we want simply an additional version= of > __get_cpuid where sub-leaf can be specified - a variant of HJ's proposal: >=20 > --cut here-- > /* Return cpuid data for requested cpuid leaf, as found in returned > eax, ebx, ecx and edx registers. The function checks if cpuid is > supported and returns 1 for valid cpuid information or 0 for > unsupported cpuid leaf. All pointers are required to be non-null. */ >=20 > static __inline int > __get_cpuid (unsigned int __leaf, > unsigned int *__eax, unsigned int *__ebx, > unsigned int *__ecx, unsigned int *__edx) > { > unsigned int __ext =3D __leaf & 0x80000000; >=20 > if (__get_cpuid_max (__ext, 0) < __leaf) > return 0; >=20 > __cpuid (__leaf, *__eax, *__ebx, *__ecx, *__edx); > return 1; > } >=20 > /* Same as above, but sub-leaf can be specified. */ >=20 > static __inline int > __get_cpuid_count (unsigned int __leaf, unsigned int __subleaf, > unsigned int *__eax, unsigned int *__ebx, > unsigned int *__ecx, unsigned int *__edx) > { > unsigned int __ext =3D __leaf & 0x80000000; >=20 > if (__get_cpuid_max (__ext, 0) < __leaf) > return 0; >=20 > __cpuid_count (__leaf, __subleaf, *__eax, *__ebx, *__ecx, *__edx); > return 1; > } > --cut here-- It looks good to me. >>From gcc-bugs-return-538858-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 18:04:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 82285 invoked by alias); 29 Sep 2016 18:04:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 82190 invoked by uid 48); 29 Sep 2016 18:04:33 -0000 From: "slavanap at yandex dot ru" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77797] New: Unable to use constexpr function as constexpr template parameter Date: Thu, 29 Sep 2016 18:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 4.9.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: slavanap at yandex dot ru X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02473.txt.bz2 Content-length: 1169 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77797 Bug ID: 77797 Summary: Unable to use constexpr function as constexpr template parameter Product: gcc Version: 4.9.3 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: slavanap at yandex dot ru Target Milestone: --- Created attachment 39725 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39725&action=3Dedit test case that represents and describes the bug Code in attachment does compile with g++ 5.1.0, but does not with 4.9.3. He= re you can try that online http://melpon.org/wandbox/permlink/hGFy7IEnCycvgvLr In short, constexpr function as a template parameter with conjunction of parameter pack expansion does not work with g++ 4.9.3. Full sample code in the attachment. Please compile it with g++ sample.cpp -Wall -Wextra -std=3Dc++11 Note, `(defined _MSC_VER && _MSC_VER < 1900) || (!defined _MSC_VER && __cplusplus <=3D 201103L)` condition will resolve to `true`, because of `-std=3Dc++11` g++ option. >>From gcc-bugs-return-538859-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 18:07:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 86616 invoked by alias); 29 Sep 2016 18:07:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 86447 invoked by uid 48); 29 Sep 2016 18:07:11 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77797] Unable to use constexpr function as constexpr template parameter Date: Thu, 29 Sep 2016 18:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 4.9.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02474.txt.bz2 Content-length: 546 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77797 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED CC| |trippels at gcc dot gnu.org Resolution|--- |WONTFIX --- Comment #1 from Markus Trippelsdorf --- gcc-4.9 is no longer maintained. >>From gcc-bugs-return-538860-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 18:08:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110418 invoked by alias); 29 Sep 2016 18:08:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 110321 invoked by uid 55); 29 Sep 2016 18:08:38 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77707] [5/6/7 Regression] formatted direct access: nextrec off by one Date: Thu, 29 Sep 2016 18:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02475.txt.bz2 Content-length: 764 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77707 --- Comment #6 from Jerry DeLisle --- Author: jvdelisle Date: Thu Sep 29 18:08:05 2016 New Revision: 240627 URL: https://gcc.gnu.org/viewcvs?rev=3D240627&root=3Dgcc&view=3Drev Log: 2016-09-29 Jerry DeLisle Backport from trunk PR libgfortran/77707 io/transfer.c (next_record): Flush before calculating next_record. Correctly calculate. * gfortran.dg/inquire_17.f90: New test. Added: branches/gcc-6-branch/gcc/testsuite/gfortran.dg/inquire_17.f90 Modified: branches/gcc-6-branch/gcc/testsuite/ChangeLog branches/gcc-6-branch/libgfortran/ChangeLog branches/gcc-6-branch/libgfortran/io/transfer.c >>From gcc-bugs-return-538861-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 18:10:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 111804 invoked by alias); 29 Sep 2016 18:10:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 111591 invoked by uid 48); 29 Sep 2016 18:09:50 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77707] [5/6/7 Regression] formatted direct access: nextrec off by one Date: Thu, 29 Sep 2016 18:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02476.txt.bz2 Content-length: 485 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77707 Jerry DeLisle changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |jvdelisle at gcc do= t gnu.org --- Comment #7 from Jerry DeLisle --- Fixed on six, one more to go >>From gcc-bugs-return-538862-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 18:17:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121859 invoked by alias); 29 Sep 2016 18:17:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121657 invoked by uid 48); 29 Sep 2016 18:17:08 -0000 From: "slavanap at yandex dot ru" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77797] Unable to use constexpr function as constexpr template parameter Date: Thu, 29 Sep 2016 18:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 4.9.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: slavanap at yandex dot ru X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02477.txt.bz2 Content-length: 279 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77797 --- Comment #2 from Vyacheslav --- Then why there's no such info at GCC 4.9 news page? https://gcc.gnu.org/gcc-4.9/ I would not submit the bug if I knew that the version was abandoned. Please fix. >>From gcc-bugs-return-538863-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 18:36:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 51168 invoked by alias); 29 Sep 2016 18:36:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 50962 invoked by uid 55); 29 Sep 2016 18:36:24 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/69514] ICE with nested array constructor Date: Thu, 29 Sep 2016 18:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02478.txt.bz2 Content-length: 1060 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D69514 --- Comment #9 from kargl at gcc dot gnu.org --- Author: kargl Date: Thu Sep 29 18:35:49 2016 New Revision: 240628 URL: https://gcc.gnu.org/viewcvs?rev=3D240628&root=3Dgcc&view=3Drev Log: 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/69514 * array.c (gfc_match_array_constructor): If type-spec is present, walk the array constructor performing possible conversions for=20 numeric types. 2016-09-29 Steven G. Kargl Louis Krupp Backport from trunk PR fortran/69514 * gfortran.dg/pr69514_1.f90: New test. * gfortran.dg/pr69514_2.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr69514_1.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr69514_2.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/array.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538864-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 18:41:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 61249 invoked by alias); 29 Sep 2016 18:41:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 60118 invoked by uid 48); 29 Sep 2016 18:41:10 -0000 From: "greenc at fnal dot gov" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/57438] bootstrap fails on x86_64 darwin in stage2 linking cc1 Date: Thu, 29 Sep 2016 18:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: greenc at fnal dot gov X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02479.txt.bz2 Content-length: 602 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D57438 Chris Green changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |greenc at fnal dot gov --- Comment #28 from Chris Green --- For those people still running into this (problem still exists with GCC 6.2= ), the following workaround will do the job on OS X / Mac OS: simply add this definition to your compile commands: -D__builtin_unreachable=3D__builtin_trap >>From gcc-bugs-return-538865-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 18:45:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 68201 invoked by alias); 29 Sep 2016 18:45:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 67987 invoked by uid 55); 29 Sep 2016 18:45:16 -0000 From: "uros at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Thu, 29 Sep 2016 18:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: uros at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02480.txt.bz2 Content-length: 619 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 --- Comment #11 from uros at gcc dot gnu.org --- Author: uros Date: Thu Sep 29 18:44:32 2016 New Revision: 240629 URL: https://gcc.gnu.org/viewcvs?rev=3D240629&root=3Dgcc&view=3Drev Log: PR target/77756 * config/i386/cpuid.h (__get_cpuid_count): New. (__get_cpuid): Rename __level to __leaf. testsuite/ChangeLog: PR target/77756 * gcc.target/i386/pr77756.c: New test. Modified: trunk/gcc/ChangeLog trunk/gcc/config/i386/cpuid.h trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/gcc.target/i386/pr77756.c >>From gcc-bugs-return-538866-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 19:35:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 87749 invoked by alias); 29 Sep 2016 19:35:47 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 86726 invoked by uid 55); 29 Sep 2016 19:35:33 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77260] bogus warning with ENTRY in a function Date: Thu, 29 Sep 2016 19:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: minor X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02481.txt.bz2 Content-length: 1361 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77260 --- Comment #4 from kargl at gcc dot gnu.org --- Author: kargl Date: Thu Sep 29 19:34:59 2016 New Revision: 240635 URL: https://gcc.gnu.org/viewcvs?rev=3D240635&root=3Dgcc&view=3Drev Log: 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/71067 * decl.c (match_data_constant): On error, set 'result' to NULL. PR fortran/77260 * gcc/fortran/trans-decl.c (generate_local_decl): Suppress warning for unused variable if symbol is entry point. 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/71067 * gfortran.dg/pr71067_1.f90: New test. * gfortran.dg/pr71067_2.f90: Ditto. PR fortran/77260 * gfortran.dg/pr77260_1.f90: New test. * gfortran.dg/pr77260_2.f90: Ditto. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr71067_1.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr71067_2.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77260_1.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77260_2.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/decl.c branches/gcc-5-branch/gcc/fortran/trans-decl.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538867-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 19:35:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 87766 invoked by alias); 29 Sep 2016 19:35:47 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 86708 invoked by uid 55); 29 Sep 2016 19:35:33 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/71067] [4.9/5/6/7 Regression] ICE on data initialization with insufficient value Date: Thu, 29 Sep 2016 19:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02482.txt.bz2 Content-length: 1362 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71067 --- Comment #11 from kargl at gcc dot gnu.org --- Author: kargl Date: Thu Sep 29 19:34:59 2016 New Revision: 240635 URL: https://gcc.gnu.org/viewcvs?rev=3D240635&root=3Dgcc&view=3Drev Log: 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/71067 * decl.c (match_data_constant): On error, set 'result' to NULL. PR fortran/77260 * gcc/fortran/trans-decl.c (generate_local_decl): Suppress warning for unused variable if symbol is entry point. 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/71067 * gfortran.dg/pr71067_1.f90: New test. * gfortran.dg/pr71067_2.f90: Ditto. PR fortran/77260 * gfortran.dg/pr77260_1.f90: New test. * gfortran.dg/pr77260_2.f90: Ditto. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr71067_1.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr71067_2.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77260_1.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77260_2.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/decl.c branches/gcc-5-branch/gcc/fortran/trans-decl.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538868-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 20:12:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 50761 invoked by alias); 29 Sep 2016 20:12:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 50415 invoked by uid 48); 29 Sep 2016 20:12:21 -0000 From: "rs2740 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/67200] Copy elision and implicit move in return performed in cases not allowed by standard Date: Thu, 29 Sep 2016 20:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: accepts-invalid X-Bugzilla-Severity: normal X-Bugzilla-Who: rs2740 at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02483.txt.bz2 Content-length: 681 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D67200 TC changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #1 from TC --- Appears to be fixed in GCC 6, presumably by the delayed folding changes: main.cpp: In function 'A f()': main.cpp:9:23: error: use of deleted function 'A::A(const A&)' return true ? a : a; ^ main.cpp:3:5: note: declared here A(const A&) =3D delete; ^ >>From gcc-bugs-return-538869-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 20:33:08 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76590 invoked by alias); 29 Sep 2016 20:33:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 76326 invoked by uid 55); 29 Sep 2016 20:32:54 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77506] F2008 Standard does not allow CHARACTER(LEN=*) in array constructor Date: Thu, 29 Sep 2016 20:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: accepts-invalid X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02484.txt.bz2 Content-length: 1586 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77506 --- Comment #5 from kargl at gcc dot gnu.org --- Author: kargl Date: Thu Sep 29 20:32:22 2016 New Revision: 240636 URL: https://gcc.gnu.org/viewcvs?rev=3D240636&root=3Dgcc&view=3Drev Log: 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/77506 * array.c (gfc_match_array_constructor): CHARACTER(len=3D*) cannot appear in an array constructor. PR fortran/77507 * intrinsic.c (add_functions): Use correct keyword. 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/77507 * ieee/ieee_arithmetic.F90 (IEEE_VALUE_4,IEEE_VALUE_8,IEEE_VALULE_1= 0, IEEE_VALUE_16): Use correct keyword. 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/77506 * gfortran.dg/pr77506.f90: New test. PR fortran/77507 * gfortran.dg/pr77507.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/ieee/pr77507.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77506.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/array.c branches/gcc-5-branch/gcc/fortran/intrinsic.c branches/gcc-5-branch/gcc/testsuite/ChangeLog branches/gcc-5-branch/gcc/testsuite/gfortran.dg/c_assoc_2.f03 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/c_assoc_4.f90 branches/gcc-5-branch/libgfortran/ChangeLog branches/gcc-5-branch/libgfortran/ieee/ieee_arithmetic.F90 >>From gcc-bugs-return-538870-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 20:33:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76599 invoked by alias); 29 Sep 2016 20:33:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 76336 invoked by uid 55); 29 Sep 2016 20:32:55 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77507] gfortran rejects keyworded calls to procedures from intrinsic modules Date: Thu, 29 Sep 2016 20:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 6.1.1 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02485.txt.bz2 Content-length: 1586 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77507 --- Comment #7 from kargl at gcc dot gnu.org --- Author: kargl Date: Thu Sep 29 20:32:22 2016 New Revision: 240636 URL: https://gcc.gnu.org/viewcvs?rev=3D240636&root=3Dgcc&view=3Drev Log: 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/77506 * array.c (gfc_match_array_constructor): CHARACTER(len=3D*) cannot appear in an array constructor. PR fortran/77507 * intrinsic.c (add_functions): Use correct keyword. 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/77507 * ieee/ieee_arithmetic.F90 (IEEE_VALUE_4,IEEE_VALUE_8,IEEE_VALULE_1= 0, IEEE_VALUE_16): Use correct keyword. 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/77506 * gfortran.dg/pr77506.f90: New test. PR fortran/77507 * gfortran.dg/pr77507.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/ieee/pr77507.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77506.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/array.c branches/gcc-5-branch/gcc/fortran/intrinsic.c branches/gcc-5-branch/gcc/testsuite/ChangeLog branches/gcc-5-branch/gcc/testsuite/gfortran.dg/c_assoc_2.f03 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/c_assoc_4.f90 branches/gcc-5-branch/libgfortran/ChangeLog branches/gcc-5-branch/libgfortran/ieee/ieee_arithmetic.F90 >>From gcc-bugs-return-538871-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 21:24:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31598 invoked by alias); 29 Sep 2016 21:24:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31330 invoked by uid 48); 29 Sep 2016 21:23:58 -0000 From: "tkoenig at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/27077] [x86, 4.1] builtin strlen poor performance Date: Thu, 29 Sep 2016 21:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: tkoenig at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02486.txt.bz2 Content-length: 459 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27077 Thomas Koenig changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |INVALID --- Comment #12 from Thomas Koenig --- No test case, resolving as INVALID. >>From gcc-bugs-return-538872-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 22:10:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 49983 invoked by alias); 29 Sep 2016 22:10:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 49775 invoked by uid 55); 29 Sep 2016 22:10:15 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77460] ICE when summing an overflowing array Date: Thu, 29 Sep 2016 22:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02487.txt.bz2 Content-length: 1535 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77460 --- Comment #4 from kargl at gcc dot gnu.org --- Author: kargl Date: Thu Sep 29 22:09:42 2016 New Revision: 240640 URL: https://gcc.gnu.org/viewcvs?rev=3D240640&root=3Dgcc&view=3Drev Log: 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/77420 * trans-common.c: Handle array elements in equivalence when the lower and upper bounds of array spec are NULL. PR fortran/77460 * simplify.c (simplify_transformation_to_scalar): On error, result may be NULL, simply return. 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/77420 * gfortran.dg/pr77420_1.f90: New test. * gfortran.dg/pr77420_2.f90: Ditto. * gfortran.dg/pr77420_3.f90: New test. Requires ... * gfortran.dg/pr77420_4.f90: this file. PR fortran/77460 * gfortran.dg/pr77460.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77420_1.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77420_2.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77420_3.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77420_4.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77460.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/simplify.c branches/gcc-5-branch/gcc/fortran/trans-common.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538873-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 22:10:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 49991 invoked by alias); 29 Sep 2016 22:10:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 49772 invoked by uid 55); 29 Sep 2016 22:10:14 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77420] [5/6/7 Regression] gfortran and equivalence produces internal compiler error Date: Thu, 29 Sep 2016 22:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02488.txt.bz2 Content-length: 1535 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77420 --- Comment #8 from kargl at gcc dot gnu.org --- Author: kargl Date: Thu Sep 29 22:09:42 2016 New Revision: 240640 URL: https://gcc.gnu.org/viewcvs?rev=3D240640&root=3Dgcc&view=3Drev Log: 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/77420 * trans-common.c: Handle array elements in equivalence when the lower and upper bounds of array spec are NULL. PR fortran/77460 * simplify.c (simplify_transformation_to_scalar): On error, result may be NULL, simply return. 2016-09-29 Steven G. Kargl Backport from trunk PR fortran/77420 * gfortran.dg/pr77420_1.f90: New test. * gfortran.dg/pr77420_2.f90: Ditto. * gfortran.dg/pr77420_3.f90: New test. Requires ... * gfortran.dg/pr77420_4.f90: this file. PR fortran/77460 * gfortran.dg/pr77460.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77420_1.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77420_2.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77420_3.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77420_4.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77460.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/simplify.c branches/gcc-5-branch/gcc/fortran/trans-common.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538874-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 29 22:40:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 33998 invoked by alias); 29 Sep 2016 22:40:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33876 invoked by uid 48); 29 Sep 2016 22:40:25 -0000 From: "prathamesh3492 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77798] New: 465.tonto ICE with trunk with -O2 Date: Thu, 29 Sep 2016 22:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: prathamesh3492 at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02489.txt.bz2 Content-length: 1033 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77798 Bug ID: 77798 Summary: 465.tonto ICE with trunk with -O2 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end Assignee: unassigned at gcc dot gnu.org Reporter: prathamesh3492 at gcc dot gnu.org Target Milestone: --- Hi, 465.tonto from SPEC2006 ICE's with trunk with -O2 (tested with r240626): intvec.fppized.f90: In function '__intvec_module_MOD_chop_large_values': intvec.fppized.f90:394:0: error: bogus comparison result type end subroutine Error: bogus comparison result type integer(kind=3D4) _28 =3D bb_53 < 0; intvec.fppized.f90:394:0: internal compiler error: verify_gimple failed 0xc6bb7c verify_gimple_in_cfg(function*, bool) ../../gcc/gcc/tree-cfg.c:5209 0xb5121a execute_function_todo ../../gcc/gcc/passes.c:1964 0xb51c55 execute_todo ../../gcc/gcc/passes.c:2014 Thanks, Prathamesh >>From gcc-bugs-return-538875-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 01:07:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26912 invoked by alias); 30 Sep 2016 01:07:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 26682 invoked by uid 48); 30 Sep 2016 01:06:51 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77584] Unclassifiable statement error with procedure pointer using template named "structure_" Date: Fri, 30 Sep 2016 01:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02490.txt.bz2 Content-length: 508 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77584 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |WAITING Last reconfirmed| |2016-09-30 Ever confirmed|0 |1 --- Comment #3 from Dominique d'Humieres --- Isn't this PR fixed? >>From gcc-bugs-return-538876-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 01:49:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26541 invoked by alias); 30 Sep 2016 01:49:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 21560 invoked by uid 48); 30 Sep 2016 01:49:42 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77799] New: missing -Wformat-length warning on a trivial sprintf overflow with no directives Date: Fri, 30 Sep 2016 01:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02491.txt.bz2 Content-length: 1879 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77799 Bug ID: 77799 Summary: missing -Wformat-length warning on a trivial sprintf overflow with no directives Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end Assignee: unassigned at gcc dot gnu.org Reporter: msebor at gcc dot gnu.org Target Milestone: --- Similar to bug 77671, GCC warns for a call to sprintf with a format string containing no format directives that writes past the end of the destination= if the call contains redundant (unused) arguments but fails to issue the same warning when there are no arguments. The underlying reason is the same as = in bug 77671: GCC transforms the call with no redundant arguments to one to me= mcpy before the warning pass has a chance to see it. $ cat zzz.c && /build/gcc-trunk-git/gcc/xgcc -B /build/gcc-trunk-git/gcc -O= 2 -S -Wformat-length -fdump-tree-optimized=3D/dev/stdout zzz.c char d [2]; extern int sprintf (char*, const char*, ...); void f (void) { sprintf (d, "123"); } void g (void) {=20 sprintf (d, "123", 0); } ;; Function f (f, funcdef_no=3D0, decl_uid=3D1795, cgraph_uid=3D0, symbol_o= rder=3D1) f () { : __builtin_memcpy (&d, "123", 4); [tail call] return; } zzz.c: In function =E2=80=98g=E2=80=99: zzz.c:12:18: warning: writing format character =E2=80=983=E2=80=99 at offse= t 2 past the end of the destination [-Wformat-length=3D] sprintf (d, "123", 0); ^ zzz.c:12:3: note: format output 4 bytes into a destination of size 2 sprintf (d, "123", 0); ^~~~~~~~~~~~~~~~~~~~~ ;; Function g (g, funcdef_no=3D1, decl_uid=3D1798, cgraph_uid=3D1, symbol_o= rder=3D2) g () { : sprintf (&d, "123", 0); [tail call] return; } >>From gcc-bugs-return-538877-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 02:21:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 75982 invoked by alias); 30 Sep 2016 02:21:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 75685 invoked by uid 55); 30 Sep 2016 02:20:51 -0000 From: "fritzoreese at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77584] Unclassifiable statement error with procedure pointer using template named "structure_" Date: Fri, 30 Sep 2016 02:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: fritzoreese at gmail dot com X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02492.txt.bz2 Content-length: 957 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77584 --- Comment #4 from Fritz Reese --- Yes, fixed in r240230, I can't change the bug status myself or I would've https://gcc.gnu.org/ml/fortran/2016-09/msg00105.html On Thu, Sep 29, 2016, 21:06 dominiq at lps dot ens.fr < gcc-bugzilla@gcc.gnu.org> wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77584 > > Dominique d'Humieres changed: > > What |Removed |Added > > -------------------------------------------------------------------------= --- > Status|UNCONFIRMED |WAITING > Last reconfirmed| |2016-09-30 > Ever confirmed|0 |1 > > --- Comment #3 from Dominique d'Humieres --- > Isn't this PR fixed? > > -- > You are receiving this mail because: > You are on the CC list for the bug. >>From gcc-bugs-return-538878-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 04:41:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22545 invoked by alias); 30 Sep 2016 04:41:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22386 invoked by uid 48); 30 Sep 2016 04:41:36 -0000 From: "coypu at sdf dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77800] New: Undefined ref to host_detect_local_cpu on netbsd/arm Date: Fri, 30 Sep 2016 04:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: coypu at sdf dot org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02493.txt.bz2 Content-length: 1118 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77800 Bug ID: 77800 Summary: Undefined ref to host_detect_local_cpu on netbsd/arm Product: gcc Version: 5.4.0 Status: UNCONFIRMED Severity: minor Priority: P3 Component: bootstrap Assignee: unassigned at gcc dot gnu.org Reporter: coypu at sdf dot org Target Milestone: --- Hello, Building GCC 5.4.0 on netbsd 7.0.1 armv6hf I encounter failure like: gcc.o:(.rodata+0x58c4): undefined reference to `host_detect_local_cpu(int, = char const**)' I believe this is because gcc/config.host includes driver-arm.o which defin= es this function only on freebsd/arm and linux/arm. NetBSD does have a procfs which is mounted by default. it usually does incl= ude the expected useful info on /proc/cpuinfo (although not on netbsd-7.0.1/arm, maybe this will change in a next release). I am working around this by excluding the prototype for this function in gcc/config/arm/arm.h. I don't believe any of this has changed in GCC 5.4.1, but did not try to bu= ild it yet. >>From gcc-bugs-return-538879-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 04:50:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35002 invoked by alias); 30 Sep 2016 04:50:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34568 invoked by uid 55); 30 Sep 2016 04:50:09 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77707] [5/6/7 Regression] formatted direct access: nextrec off by one Date: Fri, 30 Sep 2016 04:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02494.txt.bz2 Content-length: 764 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77707 --- Comment #8 from Jerry DeLisle --- Author: jvdelisle Date: Fri Sep 30 04:49:36 2016 New Revision: 240645 URL: https://gcc.gnu.org/viewcvs?rev=3D240645&root=3Dgcc&view=3Drev Log: 2016-09-29 Jerry DeLisle Backport from trunk PR libgfortran/77707 io/transfer.c (next_record): Flush before calculating next_record. Correctly calculate. * gfortran.dg/inquire_17.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/inquire_17.f90 Modified: branches/gcc-5-branch/gcc/testsuite/ChangeLog branches/gcc-5-branch/libgfortran/ChangeLog branches/gcc-5-branch/libgfortran/io/transfer.c >>From gcc-bugs-return-538880-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 05:18:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 12741 invoked by alias); 30 Sep 2016 05:18:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 12128 invoked by uid 48); 30 Sep 2016 05:18:37 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77775] [7 Regression] since r238559 Kdevelop gets miscompiled Date: Fri, 30 Sep 2016 05:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02495.txt.bz2 Content-length: 882 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77775 --- Comment #5 from Markus Trippelsdorf --- ;; Function void Sublime::Area::qt_static_metacall() (null) ;; enabled by -tree-original { typedef struct _t _t; if (1B->__pfn =3D=3D ((struct _t) {.__pfn=3DviewAdded, .__delta=3D0}).__p= fn && (1B->__delta =3D=3D ((struct _t) {.__pfn=3DviewAdded, .__delta=3D0}).__delt= a || 1B->__pfn =3D=3D 0B)) { <>>>>; } } vs. ;; Function void Sublime::Area::qt_static_metacall() (null) ;; enabled by -tree-original { typedef struct _t _t; if (1B->__pfn =3D=3D 0B && (1B->__delta =3D=3D ((struct _t) {.__pfn=3Dvie= wAdded, .__delta=3D0}).__delta || 1B->__pfn =3D=3D 0B)) { <>>>>; } } Jason? >>From gcc-bugs-return-538881-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 07:07:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 18681 invoked by alias); 30 Sep 2016 07:07:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 18155 invoked by uid 55); 30 Sep 2016 07:06:54 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77399] Poor code generation for vector casts and loads Date: Fri, 30 Sep 2016 07:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02496.txt.bz2 Content-length: 672 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77399 --- Comment #11 from Richard Biener --- Author: rguenth Date: Fri Sep 30 07:06:16 2016 New Revision: 240646 URL: https://gcc.gnu.org/viewcvs?rev=3D240646&root=3Dgcc&view=3Drev Log: 2016-09-30 Richard Biener PR tree-optimization/77399 * tree-ssa-forwprop.c (simplify_vector_constructor): Handle float <-> int conversions. * gcc.dg/tree-ssa/forwprop-35.c: New testcase. Added: trunk/gcc/testsuite/gcc.dg/tree-ssa/forwprop-35.c Modified: trunk/gcc/ChangeLog trunk/gcc/testsuite/ChangeLog trunk/gcc/tree-ssa-forwprop.c >>From gcc-bugs-return-538882-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 07:20:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 38353 invoked by alias); 30 Sep 2016 07:20:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 38211 invoked by uid 48); 30 Sep 2016 07:20:32 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77798] [7 Regression] 465.tonto ICE with trunk with -O2 Date: Fri, 30 Sep 2016 07:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc short_desc everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02497.txt.bz2 Content-length: 852 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77798 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-30 CC| |marxin at gcc dot gnu.org Summary|465.tonto ICE with trunk |[7 Regression] 465.tonto |with -O2 |ICE with trunk with -O2 Ever confirmed|0 |1 Known to fail| |7.0 --- Comment #1 from Martin Li=C5=A1ka --- Confirmed, started with r240616. >>From gcc-bugs-return-538883-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 07:26:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121932 invoked by alias); 30 Sep 2016 07:26:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121720 invoked by uid 48); 30 Sep 2016 07:26:31 -0000 From: "bernd.edlinger at hotmail dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77748] pr77550.C fails on arm-none-eabi Date: Fri, 30 Sep 2016 07:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: bernd.edlinger at hotmail dot de X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: bernd.edlinger at hotmail dot de X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02498.txt.bz2 Content-length: 442 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77748 Bernd Edlinger changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #25 from Bernd Edlinger --- fixed. >>From gcc-bugs-return-538884-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 07:32:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 7707 invoked by alias); 30 Sep 2016 07:32:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 7537 invoked by uid 48); 30 Sep 2016 07:32:09 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77584] Unclassifiable statement error with procedure pointer using template named "structure_" Date: Fri, 30 Sep 2016 07:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02499.txt.bz2 Content-length: 593 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77584 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |FIXED --- Comment #5 from Dominique d'Humieres --- > Yes, fixed in r240230, I can't change the bug status myself or I would've This is strange: if you have write access, you should be able to change the status. >>From gcc-bugs-return-538885-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 07:32:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 7747 invoked by alias); 30 Sep 2016 07:32:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 7557 invoked by uid 48); 30 Sep 2016 07:32:09 -0000 From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77798] [7 Regression] 465.tonto ICE with trunk with -O2 Date: Fri, 30 Sep 2016 07:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02500.txt.bz2 Content-length: 242 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77798 --- Comment #2 from Martin Li=C5=A1ka --- Created attachment 39726 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39726&action=3Dedit Reduced test-case >>From gcc-bugs-return-538886-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 07:43:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 86710 invoked by alias); 30 Sep 2016 07:43:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 86459 invoked by uid 48); 30 Sep 2016 07:43:18 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77798] [7 Regression] 465.tonto ICE with trunk with -O2 Date: Fri, 30 Sep 2016 07:43:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02501.txt.bz2 Content-length: 511 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77798 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |rguenth at gcc dot = gnu.org Target Milestone|--- |7.0 --- Comment #3 from Richard Biener --- Mine. >>From gcc-bugs-return-538887-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 07:45:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 89999 invoked by alias); 30 Sep 2016 07:45:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 89138 invoked by uid 48); 30 Sep 2016 07:45:11 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77399] Poor code generation for vector casts and loads Date: Fri, 30 Sep 2016 07:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02502.txt.bz2 Content-length: 142 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77399 --- Comment #12 from Richard Biener --- Load part remains. >>From gcc-bugs-return-538888-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 07:51:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27746 invoked by alias); 30 Sep 2016 07:51:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27449 invoked by uid 48); 30 Sep 2016 07:51:06 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77798] [7 Regression] 465.tonto ICE with trunk with -O2 Date: Fri, 30 Sep 2016 07:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02503.txt.bz2 Content-length: 188 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77798 --- Comment #4 from Richard Biener --- Ok, looks like a genmatch insufficiency with type auto-detection. >>From gcc-bugs-return-538889-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 08:38:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 93909 invoked by alias); 30 Sep 2016 08:38:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 93700 invoked by uid 48); 30 Sep 2016 08:38:15 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77602] ICE with cyclic length declaration: Killed (program f951) Date: Fri, 30 Sep 2016 08:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: accepts-invalid, ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02504.txt.bz2 Content-length: 494 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77602 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-30 Ever confirmed|0 |1 --- Comment #3 from Dominique d'Humieres --- Confirmed. >>From gcc-bugs-return-538890-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 08:39:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 94947 invoked by alias); 30 Sep 2016 08:39:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 94774 invoked by uid 48); 30 Sep 2016 08:38:51 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77603] ICE: Segmentation fault (program f951) Date: Fri, 30 Sep 2016 08:39:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: accepts-invalid, ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02505.txt.bz2 Content-length: 521 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77603 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-30 Ever confirmed|0 |1 --- Comment #2 from Dominique d'Humieres --- Confirmed from 4.8 up to trunk (7.0). >>From gcc-bugs-return-538891-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 08:46:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 49438 invoked by alias); 30 Sep 2016 08:46:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 49176 invoked by uid 48); 30 Sep 2016 08:45:58 -0000 From: "ma30002000 at yahoo dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77801] New: std::experimental::gcd std::experimental::lcd use non-constexpr std::abs Date: Fri, 30 Sep 2016 08:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ma30002000 at yahoo dot de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02506.txt.bz2 Content-length: 799 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77801 Bug ID: 77801 Summary: std::experimental::gcd std::experimental::lcd use non-constexpr std::abs Product: gcc Version: 6.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: ma30002000 at yahoo dot de Target Milestone: --- std::experimental::gcd std::experimental::lcd use non-constexpr std::abs, i= .e. they cannot be used in constexprs.=20 As I understand, according to all currently existing c++ standards, std::ab= s is not defined as constexr (although it probably should be). Anyway, at least lcd and gcd should be usable as constexprs. >>From gcc-bugs-return-538892-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 08:51:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 59136 invoked by alias); 30 Sep 2016 08:51:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 58791 invoked by uid 48); 30 Sep 2016 08:50:47 -0000 From: "sv.mueller@tu-braunschweig.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/69080] No automatic deallocation of allocatable function results Date: Fri, 30 Sep 2016 08:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 4.9.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: sv.mueller@tu-braunschweig.de X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02507.txt.bz2 Content-length: 678 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D69080 --- Comment #16 from Mueller --- I stumbled upon this problem when creating an object-oriented string class = if I remember correctly. Some procedure would allocate a string and return it (l= ike dummy_create_allocatable in the test prog). The calling procedure would use that string in some way (like dummy_trigger is doing) and then doesn't need= the string anymore. So there was a use case for this: We wanted to have a nice string class. This, sadly, is not feasable now as returned string objects w= ould just end in nirvana and not be deallocated if I gathered everything correct= ly. >>From gcc-bugs-return-538894-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 09:57:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 15588 invoked by alias); 30 Sep 2016 09:57:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 15470 invoked by uid 48); 30 Sep 2016 09:57:37 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77801] std::experimental::gcd std::experimental::lcd use non-constexpr std::abs Date: Fri, 30 Sep 2016 09:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02509.txt.bz2 Content-length: 295 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77801 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |WAITING >>From gcc-bugs-return-538893-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 09:57:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 15577 invoked by alias); 30 Sep 2016 09:57:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 15272 invoked by uid 48); 30 Sep 2016 09:57:29 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77801] std::experimental::gcd std::experimental::lcd use non-constexpr std::abs Date: Fri, 30 Sep 2016 09:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02508.txt.bz2 Content-length: 608 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77801 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-30 Ever confirmed|0 |1 --- Comment #1 from Jonathan Wakely --- (In reply to Matthias Schneider from comment #0) > Anyway, at least lcd and gcd should be usable as constexprs. Did you actually test it? >>From gcc-bugs-return-538895-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 09:59:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 19928 invoked by alias); 30 Sep 2016 09:59:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 19251 invoked by uid 48); 30 Sep 2016 09:59:09 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/67200] Copy elision and implicit move in return performed in cases not allowed by standard Date: Fri, 30 Sep 2016 09:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: accepts-invalid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02510.txt.bz2 Content-length: 291 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D67200 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |6.0 >>From gcc-bugs-return-538896-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 10:00:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23570 invoked by alias); 30 Sep 2016 10:00:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22694 invoked by uid 48); 30 Sep 2016 10:00:15 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77797] Unable to use constexpr function as constexpr template parameter Date: Fri, 30 Sep 2016 10:00:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 4.9.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02511.txt.bz2 Content-length: 168 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77797 --- Comment #3 from Jonathan Wakely --- https://gcc.gnu.org/ shows the active releases. >>From gcc-bugs-return-538897-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 10:21:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 104361 invoked by alias); 30 Sep 2016 10:21:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 104069 invoked by uid 48); 30 Sep 2016 10:21:20 -0000 From: "fritzoreese at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77584] Unclassifiable statement error with procedure pointer using template named "structure_" Date: Fri, 30 Sep 2016 10:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: fritzoreese at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02512.txt.bz2 Content-length: 740 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77584 Fritz Reese changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fritzoreese at gmail dot c= om --- Comment #6 from Fritz Reese --- (In reply to Dominique d'Humieres from comment #5) > > Yes, fixed in r240230, I can't change the bug status myself or I would'= ve >=20 > This is strange: if you have write access, you should be able to change t= he > status. Maybe it's because I created my bugzilla account before I got write access? Is there someone I can contact to sort that out? >>From gcc-bugs-return-538898-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 10:24:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73758 invoked by alias); 30 Sep 2016 10:24:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 6095 invoked by uid 48); 30 Sep 2016 10:24:26 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77584] Unclassifiable statement error with procedure pointer using template named "structure_" Date: Fri, 30 Sep 2016 10:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02513.txt.bz2 Content-length: 454 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77584 Marek Polacek changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mpolacek at gcc dot gnu.org --- Comment #7 from Marek Polacek --- You need to use your @gnu.gcc.org account to be able to modify BZs. >>From gcc-bugs-return-538899-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 10:35:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 66161 invoked by alias); 30 Sep 2016 10:35:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 65206 invoked by uid 48); 30 Sep 2016 10:35:12 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77802] New: [7 Regression] Boost Fiber doesn't compile Date: Fri, 30 Sep 2016 10:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02514.txt.bz2 Content-length: 3119 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77802 Bug ID: 77802 Summary: [7 Regression] Boost Fiber doesn't compile Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: trippels at gcc dot gnu.org CC: ville.voutilainen at gmail dot com Target Milestone: --- Boost-1.62 doesn't build on trunk: $ cat tup.cpp #include template struct execution_context { typedef std::tuple args_tpl_t; typedef std::tuple::type...> ret_tpl_t; execution_context(); execution_context(execution_context &&); ret_tpl_t operator()() { args_tpl_t data; return tuple_cat(std::forward_as_tuple(execution_context()), data); } }; void fn1() { execution_context cc; cc(); } $ clang++ -stdlib=3Dlibc++ -c tup.cpp $ g++-6 -c tup.cpp $ g++-trunk -c tup.cpp In file included from tup.cpp:1:0: /usr/lib/gcc/x86_64-pc-linux-gnu/7.0.0/include/g++-v7/tuple: In instantiati= on of =E2=80=98constexpr std::_Head_base<_Idx, _Head, true>::_Head_base(_UHead= &&) [with _UHead =3D execution_context&; long unsigned int _Idx =3D 0ul; _Head = =3D execution_context]=E2=80=99: /usr/lib/gcc/x86_64-pc-linux-gnu/7.0.0/include/g++-v7/tuple:235:57: requi= red from =E2=80=98constexpr std::_Tuple_impl<_Idx, _Head, _Tail ...>::_Tuple_im= pl(const std::_Tuple_impl<_Idx, _UElements ...>&) [with _UElements =3D {execution_context&&, int}; long unsigned int _Idx =3D 0ul; _Head =3D execution_context; _Tail =3D {int}]=E2=80=99 /usr/lib/gcc/x86_64-pc-linux-gnu/7.0.0/include/g++-v7/tuple:1041:60: requ= ired from =E2=80=98constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)= [with _U1 =3D execution_context&&; _U2 =3D int; typename std::enable_if<(std::_TC::_MoveConstructibleTuple<_U1, _U2>() && std::_TC::_ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type = =3D 1u; _T1 =3D execution_context; _T2 =3D int]=E2=80=99 tup.cpp:10:70: required from =E2=80=98execution_context::ret_tpl_t execution_context::operator()() [with Args =3D {int}; execution_context::ret_tpl_t =3D std::tuple, i= nt>]=E2=80=99 tup.cpp:15:6: required from here /usr/lib/gcc/x86_64-pc-linux-gnu/7.0.0/include/g++-v7/tuple:87:35: error: u= se of deleted function =E2=80=98constexpr execution_context::execution_co= ntext(const execution_context&)=E2=80=99 : _Head(std::forward<_UHead>(__h)) { } ^ tup.cpp:2:36: note: =E2=80=98constexpr execution_context::execution_co= ntext(const execution_context&)=E2=80=99 is implicitly declared as deleted because =E2=80=98execution_context=E2=80=99 declares a move constructor or mov= e assignment operator template struct execution_context { ^~~~~~~~~~~~~~~~~ >>From gcc-bugs-return-538900-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 10:37:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 87272 invoked by alias); 30 Sep 2016 10:37:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 87159 invoked by uid 48); 30 Sep 2016 10:37:25 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77802] [7 Regression] Boost Fiber doesn't compile Date: Fri, 30 Sep 2016 10:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02515.txt.bz2 Content-length: 293 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77802 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |7.0 >>From gcc-bugs-return-538901-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 10:41:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 91033 invoked by alias); 30 Sep 2016 10:41:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 90839 invoked by uid 48); 30 Sep 2016 10:41:35 -0000 From: "vehre at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77785] ICE in gfc_get_caf_token_offset, at fortran/trans-expr.c:1990 Date: Fri, 30 Sep 2016 10:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: vehre at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02516.txt.bz2 Content-length: 387 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77785 vehre at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |WAITING --- Comment #3 from vehre at gcc dot gnu.org --- The patch hit trunk with r240650. Did this fix it for you? >>From gcc-bugs-return-538902-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 11:28:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110815 invoked by alias); 30 Sep 2016 11:28:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 110656 invoked by uid 48); 30 Sep 2016 11:28:37 -0000 From: "foreese at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77584] Unclassifiable statement error with procedure pointer using template named "structure_" Date: Fri, 30 Sep 2016 11:28:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: foreese at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02517.txt.bz2 Content-length: 328 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77584 --- Comment #8 from foreese at gcc dot gnu.org --- (In reply to Marek Polacek from comment #7) > You need to use your @gnu.gcc.org account to be able to modify BZs. Oh, thanks. Seems obvious now that I think about it. I didn't realize such = an account was created for me. >>From gcc-bugs-return-538903-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 11:36:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 117532 invoked by alias); 30 Sep 2016 11:36:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 117405 invoked by uid 48); 30 Sep 2016 11:36:13 -0000 From: "wbx at openadk dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/47779] Problem cross-compiling trunk for bfin Date: Fri, 30 Sep 2016 11:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.6.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: wbx at openadk dot org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02518.txt.bz2 Content-length: 201 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D47779 --- Comment #7 from Waldemar Brodkorb --- I fixed it in uClibc-ng some time ago. So if you want you can close the ticket. >>From gcc-bugs-return-538904-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 11:38:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 124483 invoked by alias); 30 Sep 2016 11:38:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 119175 invoked by uid 55); 30 Sep 2016 11:37:56 -0000 From: "foreese at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77782] ICE in gfc_get_union_type, at fortran/trans-types.c:2387 Date: Fri, 30 Sep 2016 11:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: foreese at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02519.txt.bz2 Content-length: 781 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77782 --- Comment #3 from foreese at gcc dot gnu.org --- Author: foreese Date: Fri Sep 30 11:37:23 2016 New Revision: 240651 URL: https://gcc.gnu.org/viewcvs?rev=3D240651&root=3Dgcc&view=3Drev Log: 2016-09-30 Fritz Reese Fix ICE caused by union types comparing equal to structures. PR fortran/77782 * gcc/fortran/interface.c (gfc_compare_derived_types): Use gfc_compare_union_types to compare union types. PR fortran/77782 * gcc/testsuite/gfortran.dg/dec_structure_16.f90: New testcase. Added: trunk/gcc/testsuite/gfortran.dg/dec_structure_16.f90 Modified: trunk/gcc/fortran/ChangeLog trunk/gcc/fortran/interface.c trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538905-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 11:40:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3271 invoked by alias); 30 Sep 2016 11:40:35 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3137 invoked by uid 48); 30 Sep 2016 11:40:22 -0000 From: "foreese at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77782] ICE in gfc_get_union_type, at fortran/trans-types.c:2387 Date: Fri, 30 Sep 2016 11:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: foreese at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: foreese at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02520.txt.bz2 Content-length: 567 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77782 foreese at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |foreese at gcc dot gnu.org Resolution|--- |FIXED Assignee|unassigned at gcc dot gnu.org |foreese at gcc dot = gnu.org --- Comment #4 from foreese at gcc dot gnu.org --- Fixed in r240651. >>From gcc-bugs-return-538906-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 11:41:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4724 invoked by alias); 30 Sep 2016 11:41:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4651 invoked by uid 48); 30 Sep 2016 11:41:12 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77802] [7 Regression] Boost Fiber doesn't compile Date: Fri, 30 Sep 2016 11:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02521.txt.bz2 Content-length: 381 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77802 --- Comment #1 from Jonathan Wakely --- 17.6.4.8 [res.on.functions] p2 In particular, the effects are undefined in the following cases: ... =E2=80=94 if an incomplete type (3.9) is used as a template argument when i= nstantiating a template component, unless specifically allowed for that component. >>From gcc-bugs-return-538908-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 11:43:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 8200 invoked by alias); 30 Sep 2016 11:43:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 8107 invoked by uid 48); 30 Sep 2016 11:43:43 -0000 From: "ma30002000 at yahoo dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77801] std::experimental::gcd std::experimental::lcd use non-constexpr std::abs Date: Fri, 30 Sep 2016 11:43:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ma30002000 at yahoo dot de X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02523.txt.bz2 Content-length: 889 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77801 --- Comment #2 from Matthias Schneider --- Of course: [...] /home/vcs/VideoSDK/vcs-base/include/vcsbase/Time.h:122:203: in constexpr expansion of =E2=80=98vcsbase::Time::FromInt(ticks, (uncertaintyInTicks / 9= 0u), 0l, ((int64_t)ticksPerMs))=E2=80=99 /home/vcs/VideoSDK/vcs-base/include/vcsbase/TimeImpl.h:88:38: in constexpr expansion of =E2=80=98std::experimental::fundamentals_v2::gcd(div, mul)=E2=80=99 /usr/include/c++/6/experimental/numeric:65:24: in constexpr expansion of =E2=80=98std::experimental::fundamentals_v2::gcd(__n, (= __m % __n))=E2=80=99 /usr/include/c++/6/experimental/numeric:64:23: error: call to non-constexpr function =E2=80=98long int std::abs(long int)=E2=80=99 : __n =3D=3D 0 ? std::abs(__m) ~~~~~~~~^~~~~ [...] >>From gcc-bugs-return-538907-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 11:43:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 7305 invoked by alias); 30 Sep 2016 11:43:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 7128 invoked by uid 55); 30 Sep 2016 11:43:05 -0000 From: "foreese at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77764] ICE in is_anonymous_component, at fortran/interface.c:450 Date: Fri, 30 Sep 2016 11:43:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: foreese at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02522.txt.bz2 Content-length: 722 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77764 --- Comment #3 from foreese at gcc dot gnu.org --- Author: foreese Date: Fri Sep 30 11:42:31 2016 New Revision: 240652 URL: https://gcc.gnu.org/viewcvs?rev=3D240652&root=3Dgcc&view=3Drev Log: 2016-09-30 Fritz Reese Fix ICE for maps with zero components. PR fortran/77764 * gcc/fortran/interface.c (gfc_compare_union_types): Null-guard map components. PR fortran/77764 * gcc/testsuite/gfortran.dg/dec_union_8.f90: New testcase. Added: trunk/gcc/testsuite/gfortran.dg/dec_union_8.f90 Modified: trunk/gcc/fortran/ChangeLog trunk/gcc/fortran/interface.c trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538909-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 11:45:15 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 9914 invoked by alias); 30 Sep 2016 11:45:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 9707 invoked by uid 48); 30 Sep 2016 11:45:01 -0000 From: "foreese at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77764] ICE in is_anonymous_component, at fortran/interface.c:450 Date: Fri, 30 Sep 2016 11:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: foreese at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: foreese at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02524.txt.bz2 Content-length: 491 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77764 foreese at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED Assignee|unassigned at gcc dot gnu.org |foreese at gcc dot = gnu.org --- Comment #4 from foreese at gcc dot gnu.org --- Fixed in r240652. >>From gcc-bugs-return-538910-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 11:45:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 10782 invoked by alias); 30 Sep 2016 11:45:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 10131 invoked by uid 48); 30 Sep 2016 11:45:16 -0000 From: "ma30002000 at yahoo dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77801] std::experimental::gcd std::experimental::lcd use non-constexpr std::abs Date: Fri, 30 Sep 2016 11:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ma30002000 at yahoo dot de X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02525.txt.bz2 Content-length: 265 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77801 --- Comment #3 from Matthias Schneider --- Isn't it also obvious that calling a non-constexpr function from a constexpr function will not work when actually using it as a constexpr? >>From gcc-bugs-return-538912-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 11:57:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31541 invoked by alias); 30 Sep 2016 11:57:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31157 invoked by uid 48); 30 Sep 2016 11:57:23 -0000 From: "ville.voutilainen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77802] [7 Regression] Boost Fiber doesn't compile Date: Fri, 30 Sep 2016 11:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ville.voutilainen at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02527.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77802 Ville Voutilainen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-30 Assignee|unassigned at gcc dot gnu.org |ville.voutilainen a= t gmail dot com Ever confirmed|0 |1 >>From gcc-bugs-return-538911-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 11:57:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 30705 invoked by alias); 30 Sep 2016 11:57:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29201 invoked by uid 48); 30 Sep 2016 11:57:07 -0000 From: "ville.voutilainen at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77802] [7 Regression] Boost Fiber doesn't compile Date: Fri, 30 Sep 2016 11:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ville.voutilainen at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02526.txt.bz2 Content-length: 141 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77802 --- Comment #2 from Ville Voutilainen = --- Mine. >>From gcc-bugs-return-538913-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 12:07:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 82262 invoked by alias); 30 Sep 2016 12:07:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 82114 invoked by uid 48); 30 Sep 2016 12:07:13 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77801] std::experimental::gcd std::experimental::lcd use non-constexpr std::abs Date: Fri, 30 Sep 2016 12:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02528.txt.bz2 Content-length: 1273 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77801 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |rejects-valid Status|WAITING |NEW --- Comment #4 from Jonathan Wakely --- We still require a testcase, as https://gcc.gnu.org/bugs/ explains (which y= ou were requested to read when created this report). We have tests that they can be used in constant expressions, which pass: https://gcc.gnu.org/viewcvs/gcc/trunk/libstdc%2B%2B-v3/testsuite/experiment= al/numeric/ The problem is that abs(int, int) is declared with attribute((const)) in gl= ibc, which allows this to work. It doesn't work with other argument types, becau= se they use the non-constexpr overloads added in #include #include constexpr int i =3D std::experimental::gcd(4L, 5L); It's also necessary to include because otherwise I think we get t= he floating-point overloads from which *are* constexpr. So the interactions are actually not entirely obvious. Please provide a testcase next time. >>From gcc-bugs-return-538914-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 13:44:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 28355 invoked by alias); 30 Sep 2016 13:44:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27948 invoked by uid 55); 30 Sep 2016 13:44:11 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77801] std::experimental::gcd std::experimental::lcd use non-constexpr std::abs Date: Fri, 30 Sep 2016 13:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02529.txt.bz2 Content-length: 1046 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77801 --- Comment #5 from Jonathan Wakely --- Author: redi Date: Fri Sep 30 13:43:37 2016 New Revision: 240656 URL: https://gcc.gnu.org/viewcvs?rev=3D240656&root=3Dgcc&view=3Drev Log: Remove use of std::abs in experimental::{gcd,lcm} PR libstdc++/77801 * include/experimental/numeric: Include . (__abs): Define. (gcd, lcm): Use __abs instead of std::abs. * testsuite/experimental/numeric/77801.cc: New test. * testsuite/experimental/numeric/gcd.cc: Test unsigned inputs. * testsuite/experimental/numeric/lcm.cc: Likewise. Added: trunk/libstdc++-v3/testsuite/experimental/numeric/77801.cc - copied, changed from r240653, trunk/libstdc++-v3/testsuite/experimental/numeric/gcd.cc Modified: trunk/libstdc++-v3/ChangeLog trunk/libstdc++-v3/include/experimental/numeric trunk/libstdc++-v3/testsuite/experimental/numeric/gcd.cc trunk/libstdc++-v3/testsuite/experimental/numeric/lcm.cc >>From gcc-bugs-return-538915-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 14:35:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24676 invoked by alias); 30 Sep 2016 14:35:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24340 invoked by uid 48); 30 Sep 2016 14:35:46 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77803] New: Bogus implicit-fallthrough warning Date: Fri, 30 Sep 2016 14:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02530.txt.bz2 Content-length: 911 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77803 Bug ID: 77803 Summary: Bogus implicit-fallthrough warning Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: trippels at gcc dot gnu.org CC: mpolacek at gcc dot gnu.org Target Milestone: --- This happened while compiling LibreOffice: % cat grfmgr2.ii struct A {}; int a; void fn1() { switch (0) { case 0: { A b; [[fallthrough]]; } default: a =3D 0; } } % g++ -Wextra -c grfmgr2.ii grfmgr2.ii: In function =E2=80=98void fn1()=E2=80=99: grfmgr2.ii:7:20: warning: this statement may fall through [-Wimplicit-fallthrough] [[fallthrough]]; ^ grfmgr2.ii:9:3: note: here default: ^~~~~~~ >>From gcc-bugs-return-538916-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 14:52:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 46569 invoked by alias); 30 Sep 2016 14:52:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 46437 invoked by uid 48); 30 Sep 2016 14:52:30 -0000 From: "vgheorgh at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77804] New: Internal compiler error on incorrect initialization of new-d array Date: Fri, 30 Sep 2016 14:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: vgheorgh at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02531.txt.bz2 Content-length: 888 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77804 Bug ID: 77804 Summary: Internal compiler error on incorrect initialization of new-d array Product: gcc Version: 6.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: vgheorgh at gmail dot com Target Milestone: --- The code below #include int main() { char buf[256]; std::size_t n =3D 10; int* p =3D new (buf) (int[n]); // incorrect way, parenthesis by mistake // int* p =3D new (buf) int[n]; // correct way } produces an internal compile error in gcc versions 6 or later. It compiles = fine (although with an warning: non-constant array new length must be specified without parentheses around the type-id [-Wvla]. >>From gcc-bugs-return-538917-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 15:21:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 102245 invoked by alias); 30 Sep 2016 15:21:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 102150 invoked by uid 48); 30 Sep 2016 15:21:24 -0000 From: "jason at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77775] [7 Regression] since r238559 Kdevelop gets miscompiled Date: Fri, 30 Sep 2016 15:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jason at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: jason at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: priority bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02532.txt.bz2 Content-length: 430 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77775 Jason Merrill changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P3 |P1 Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |jason at gcc dot gn= u.org >>From gcc-bugs-return-538918-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 15:34:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 126428 invoked by alias); 30 Sep 2016 15:34:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 122940 invoked by uid 48); 30 Sep 2016 15:34:14 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77707] [5/6/7 Regression] formatted direct access: nextrec off by one Date: Fri, 30 Sep 2016 15:34:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02533.txt.bz2 Content-length: 454 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77707 Jerry DeLisle changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #9 from Jerry DeLisle --- Fixed on 5, 6, and 7. Closing >>From gcc-bugs-return-538919-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 15:51:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 81618 invoked by alias); 30 Sep 2016 15:51:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 81525 invoked by uid 55); 30 Sep 2016 15:51:05 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/70006] Duplicate errors "label not defined" Date: Fri, 30 Sep 2016 15:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02534.txt.bz2 Content-length: 866 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D70006 --- Comment #10 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Sep 30 15:50:31 2016 New Revision: 240659 URL: https://gcc.gnu.org/viewcvs?rev=3D240659&root=3Dgcc&view=3Drev Log: 2016-09-30 Steven G. Kargl Backport from trunk PR fortran/70006 * io.c (gfc_resolve_dt): Use correct locus. * resolve.c (resolve_branch): Ditto. 2016-09-30 Steven G. Kargl Backport from trunk PR fortran/70006 * gfortran.dg/pr70006.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr70006.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/io.c branches/gcc-5-branch/gcc/fortran/resolve.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538920-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 16:35:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 122835 invoked by alias); 30 Sep 2016 16:35:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 122670 invoked by uid 48); 30 Sep 2016 16:35:35 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77803] Bogus implicit-fallthrough warning Date: Fri, 30 Sep 2016 16:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02535.txt.bz2 Content-length: 620 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77803 Marek Polacek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-30 Assignee|unassigned at gcc dot gnu.org |mpolacek at gcc dot= gnu.org Ever confirmed|0 |1 --- Comment #1 from Marek Polacek --- Seems like insufficient handling of try/finally. Mine. >>From gcc-bugs-return-538921-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 16:46:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 17994 invoked by alias); 30 Sep 2016 16:46:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 16666 invoked by uid 48); 30 Sep 2016 16:46:35 -0000 From: "antoine.sauma at tre dot se" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77807] New: Problem with for loop condition Date: Fri, 30 Sep 2016 16:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: antoine.sauma at tre dot se X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02536.txt.bz2 Content-length: 915 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77807 Bug ID: 77807 Summary: Problem with for loop condition Product: gcc Version: 5.4.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: antoine.sauma at tre dot se Target Milestone: --- Here is the code: #include #include using namespace std; int main(int argc, char** argv) { long double ld =3D 1; for (unsigned long n =3D 0; n < 100 && ld > 0.1; n++) { cout << n << endl << flush; ld =3D 1/(n + 1); } return 0; } The loop should stop if n becomes >=3D 100 or if ld becomes <=3D 0.1, which= should occur when n is 9. However, compiled with g++ version 5.4.0 on Ubuntu 16.04, when I run the program I get: 0 1 What is happening??? >>From gcc-bugs-return-538922-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 16:49:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24531 invoked by alias); 30 Sep 2016 16:49:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23786 invoked by uid 48); 30 Sep 2016 16:49:37 -0000 From: "antoine.sauma at tre dot se" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77807] Problem with for loop condition Date: Fri, 30 Sep 2016 16:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: antoine.sauma at tre dot se X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02537.txt.bz2 Content-length: 295 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77807 Antoine Sauma changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major >>From gcc-bugs-return-538923-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 16:59:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 80276 invoked by alias); 30 Sep 2016 16:59:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 79090 invoked by uid 55); 30 Sep 2016 16:59:05 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/71799] [7 Regression] ICE in DO loop code emission (gfc_resolve_iterator) Date: Fri, 30 Sep 2016 16:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02538.txt.bz2 Content-length: 817 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71799 --- Comment #6 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Sep 30 16:58:31 2016 New Revision: 240668 URL: https://gcc.gnu.org/viewcvs?rev=3D240668&root=3Dgcc&view=3Drev Log: 2016-09-30 Steven G. Kargl Backport from trunk PR fortran/71799 * gfortran.dg/pr71799.f90: New test. 2016-09-30 Steven G. Kargl Backport from trunk PR fortran/71799 * resolve.c(gfc_resolve_iterator): Failure of type conversion need not ICE. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr71799.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/resolve.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538924-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 17:03:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 98205 invoked by alias); 30 Sep 2016 17:03:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 97829 invoked by uid 48); 30 Sep 2016 17:03:16 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77807] Problem with for loop condition Date: Fri, 30 Sep 2016 17:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02539.txt.bz2 Content-length: 704 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77807 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED CC| |trippels at gcc dot gnu.org Resolution|--- |INVALID Severity|major |normal --- Comment #1 from Markus Trippelsdorf --- This is not the right forum to ask these kinds of questions. Your performing integer division. Cast n to long double and it will work. >>From gcc-bugs-return-538925-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 17:22:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 34627 invoked by alias); 30 Sep 2016 17:22:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33290 invoked by uid 55); 30 Sep 2016 17:21:59 -0000 From: "law at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug other/31566] @missing_file gives bad error message Date: Fri, 30 Sep 2016 17:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: other X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: diagnostic, easyhack X-Bugzilla-Severity: normal X-Bugzilla-Who: law at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02540.txt.bz2 Content-length: 452 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31566 --- Comment #2 from Jeffrey A. Law --- Author: law Date: Fri Sep 30 17:21:26 2016 New Revision: 240669 URL: https://gcc.gnu.org/viewcvs?rev=3D240669&root=3Dgcc&view=3Drev Log: PR other/31566 * gcc.c (process_command): For @filename handling, output the correct name if the file does not exist. Modified: trunk/gcc/ChangeLog trunk/gcc/gcc.c >>From gcc-bugs-return-538926-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 17:22:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 36732 invoked by alias); 30 Sep 2016 17:22:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 36463 invoked by uid 48); 30 Sep 2016 17:22:24 -0000 From: "law at redhat dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug other/31566] @missing_file gives bad error message Date: Fri, 30 Sep 2016 17:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: other X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: diagnostic, easyhack X-Bugzilla-Severity: normal X-Bugzilla-Who: law at redhat dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02541.txt.bz2 Content-length: 503 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31566 Jeffrey A. Law changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |law at redhat dot com Resolution|--- |FIXED --- Comment #3 from Jeffrey A. Law --- Fixed on the trunk. >>From gcc-bugs-return-538927-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 17:23:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 41377 invoked by alias); 30 Sep 2016 17:23:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 41261 invoked by uid 48); 30 Sep 2016 17:23:36 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77794] [5/6/7 Regression] libstdc++ doesn't bootstrap with ./configure --enable-symvers=gnu-versioned-namespace Date: Fri, 30 Sep 2016 17:23:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: redi at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02542.txt.bz2 Content-length: 451 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77794 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |redi at gcc dot gnu= .org --- Comment #1 from Jonathan Wakely --- Mine. >>From gcc-bugs-return-538928-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 17:30:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42085 invoked by alias); 30 Sep 2016 17:30:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 41662 invoked by uid 55); 30 Sep 2016 17:30:31 -0000 From: "meissner at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77670] PowerPC64 Spec 2006 fails on 453.povray using -mcpu=power9 -mpower9-minmax Date: Fri, 30 Sep 2016 17:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: meissner at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: meissner at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02543.txt.bz2 Content-length: 1031 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77670 --- Comment #4 from Michael Meissner --- Author: meissner Date: Fri Sep 30 17:29:56 2016 New Revision: 240670 URL: https://gcc.gnu.org/viewcvs?rev=3D240670&root=3Dgcc&view=3Drev Log: 2016-09-30 Michael Meissner Back port from trunk 2016-09-21 Michael Meissner PR target/77670 * config/rs6000/predicates.md (invert_fpmask_comparison_operator): New predicate that matches the ISA 3.0 XSCMP{EQ,GT,GE}DP instructions when you want to invert the test. * config/rs6000/rs6000.md (fpmask): Use the arguments in the correct order for XXSEL. (movcc_invert_p9): Define the inverted test for using XSCMP{EQ,GT,GE}DP. Modified: branches/gcc-6-branch/gcc/ChangeLog branches/gcc-6-branch/gcc/config/rs6000/predicates.md branches/gcc-6-branch/gcc/config/rs6000/rs6000.md >>From gcc-bugs-return-538929-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 17:55:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 16097 invoked by alias); 30 Sep 2016 17:55:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 14580 invoked by uid 55); 30 Sep 2016 17:54:51 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/68566] ICE on using unusable array in reshape (double free or corruption) Date: Fri, 30 Sep 2016 17:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02544.txt.bz2 Content-length: 715 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D68566 --- Comment #20 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Sep 30 17:54:15 2016 New Revision: 240671 URL: https://gcc.gnu.org/viewcvs?rev=3D240671&root=3Dgcc&view=3Drev Log: 2016-09-30 Steven G. Kargl Backport from trunk PR fortran/68566 * check.c (gfc_check_reshape): Check for constant expression. PR fortran/68566 * gfortran.dg/pr68566.f90: new test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr68566.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/check.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538930-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 17:56:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23421 invoked by alias); 30 Sep 2016 17:56:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23247 invoked by uid 48); 30 Sep 2016 17:56:24 -0000 From: "doug.gilmore at imgtec dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77808] New: [7 Regression] ICE in duplicate_ssa_name_ptr_info, at tree-ssanames.c:630 starting with r240439 Date: Fri, 30 Sep 2016 17:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: doug.gilmore at imgtec dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02545.txt.bz2 Content-length: 756 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77808 Bug ID: 77808 Summary: [7 Regression] ICE in duplicate_ssa_name_ptr_info, at tree-ssanames.c:630 starting with r240439 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: doug.gilmore at imgtec dot com Target Milestone: --- Reported in: https://gcc.gnu.org/ml/gcc-patches/2016-09/msg02285.html This issue was not found during regression testing for commit r240439 since -fprefetch-loop-arrays needs to be set by default. Will send a fix and test case to gcc-patches. >>From gcc-bugs-return-538931-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 18:02:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 58719 invoked by alias); 30 Sep 2016 18:02:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 58416 invoked by uid 48); 30 Sep 2016 18:02:41 -0000 From: "manu at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77733] Add fixit hint suggesting to use std::move Date: Fri, 30 Sep 2016 18:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: manu at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02546.txt.bz2 Content-length: 2132 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77733 Manuel L=C3=B3pez-Ib=C3=A1=C3=B1ez changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |manu at gcc dot gnu.org --- Comment #5 from Manuel L=C3=B3pez-Ib=C3=A1=C3=B1ez --- (In reply to David Malcolm from comment #4) > (In reply to Jonathan Wakely from comment #1) > > As well as a fixit hint suggesting to use std::move it might be useful = to > > display the "" text in colour so it stands out. >=20 > Good idea. IMO the near match is misplaced. What follows the 'candidate:' should be a = C++ declaration. I think it should be either: near match candidate: void Y::foo(X&&) or: candidate (near match): void Y::foo(X&&) and it would be trivial to colorize the "candidate...:" lines with same col= or as "note:" or with some other color. BTW, these diagnostics imply a hierarchy of diagnostics: 1. error: no matching function for call to =E2=80=98Y::foo(X&)=E2=80=99 1.1 note: candidate: void Y::foo(X&&) 1.2 note: conversion of argument 1 would be ill-formed: 1.2.1 error: cannot bind rvalue reference of type =E2=80=98X&&=E2=80=99 to = lvalue of type =E2=80=98X=E2=80=99 1.3 note: candidate: void Y::foo() 1.4 note: candidate expects 0 arguments, 1 provided 1.5 note: candidate: void Y::foo(int, const X&) 1.6 note: candidate expects 2 arguments, 1 provided 1.7 note: candidate: template void Y::foo(T, X&&) template void foo(T, X&&); 1.8 note: template argument deduction/substitution failed: 1.8.1 note: candidate expects 2 arguments, 1 provided 2. error: not matching ... However, this is not evident from the various "error/notes" and it gets very confusing when errors appear within errors. I think it would be better to m= ake a rule that a diagnostic is a "error/warning/etc." followed by one or more "notes". Thus, the second "error:" should really be a "note:" (why 1.8.1 is= a note but 1.2.1 is an error?) >>From gcc-bugs-return-538932-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 18:09:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 75035 invoked by alias); 30 Sep 2016 18:09:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 72749 invoked by uid 48); 30 Sep 2016 18:09:17 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77804] Internal compiler error on incorrect initialization of new-d array Date: Fri, 30 Sep 2016 18:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc assigned_to everconfirmed cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02547.txt.bz2 Content-length: 3216 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77804 Martin Sebor changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-09-30 CC| |msebor at gcc dot gnu.org Assignee|unassigned at gcc dot gnu.org |msebor at gcc dot g= nu.org Ever confirmed|0 |1 Known to fail| |6.2.0, 7.0 --- Comment #1 from Martin Sebor --- Confirmed. $ cat v.C && /build/gcc-trunk-git/gcc/xgcc -B /build/gcc-trunk-git/gcc -S v.Cvoid* operator new[] (__SIZE_TYPE__ n, void *p) { return p; } int main() { char buf[256]; unsigned n =3D 10; int* p =3D new (buf) (int[n]); // incorrect way, parenthesis by mistake } v.C: In function =E2=80=98int main()=E2=80=99: v.C:7:31: warning: non-constant array new length must be specified without parentheses around the type-id [-Wvla] int* p =3D new (buf) (int[n]); // incorrect way, parenthesis by mista= ke ^ v.C:7:31: internal compiler error: in tree_to_uhwi, at tree.c:7330 0x1464ef6 tree_to_uhwi(tree_node const*) /src/gcc/git/gcc/tree.c:7330 0x9b9d9c warn_placement_new_too_small /src/gcc/git/gcc/cp/init.c:2530 0x9bc037 build_new_1 /src/gcc/git/gcc/cp/init.c:3060 0x9bd294 build_new(vec**, tree_node*, tree_nod= e*, vec**, int, int) /src/gcc/git/gcc/cp/init.c:3515 0x928c05 cp_parser_new_expression /src/gcc/git/gcc/cp/parser.c:8171 0x927dc8 cp_parser_unary_expression /src/gcc/git/gcc/cp/parser.c:7771 0x9295fa cp_parser_cast_expression /src/gcc/git/gcc/cp/parser.c:8696 0x9296e8 cp_parser_binary_expression /src/gcc/git/gcc/cp/parser.c:8798 0x92a405 cp_parser_assignment_expression /src/gcc/git/gcc/cp/parser.c:9086 0x92ab5d cp_parser_constant_expression /src/gcc/git/gcc/cp/parser.c:9354 0x940240 cp_parser_initializer_clause /src/gcc/git/gcc/cp/parser.c:21048 0x940089 cp_parser_initializer /src/gcc/git/gcc/cp/parser.c:20986 0x93bf31 cp_parser_init_declarator /src/gcc/git/gcc/cp/parser.c:18851 0x93139e cp_parser_simple_declaration /src/gcc/git/gcc/cp/parser.c:12567 0x93115f cp_parser_block_declaration /src/gcc/git/gcc/cp/parser.c:12435 0x9305d7 cp_parser_declaration_statement /src/gcc/git/gcc/cp/parser.c:12047 0x92d3b4 cp_parser_statement /src/gcc/git/gcc/cp/parser.c:10599 0x92dfc5 cp_parser_statement_seq_opt /src/gcc/git/gcc/cp/parser.c:10931 0x92dec0 cp_parser_compound_statement /src/gcc/git/gcc/cp/parser.c:10885 0x93fe1f cp_parser_function_body /src/gcc/git/gcc/cp/parser.c:20905 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See for instructions. >>From gcc-bugs-return-538933-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 18:10:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76090 invoked by alias); 30 Sep 2016 18:10:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 75862 invoked by uid 48); 30 Sep 2016 18:09:49 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77808] [7 Regression] ICE in duplicate_ssa_name_ptr_info, at tree-ssanames.c:630 starting with r240439 Date: Fri, 30 Sep 2016 18:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02548.txt.bz2 Content-length: 435 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77808 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code CC| |pinskia at gcc dot gnu.org Target Milestone|--- |7.0 >>From gcc-bugs-return-538934-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 18:27:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 52343 invoked by alias); 30 Sep 2016 18:27:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 52199 invoked by uid 48); 30 Sep 2016 18:27:10 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77733] Add fixit hint suggesting to use std::move Date: Fri, 30 Sep 2016 18:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02549.txt.bz2 Content-length: 989 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77733 --- Comment #6 from Jonathan Wakely --- (In reply to Manuel L=C3=B3pez-Ib=C3=A1=C3=B1ez from comment #5) > IMO the near match is misplaced. What follows the 'candidate:' should be a > C++ declaration. Why? Is that a policy or just opinion? > However, this is not evident from the various "error/notes" and it gets v= ery > confusing when errors appear within errors. I think it would be better to > make a rule that a diagnostic is a "error/warning/etc." followed by one or > more "notes". Thus, the second "error:" should really be a "note:" (why > 1.8.1 is a note but 1.2.1 is an error?) 1.2.1 is the only viable candidate (the others have the wrong number of parameters) but can't be called is because trying to bind an lvalue to an rvalue reference is ill-formed. Template argument deduction and substitution failures are not errors: https://en.wikipedia.org/wiki/Substitution_failure_is_not_an_error >>From gcc-bugs-return-538935-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 18:29:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 81619 invoked by alias); 30 Sep 2016 18:29:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 81287 invoked by uid 55); 30 Sep 2016 18:29:26 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77795] [6/7 Regression] ::gets declared in C++14 mode Date: Fri, 30 Sep 2016 18:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: redi at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02550.txt.bz2 Content-length: 1074 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77795 --- Comment #1 from Jonathan Wakely --- Author: redi Date: Fri Sep 30 18:28:53 2016 New Revision: 240672 URL: https://gcc.gnu.org/viewcvs?rev=3D240672&root=3Dgcc&view=3Drev Log: libstdc++/77795 Only declare ::gets for C++98 and C++11 PR libstdc++/77795 * acinclude.m4 (GLIBCXX_CHECK_STDIO_PROTO): Use -std=3Dgnu++11 to c= heck for gets. * config.h.in: Regenerate. * configure: Regenerate. * include/c_global/cstdio [!_GLIBCXX_HAVE_GETS] (gets): Only declare for C++98 and C++11. * include/c_std/cstdio [!_GLIBCXX_HAVE_GETS] (gets): Likewise. * testsuite/27_io/headers/cstdio/functions_neg.cc: New test. Added: trunk/libstdc++-v3/testsuite/27_io/headers/cstdio/functions_neg.cc Modified: trunk/libstdc++-v3/ChangeLog trunk/libstdc++-v3/acinclude.m4 trunk/libstdc++-v3/config.h.in trunk/libstdc++-v3/configure trunk/libstdc++-v3/include/c_global/cstdio trunk/libstdc++-v3/include/c_std/cstdio >>From gcc-bugs-return-538936-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 18:30:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 82571 invoked by alias); 30 Sep 2016 18:30:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 82370 invoked by uid 55); 30 Sep 2016 18:29:49 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77801] std::experimental::gcd std::experimental::lcd use non-constexpr std::abs Date: Fri, 30 Sep 2016 18:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02551.txt.bz2 Content-length: 1144 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77801 --- Comment #6 from Jonathan Wakely --- Author: redi Date: Fri Sep 30 18:29:16 2016 New Revision: 240673 URL: https://gcc.gnu.org/viewcvs?rev=3D240673&root=3Dgcc&view=3Drev Log: Remove use of std::abs in experimental::{gcd,lcm} PR libstdc++/77801 * include/experimental/numeric: Include . (__abs): Define. (gcd, lcm): Use __abs instead of std::abs. * testsuite/experimental/numeric/77801.cc: New test. * testsuite/experimental/numeric/gcd.cc: Test unsigned inputs. * testsuite/experimental/numeric/lcm.cc: Likewise. Added: branches/gcc-6-branch/libstdc++-v3/testsuite/experimental/numeric/77801= .cc - copied, changed from r240642, branches/gcc-6-branch/libstdc++-v3/testsuite/experimental/numeric/gcd.cc Modified: branches/gcc-6-branch/libstdc++-v3/ChangeLog branches/gcc-6-branch/libstdc++-v3/include/experimental/numeric branches/gcc-6-branch/libstdc++-v3/testsuite/experimental/numeric/gcd.cc branches/gcc-6-branch/libstdc++-v3/testsuite/experimental/numeric/lcm.cc >>From gcc-bugs-return-538937-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 18:30:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 83490 invoked by alias); 30 Sep 2016 18:30:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 82483 invoked by uid 55); 30 Sep 2016 18:29:56 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77795] [6/7 Regression] ::gets declared in C++14 mode Date: Fri, 30 Sep 2016 18:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: redi at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02552.txt.bz2 Content-length: 1194 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77795 --- Comment #2 from Jonathan Wakely --- Author: redi Date: Fri Sep 30 18:29:24 2016 New Revision: 240674 URL: https://gcc.gnu.org/viewcvs?rev=3D240674&root=3Dgcc&view=3Drev Log: libstdc++/77795 Only declare ::gets for C++98 and C++11 PR libstdc++/77795 * acinclude.m4 (GLIBCXX_CHECK_STDIO_PROTO): Use -std=3Dgnu++11 to c= heck for gets. * config.h.in: Regenerate. * configure: Regenerate. * include/c_global/cstdio [!_GLIBCXX_HAVE_GETS] (gets): Only declare for C++98 and C++11. * include/c_std/cstdio [!_GLIBCXX_HAVE_GETS] (gets): Likewise. * testsuite/27_io/headers/cstdio/functions_neg.cc: New test. Added: =20=20=20 branches/gcc-6-branch/libstdc++-v3/testsuite/27_io/headers/cstdio/functions= _neg.cc Modified: branches/gcc-6-branch/libstdc++-v3/ChangeLog branches/gcc-6-branch/libstdc++-v3/acinclude.m4 branches/gcc-6-branch/libstdc++-v3/config.h.in branches/gcc-6-branch/libstdc++-v3/configure branches/gcc-6-branch/libstdc++-v3/include/c_global/cstdio branches/gcc-6-branch/libstdc++-v3/include/c_std/cstdio >>From gcc-bugs-return-538938-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 18:42:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 10380 invoked by alias); 30 Sep 2016 18:42:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 10269 invoked by uid 48); 30 Sep 2016 18:42:34 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77795] [6/7 Regression] ::gets declared in C++14 mode Date: Fri, 30 Sep 2016 18:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.1 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: redi at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02553.txt.bz2 Content-length: 441 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77795 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #3 from Jonathan Wakely --- Fixed for 6.3 onwards. >>From gcc-bugs-return-538939-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 18:44:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 13515 invoked by alias); 30 Sep 2016 18:44:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 13322 invoked by uid 48); 30 Sep 2016 18:43:53 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: =?UTF-8?B?W0J1ZyBsaWJzdGRjKysvNjgzMjNdIGNocm9ubyByZWZlcmVuY2UgdG8g4oCY?= =?UTF-8?B?bGl0ZXJhbHPigJkgbmFtZXNwYWNlIGlzIGFtYmlndW91cyB3aGVuIHVzaW5n?= =?UTF-8?B?IGdudS12ZXJzaW9uZWQtbmFtZXNwYWNl?= Date: Fri, 30 Sep 2016 18:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 5.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: redi at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02554.txt.bz2 Content-length: 481 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D68323 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |redi at gcc dot gnu= .org --- Comment #2 from Jonathan Wakely --- Working on this along with PR 77794 >>From gcc-bugs-return-538940-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 18:45:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 15524 invoked by alias); 30 Sep 2016 18:45:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 15442 invoked by uid 48); 30 Sep 2016 18:45:38 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77725] An example from the standard regarding member lookup fails to compile Date: Fri, 30 Sep 2016 18:45:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02555.txt.bz2 Content-length: 458 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77725 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-09-30 Ever confirmed|0 |1 Severity|major |normal >>From gcc-bugs-return-538941-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 18:47:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 17298 invoked by alias); 30 Sep 2016 18:47:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 17104 invoked by uid 48); 30 Sep 2016 18:47:09 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77801] std::experimental::gcd std::experimental::lcd use non-constexpr std::abs Date: Fri, 30 Sep 2016 18:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02556.txt.bz2 Content-length: 485 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77801 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED Target Milestone|--- |6.3 --- Comment #7 from Jonathan Wakely --- Fixed for 6.3 >>From gcc-bugs-return-538942-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 19:21:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 21069 invoked by alias); 30 Sep 2016 19:21:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 20878 invoked by uid 55); 30 Sep 2016 19:21:45 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77351] ICE in remove_trim, at frontend-passes.c:1145 Date: Fri, 30 Sep 2016 19:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02557.txt.bz2 Content-length: 757 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77351 --- Comment #6 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Sep 30 19:21:12 2016 New Revision: 240678 URL: https://gcc.gnu.org/viewcvs?rev=3D240678&root=3Dgcc&view=3Drev Log: 2016-09-30 Steven g. Kargl Backport from trunk PR fortran/77351 * frontend-passes.c (remove_trim,combine_array_constructor): Check = for NULL pointer. PR fortran/77351 * gfortran.dg/pr77351.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77351.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/frontend-passes.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538943-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 19:55:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 66843 invoked by alias); 30 Sep 2016 19:55:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 66618 invoked by uid 48); 30 Sep 2016 19:55:38 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77803] Bogus implicit-fallthrough warning Date: Fri, 30 Sep 2016 19:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02558.txt.bz2 Content-length: 137 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77803 --- Comment #2 from Marek Polacek --- Testing a fix. >>From gcc-bugs-return-538944-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 20:11:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 102019 invoked by alias); 30 Sep 2016 20:11:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 101877 invoked by uid 48); 30 Sep 2016 20:11:02 -0000 From: "glisse at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77809] New: "_LITTLE_ENDIAN" redefined Date: Fri, 30 Sep 2016 20:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: glisse at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcchost cf_gcctarget cf_gccbuild Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02559.txt.bz2 Content-length: 2063 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77809 Bug ID: 77809 Summary: "_LITTLE_ENDIAN" redefined Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: go Assignee: ian at airs dot com Reporter: glisse at gcc dot gnu.org CC: cmang at google dot com Target Milestone: --- Host: powerpc64le-unknown-linux-gnu Target: powerpc64le-unknown-linux-gnu Build: powerpc64le-unknown-linux-gnu Bootstrap (--enable-languages=3Dall,obj-c++,go) fails in libgo: /home/glisse/test/pristine/build/./gcc/xgcc -B/home/glisse/test/pristine/build/./gcc/ -B/home/glisse/test/pristine/inst/powerpc64le-unknown-linux-gnu/bin/ -B/home/glisse/test/pristine/inst/powerpc64le-unknown-linux-gnu/lib/ -isyst= em /home/glisse/test/pristine/inst/powerpc64le-unknown-linux-gnu/include -isys= tem /home/glisse/test/pristine/inst/powerpc64le-unknown-linux-gnu/sys-include= =20=20=20 -DHAVE_CONFIG_H -I. -I/home/glisse/pristine/libgo -I /home/glisse/pristine/libgo/runtime -I/home/glisse/pristine/libgo/../libffi/include -I../libffi/include -pthrea= d=20 -fexceptions -fnon-call-exceptions -fplan9-extensions -fsplit-stack -Wall -Wextra -Wwrite-strings -Wcast-qual -Werror -D_GNU_SOURCE -D_LARGEFILE_SOU= RCE -D_FILE_OFFSET_BITS=3D64 -I /home/glisse/pristine/libgo/../libgcc -I /home/glisse/pristine/libgo/../libbacktrace -I ../../gcc/include -fPIC -g -= O2 -MT libgobegin_a-go-main.o -MD -MP -MF .deps/libgobegin_a-go-main.Tpo -c -o libgobegin_a-go-main.o `test -f 'runtime/go-main.c' || echo '/home/glisse/pristine/libgo/'`runtime/go-main.c In file included from /home/glisse/pristine/libgo/runtime/runtime.h:116:0, from /home/glisse/pristine/libgo/runtime/go-main.c:17: ./runtime.inc:2650:0: error: "_LITTLE_ENDIAN" redefined [-Werror] #define _LITTLE_ENDIAN 1234 : note: this is the location of the previous definition cc1: all warnings being treated as errors >>From gcc-bugs-return-538945-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 20:31:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 97658 invoked by alias); 30 Sep 2016 20:31:35 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 97485 invoked by uid 48); 30 Sep 2016 20:31:23 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug preprocessor/77810] New: provide format_inform_at_substring to go with format_warning_at_substring Date: Fri, 30 Sep 2016 20:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: preprocessor X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02560.txt.bz2 Content-length: 955 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77810 Bug ID: 77810 Summary: provide format_inform_at_substring to go with format_warning_at_substring Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: enhancement Priority: P3 Component: preprocessor Assignee: unassigned at gcc dot gnu.org Reporter: msebor at gcc dot gnu.org Target Milestone: --- The file substring-locations.h declares the function bool format_warning_at_substring (const substring_loc&, const source_range*, con= st char*, int, const char*, ...) to position the caret and underscores in warn= ing messages involving string literals. It would be useful to also provide the corresponding format_inform_at_substring and perhaps even format_error_at_substring functions to make the same functionality availabl= e to informational messages (and errors). >>From gcc-bugs-return-538946-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 20:33:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 103640 invoked by alias); 30 Sep 2016 20:33:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 103210 invoked by uid 48); 30 Sep 2016 20:33:21 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug preprocessor/77810] provide format_inform_at_substring to go with format_warning_at_substring Date: Fri, 30 Sep 2016 20:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: preprocessor X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02561.txt.bz2 Content-length: 334 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77810 --- Comment #1 from Martin Sebor --- Created attachment 39727 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39727&action=3Dedit Prototype patch. I tested the attached proof-of-concept patch by integrating it into the gimple-ssa-sprintf pass. >>From gcc-bugs-return-538947-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 20:41:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22561 invoked by alias); 30 Sep 2016 20:41:15 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 19249 invoked by uid 48); 30 Sep 2016 20:40:57 -0000 From: "ryan.burn at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77811] New: [concepts] invalid redefinition error when declaring friend function Date: Fri, 30 Sep 2016 20:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ryan.burn at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02562.txt.bz2 Content-length: 1286 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77811 Bug ID: 77811 Summary: [concepts] invalid redefinition error when declaring friend function Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: ryan.burn at gmail dot com Target Milestone: --- The below code should be valid but gives this error when compiling with gcc (7.0.0 201609) prog.cc: In instantiation of 'struct B': prog.cc:22:20: required from here prog.cc:16:14: error: redefinition of 'template int f(const S&)' friend int f(const S& s) { ///////////////////////////////////////////////////////////////////////// #include template struct A { template requires std::is_same::value friend int f(const S& s) { return 0; } }; template struct B { template requires std::is_same::value friend int f(const S& s) { return 1; } }; int main() { A a; B b; int x =3D f(a); int y =3D f(b); return 0; } ///////////////////////////////////////////////////////////////////////// >>From gcc-bugs-return-538948-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 20:56:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 123847 invoked by alias); 30 Sep 2016 20:56:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123204 invoked by uid 48); 30 Sep 2016 20:56:28 -0000 From: "yzhang1985 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Fri, 30 Sep 2016 20:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: yzhang1985 at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02563.txt.bz2 Content-length: 1072 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 --- Comment #12 from Yale Zhang --- What's the purpose of subleaf? Is it to distinguish the capabilities of different cores in a heterogeneous chip (e.g. ARM big-little)? Then I would be fine with making this an extra parameter to __get_cpuid().= =20 Microsoft has a __cpuidex() function that also takes subleaf, but for the regular __cpuid(), the subleaf default to 0. Should __get_cpuid() default t= o 0 as well? (In reply to uros from comment #11) > Author: uros > Date: Thu Sep 29 18:44:32 2016 > New Revision: 240629 >=20 > URL: https://gcc.gnu.org/viewcvs?rev=3D240629&root=3Dgcc&view=3Drev > Log: > PR target/77756 > * config/i386/cpuid.h (__get_cpuid_count): New. > (__get_cpuid): Rename __level to __leaf. >=20 > testsuite/ChangeLog: >=20 > PR target/77756 > * gcc.target/i386/pr77756.c: New test. >=20 >=20 > Modified: > trunk/gcc/ChangeLog > trunk/gcc/config/i386/cpuid.h > trunk/gcc/testsuite/ChangeLog > trunk/gcc/testsuite/gcc.target/i386/pr77756.c >>From gcc-bugs-return-538949-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 21:03:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 48577 invoked by alias); 30 Sep 2016 21:03:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 48423 invoked by uid 55); 30 Sep 2016 21:03:30 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/69962] ICE on missing parameter attribute, in gfc_set_constant_character_len Date: Fri, 30 Sep 2016 21:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02564.txt.bz2 Content-length: 999 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D69962 --- Comment #6 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Sep 30 21:02:56 2016 New Revision: 240679 URL: https://gcc.gnu.org/viewcvs?rev=3D240679&root=3Dgcc&view=3Drev Log: 2016-09-30 Steven G. Kargl Backport from trunk=20 PR fortran/69867 * decl.c (build_struct): Ensure that pointers point to something. PR fortran/69962 * decl.c (gfc_set_constant_character_len): if expr is not constant issue an error instead of an ICE. PR fortran/69962 * gfortran.dg/pr69962.f90: New test. PR fortran/69867 * gfortran.dg/pr69867.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr69867.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr69962.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/decl.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538950-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 21:03:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 48586 invoked by alias); 30 Sep 2016 21:03:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 48413 invoked by uid 55); 30 Sep 2016 21:03:30 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/69867] ICE on initializing character in type with array of incompatible data Date: Fri, 30 Sep 2016 21:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02565.txt.bz2 Content-length: 999 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D69867 --- Comment #8 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Sep 30 21:02:56 2016 New Revision: 240679 URL: https://gcc.gnu.org/viewcvs?rev=3D240679&root=3Dgcc&view=3Drev Log: 2016-09-30 Steven G. Kargl Backport from trunk=20 PR fortran/69867 * decl.c (build_struct): Ensure that pointers point to something. PR fortran/69962 * decl.c (gfc_set_constant_character_len): if expr is not constant issue an error instead of an ICE. PR fortran/69962 * gfortran.dg/pr69962.f90: New test. PR fortran/69867 * gfortran.dg/pr69867.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr69867.f90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr69962.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/decl.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538951-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 21:47:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42203 invoked by alias); 30 Sep 2016 21:47:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 41951 invoked by uid 55); 30 Sep 2016 21:46:48 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/71859] ICE on same variable/subroutine name (verify_gimple failed) Date: Fri, 30 Sep 2016 21:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02566.txt.bz2 Content-length: 1073 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71859 --- Comment #7 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Sep 30 21:46:14 2016 New Revision: 240682 URL: https://gcc.gnu.org/viewcvs?rev=3D240682&root=3Dgcc&view=3Drev Log: 2016-09-30 Steven G. Kargl Backport from trunk PR fortran/71859 * gfortran.dg/pr71859.f90: New test. * gfortran.dg/intrinsic_numeric_arg.f: Update error message. * gfortran.dg/coarray_collectives_1.f90: Ditto. PR fortran/71859 * check.c(numeric_check): Prevent ICE. Issue error for invalid subroutine as an actual argument when numeric argument is expected. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr71859.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/check.c branches/gcc-5-branch/gcc/testsuite/ChangeLog branches/gcc-5-branch/gcc/testsuite/gfortran.dg/coarray_collectives_1.f= 90 branches/gcc-5-branch/gcc/testsuite/gfortran.dg/intrinsic_numeric_arg.f >>From gcc-bugs-return-538952-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:30:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 60058 invoked by alias); 30 Sep 2016 22:30:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 59747 invoked by uid 48); 30 Sep 2016 22:30:35 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/59256] qualified name in friend function declaration doesn't match previous declaration in inline namespace Date: Fri, 30 Sep 2016 22:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: accepts-invalid, rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_reconfirmed_on Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02567.txt.bz2 Content-length: 586 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D59256 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed|2013-11-22 00:00:00 |2016-9-30 --- Comment #7 from Jonathan Wakely --- (In reply to Jonathan Wakely from comment #3) > Uh, just rediscovered this and recreated exactly the same reduced testcas= e! I've just done it again. But at least I have new information this time: EDG has the same bug. >>From gcc-bugs-return-538953-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:35:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63912 invoked by alias); 30 Sep 2016 22:35:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 63700 invoked by uid 48); 30 Sep 2016 22:34:53 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/59256] qualified name in friend function declaration doesn't match previous declaration in inline namespace Date: Fri, 30 Sep 2016 22:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: accepts-invalid, rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02568.txt.bz2 Content-length: 1579 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D59256 --- Comment #8 from Jonathan Wakely --- I'm going to commit a workaround in so I don't do this again. --- a/libstdc++-v3/include/bits/regex.h +++ b/libstdc++-v3/include/bits/regex.h @@ -62,6 +62,11 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION template class _Executor; +#ifdef _GLIBCXX_INLINE_VERSION +#define _GLIBCXX_NAMESPACE_VERSION __7:: +#else +#define _GLIBCXX_NAMESPACE_VERSION +#endif _GLIBCXX_END_NAMESPACE_VERSION } @@ -770,7 +775,8 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11 template friend bool - __detail::__regex_algo_impl(_Bp, _Bp, match_results<_Bp, _Ap>&, + __detail:: _GLIBCXX_NAMESPACE_VERSION + __regex_algo_impl(_Bp, _Bp, match_results<_Bp, _Ap>&, const basic_regex<_Cp, _Rp>&, regex_constants::match_flag_type); @@ -1861,7 +1867,8 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11 template friend bool - __detail::__regex_algo_impl(_Bp, _Bp, match_results<_Bp, _Ap>&, + __detail:: _GLIBCXX_NAMESPACE_VERSION + __regex_algo_impl(_Bp, _Bp, match_results<_Bp, _Ap>&, const basic_regex<_Cp, _Rp>&, regex_constants::match_flag_type); >>From gcc-bugs-return-538954-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:41:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 106093 invoked by alias); 30 Sep 2016 22:41:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 105939 invoked by uid 55); 30 Sep 2016 22:40:51 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/61318] Improve error diagnostic by pointing to the expression and not to declared-at of a USE-associated variable Date: Fri, 30 Sep 2016 22:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02569.txt.bz2 Content-length: 729 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61318 --- Comment #5 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Sep 30 22:40:18 2016 New Revision: 240683 URL: https://gcc.gnu.org/viewcvs?rev=3D240683&root=3Dgcc&view=3Drev Log: 2016-09-30 Steven G. Kargl Backport from trunk PR fortran/61318 * interface.c (compare_parameter): Use better locus for error messa= ge. PR fortran/61318 * gfortran.dg/pr61318.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr61318.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/interface.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-538956-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:48:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 116670 invoked by alias); 30 Sep 2016 22:48:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 115795 invoked by uid 48); 30 Sep 2016 22:48:32 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/61552] Unneeded check for libart Date: Fri, 30 Sep 2016 22:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02570.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61552 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538958-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:48:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 116754 invoked by alias); 30 Sep 2016 22:48:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 115944 invoked by uid 48); 30 Sep 2016 22:48:34 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12788] bad dependencies for inner classes Date: Fri, 30 Sep 2016 22:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02571.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12788 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538961-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:49:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 117906 invoked by alias); 30 Sep 2016 22:48:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116313 invoked by uid 48); 30 Sep 2016 22:48:36 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/18212] nativ compilation with multiple jars fails / gives internal compiler error Date: Fri, 30 Sep 2016 22:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.4.2 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02572.txt.bz2 Content-length: 499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D18212 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #12 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538960-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:49:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 117863 invoked by alias); 30 Sep 2016 22:48:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116419 invoked by uid 48); 30 Sep 2016 22:48:37 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/17819] ICE in build_java_check_indexed_type Date: Fri, 30 Sep 2016 22:48:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02573.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17819 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538968-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:50:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 120532 invoked by alias); 30 Sep 2016 22:49:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 117690 invoked by uid 48); 30 Sep 2016 22:48:51 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/11623] wrong debug file name info when compiling from .class (lacks directories) Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: wrong-debug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02580.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D11623 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538970-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:51:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 123182 invoked by alias); 30 Sep 2016 22:49:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 118766 invoked by uid 48); 30 Sep 2016 22:49:00 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/13885] Slight incompatibility w/Suns JRE Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02585.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13885 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538959-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:48:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 116914 invoked by alias); 30 Sep 2016 22:48:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 115463 invoked by uid 48); 30 Sep 2016 22:48:27 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/58284] Compiling jvgenmain failes with lots of "undefined reference" errors Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.7.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02579.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D58284 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538966-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:50:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 120406 invoked by alias); 30 Sep 2016 22:49:16 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 117856 invoked by uid 48); 30 Sep 2016 22:48:53 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/10632] Numerical result differs from Sun JDK -- strictfp not supported Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.2.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02576.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D10632 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #9 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538965-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:49:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 119446 invoked by alias); 30 Sep 2016 22:49:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116778 invoked by uid 48); 30 Sep 2016 22:48:42 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/41549] [jni] very slow jni code callbacks Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02574.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D41549 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538955-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:48:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 116641 invoked by alias); 30 Sep 2016 22:48:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116022 invoked by uid 48); 30 Sep 2016 22:48:34 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/18131] [meta-bug] inner class problems in java front-end Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: accepts-invalid, ice-on-invalid-code, ice-on-valid-code, meta-bug, rejects-valid X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 4.3.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02577.txt.bz2 Content-length: 462 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D18131 Bug 18131 depends on bug 12788, which changed state. Bug 12788 Summary: bad dependencies for inner classes https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12788 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-538971-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:52:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 124518 invoked by alias); 30 Sep 2016 22:49:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 119738 invoked by uid 48); 30 Sep 2016 22:49:10 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/16843] gcjh generated headers don't define final constants Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02586.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D16843 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538967-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:50:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 120443 invoked by alias); 30 Sep 2016 22:49:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 117531 invoked by uid 48); 30 Sep 2016 22:48:50 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/50936] Warnung: abstract method in non-abstract class Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02581.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D50936 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538969-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:51:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121907 invoked by alias); 30 Sep 2016 22:49:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 118251 invoked by uid 48); 30 Sep 2016 22:48:56 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/24454] GCJ does not correctly support strictfp Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02584.txt.bz2 Content-length: 493 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24454 Bug 24454 depends on bug 10632, which changed state. Bug 10632 Summary: Numerical result differs from Sun JDK -- strictfp not su= pported https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D10632 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-538963-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:49:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 118106 invoked by alias); 30 Sep 2016 22:48:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116533 invoked by uid 48); 30 Sep 2016 22:48:39 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/49077] gcjwebplugin.cc doesn't compile against latest xulrunner 2.0 (firefox-3.6) sdk Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02583.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D49077 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #9 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538962-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:49:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 117981 invoked by alias); 30 Sep 2016 22:48:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116617 invoked by uid 48); 30 Sep 2016 22:48:40 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/41361] segmentation fault when class not found from gcj-built executable with indirect dispatch Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02575.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D41361 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538957-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:48:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 116715 invoked by alias); 30 Sep 2016 22:48:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 115532 invoked by uid 48); 30 Sep 2016 22:48:30 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/58669] does not detect all cpu cores/threads Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.8.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: gnu_andrew at member dot fsf.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02578.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D58669 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #7 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538964-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:49:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 119367 invoked by alias); 30 Sep 2016 22:49:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 117397 invoked by uid 48); 30 Sep 2016 22:48:48 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/46324] gcj should support the javac flags such as -verbose, -sourcepath and -source Date: Fri, 30 Sep 2016 22:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02582.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D46324 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538976-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:54:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 126231 invoked by alias); 30 Sep 2016 22:50:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 120659 invoked by uid 48); 30 Sep 2016 22:49:18 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/20215] gcj does not accept classes with same name fields Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02592.txt.bz2 Content-length: 499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20215 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #12 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538972-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:53:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125445 invoked by alias); 30 Sep 2016 22:50:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 119817 invoked by uid 48); 30 Sep 2016 22:49:11 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/8709] class init optimization should check subclasses Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.3 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02588.txt.bz2 Content-length: 497 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D8709 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538977-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:54:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 126255 invoked by alias); 30 Sep 2016 22:50:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 120864 invoked by uid 48); 30 Sep 2016 22:49:20 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/58689] Enhance returns_nonnull Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: diagnostic, missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02591.txt.bz2 Content-length: 520 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D58689 Bug 58689 depends on bug 24825, which changed state. Bug 24825 Summary: Standard runtime methods that are known to not return nu= ll should not trigger null checks. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24825 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-538983-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:55:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127409 invoked by alias); 30 Sep 2016 22:50:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121193 invoked by uid 48); 30 Sep 2016 22:49:23 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/51465] internal compiler error: Segmentation fault Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: blocker X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02596.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D51465 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538975-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:53:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125612 invoked by alias); 30 Sep 2016 22:50:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 120142 invoked by uid 48); 30 Sep 2016 22:49:14 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/20044] Wrong method call semantics (maybe instanceof/invokespecial) Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: aph at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02590.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20044 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #9 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538981-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:55:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127299 invoked by alias); 30 Sep 2016 22:50:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121469 invoked by uid 48); 30 Sep 2016 22:49:25 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27027] task cancellation and native Eclipse Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02599.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27027 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-538986-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:56:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127531 invoked by alias); 30 Sep 2016 22:50:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121309 invoked by uid 48); 30 Sep 2016 22:49:24 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/31647] Embedded class dependencies cannot be loaded dynamically from a staic binary Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02597.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31647 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538979-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:54:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 126348 invoked by alias); 30 Sep 2016 22:50:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121087 invoked by uid 48); 30 Sep 2016 22:49:22 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/49534] gcj segfaults on a program from stdin Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02598.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D49534 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538973-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:53:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125498 invoked by alias); 30 Sep 2016 22:50:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 120011 invoked by uid 48); 30 Sep 2016 22:49:13 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/42892] Incorrect code generated for enhanced for loop. Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.4.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02589.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D42892 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|SUSPENDED |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538978-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:54:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 126293 invoked by alias); 30 Sep 2016 22:50:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 120804 invoked by uid 48); 30 Sep 2016 22:49:20 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/24825] Standard runtime methods that are known to not return null should not trigger null checks. Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02594.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24825 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538980-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:54:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127279 invoked by alias); 30 Sep 2016 22:50:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121455 invoked by uid 48); 30 Sep 2016 22:49:25 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12911] Class initialization optimization pessimization Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02593.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12911 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|SUSPENDED |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538974-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:53:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125585 invoked by alias); 30 Sep 2016 22:50:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 119899 invoked by uid 48); 30 Sep 2016 22:49:11 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/35206] Class.getModifiers() returns wrong value for static inner class Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02587.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D35206 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538982-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:55:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127370 invoked by alias); 30 Sep 2016 22:50:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121528 invoked by uid 48); 30 Sep 2016 22:49:26 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/56435] Wrong 'ld' version detected during configuring libjava Date: Fri, 30 Sep 2016 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.7.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02595.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D56435 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-538991-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:58:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 1300 invoked by alias); 30 Sep 2016 22:51:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121626 invoked by uid 48); 30 Sep 2016 22:49:27 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/18585] uniform passing of the classpath parameter Date: Fri, 30 Sep 2016 22:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.4.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P5 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02605.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D18585 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538995-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:58:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2085 invoked by alias); 30 Sep 2016 22:51:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 122268 invoked by uid 48); 30 Sep 2016 22:49:33 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/40888] gcj -C has problems with clone() Date: Fri, 30 Sep 2016 22:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02608.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D40888 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538989-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:57:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 1187 invoked by alias); 30 Sep 2016 22:51:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121998 invoked by uid 48); 30 Sep 2016 22:49:30 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/32939] (int) cast return different results beetween .class and native Date: Fri, 30 Sep 2016 22:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02600.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D32939 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-538984-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:56:16 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127451 invoked by alias); 30 Sep 2016 22:50:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121598 invoked by uid 48); 30 Sep 2016 22:49:27 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/44567] FreeBSD 6.x compile error Date: Fri, 30 Sep 2016 22:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02602.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D44567 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-538994-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:56:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2025 invoked by alias); 30 Sep 2016 22:51:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 122265 invoked by uid 48); 30 Sep 2016 22:49:33 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/43258] In-tree build may fail in libjava/classpath/tools Date: Fri, 30 Sep 2016 22:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.5.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02604.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D43258 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-538996-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:58:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2111 invoked by alias); 30 Sep 2016 22:51:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 122146 invoked by uid 48); 30 Sep 2016 22:49:32 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/50895] Build failure in jni.cc Date: Fri, 30 Sep 2016 22:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.6.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02607.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D50895 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #9 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-538987-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:57:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 1152 invoked by alias); 30 Sep 2016 22:51:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121841 invoked by uid 48); 30 Sep 2016 22:49:29 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13603] [meta-bug] Java security model tracking PR Date: Fri, 30 Sep 2016 22:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02601.txt.bz2 Content-length: 464 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13603 Bug 13603 depends on bug 21892, which changed state. Bug 21892 Summary: gnu.* and native code security audit https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21892 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539002-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:59:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3099 invoked by alias); 30 Sep 2016 22:51:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124007 invoked by uid 48); 30 Sep 2016 22:49:51 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/23258] jcf-dump documentation is incomplete (and confusing) Date: Fri, 30 Sep 2016 22:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.1 X-Bugzilla-Keywords: documentation X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02610.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D23258 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-538993-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:57:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 1992 invoked by alias); 30 Sep 2016 22:51:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 122365 invoked by uid 48); 30 Sep 2016 22:49:34 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/47171] [cppcheck][PATCH] found a resource leak in gcc/gcc/java/resource.c Date: Fri, 30 Sep 2016 22:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02603.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D47171 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538988-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:57:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 1166 invoked by alias); 30 Sep 2016 22:51:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121760 invoked by uid 48); 30 Sep 2016 22:49:28 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/21892] gnu.* and native code security audit Date: Fri, 30 Sep 2016 22:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02609.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21892 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-538990-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:57:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 1254 invoked by alias); 30 Sep 2016 22:51:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121735 invoked by uid 48); 30 Sep 2016 22:49:28 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/1374] gcj -C (options) diverges from javac Date: Fri, 30 Sep 2016 22:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 4.3.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02606.txt.bz2 Content-length: 468 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D1374 Bug 1374 depends on bug 18585, which changed state. Bug 18585 Summary: uniform passing of the classpath parameter https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D18585 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539018-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:02:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 8821 invoked by alias); 30 Sep 2016 22:52:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124474 invoked by uid 48); 30 Sep 2016 22:49:58 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/14759] ServerSocketChannel causes Selector.select() to return immediatly Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.3.4 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02623.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D14759 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #7 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539012-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:02:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4485 invoked by alias); 30 Sep 2016 22:52:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124303 invoked by uid 48); 30 Sep 2016 22:49:55 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27727] Class should implement AnnotatedElement Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02625.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27727 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539010-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:02:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4394 invoked by alias); 30 Sep 2016 22:52:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124306 invoked by uid 48); 30 Sep 2016 22:49:55 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12758] Binary Compatibility: CNI code is not binary compatible Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02621.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12758 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538997-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:57:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2144 invoked by alias); 30 Sep 2016 22:51:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123119 invoked by uid 48); 30 Sep 2016 22:49:43 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/5773] integrate addr2line into libjava instead of using an external process. Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02613.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D5773 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-538999-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:00:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2998 invoked by alias); 30 Sep 2016 22:51:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123714 invoked by uid 48); 30 Sep 2016 22:49:48 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/21267] [win32] Non-English File Names processed incorrectly Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02612.txt.bz2 Content-length: 466 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21267 Bug 21267 depends on bug 9463, which changed state. Bug 9463 Summary: add native methods for file name encoding https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D9463 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539006-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:59:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3697 invoked by alias); 30 Sep 2016 22:52:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124203 invoked by uid 48); 30 Sep 2016 22:49:54 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/38717] gcc 4.4.0 20090102 - jc1: out of memory allocating ... (with 1 G of RAM) Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.4.0 X-Bugzilla-Keywords: memory-hog X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02615.txt.bz2 Content-length: 499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D38717 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #10 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539013-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:03:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4536 invoked by alias); 30 Sep 2016 22:52:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124334 invoked by uid 48); 30 Sep 2016 22:49:55 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12725] [meta-bug] gcj does not conform to Binary Compatibility specification Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: ABI, meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: aph at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02628.txt.bz2 Content-length: 483 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12725 Bug 12725 depends on bug 12758, which changed state. Bug 12758 Summary: Binary Compatibility: CNI code is not binary compatible https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12758 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539014-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:02:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4576 invoked by alias); 30 Sep 2016 22:52:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124161 invoked by uid 48); 30 Sep 2016 22:49:53 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/51500] [4.7 regression] 106 unexpected libjava testsuite failures with mingw32 Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 4.7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02631.txt.bz2 Content-length: 470 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D51500 Bug 51500 depends on bug 52344, which changed state. Bug 52344 Summary: _Jv_platform_nanotime of win32.cc is wrong https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D52344 What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539021-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:03:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 12477 invoked by alias); 30 Sep 2016 22:52:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124635 invoked by uid 48); 30 Sep 2016 22:50:00 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12725] [meta-bug] gcj does not conform to Binary Compatibility specification Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: ABI, meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: aph at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02633.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12725 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538992-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:57:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 1918 invoked by alias); 30 Sep 2016 22:51:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 122083 invoked by uid 48); 30 Sep 2016 22:49:31 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/21206] gcj seems not to pass the option to ld correctly Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: rwild at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02614.txt.bz2 Content-length: 499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21206 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #25 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539019-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:04:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 9022 invoked by alias); 30 Sep 2016 22:52:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124449 invoked by uid 48); 30 Sep 2016 22:49:57 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/49634] Dead Java driver code for @FILE handling Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02629.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D49634 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539007-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:01:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3730 invoked by alias); 30 Sep 2016 22:52:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124249 invoked by uid 48); 30 Sep 2016 22:49:54 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/24410] GIJ does not accept "/"-syntax for main class on the command line Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02617.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24410 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539020-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:03:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 9355 invoked by alias); 30 Sep 2016 22:52:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124539 invoked by uid 48); 30 Sep 2016 22:49:59 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/14781] disable bytecode verification for bootclasspath Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02624.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D14781 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-538985-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:56:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 127504 invoked by alias); 30 Sep 2016 22:50:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121548 invoked by uid 48); 30 Sep 2016 22:49:26 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/17848] segfault at java/class.c:2186 with PieSpy Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02626.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17848 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539003-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:59:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3139 invoked by alias); 30 Sep 2016 22:51:47 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123370 invoked by uid 48); 30 Sep 2016 22:49:45 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12757] Binary Compatibility: overlap between constant pool and tables Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: ABI X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02622.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12757 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539016-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:03:16 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4651 invoked by alias); 30 Sep 2016 22:52:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124145 invoked by uid 48); 30 Sep 2016 22:49:52 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/32638] Wrong selection of field in inner class when outer class and super class have a relevant filed named the same Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.1.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02630.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D32638 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539000-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:00:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3026 invoked by alias); 30 Sep 2016 22:51:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123468 invoked by uid 48); 30 Sep 2016 22:49:46 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12725] [meta-bug] gcj does not conform to Binary Compatibility specification Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: ABI, meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: aph at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02616.txt.bz2 Content-length: 492 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12725 Bug 12725 depends on bug 12757, which changed state. Bug 12757 Summary: Binary Compatibility: overlap between constant pool and = tables https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12757 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539011-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:02:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4431 invoked by alias); 30 Sep 2016 22:52:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124380 invoked by uid 48); 30 Sep 2016 22:49:56 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/9861] method name mangling ignores return type Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.2.1 X-Bugzilla-Keywords: ABI, rejects-valid, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 4.2.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02620.txt.bz2 Content-length: 481 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D9861 Bug 9861 depends on bug 12758, which changed state. Bug 12758 Summary: Binary Compatibility: CNI code is not binary compatible https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12758 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539017-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:03:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4715 invoked by alias); 30 Sep 2016 22:52:15 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124133 invoked by uid 48); 30 Sep 2016 22:49:52 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/52344] _Jv_platform_nanotime of win32.cc is wrong Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02632.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D52344 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539001-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:01:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3067 invoked by alias); 30 Sep 2016 22:51:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123454 invoked by uid 48); 30 Sep 2016 22:49:46 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/24182] standard.omit not properly rebuilt Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02619.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24182 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539008-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 22:59:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3783 invoked by alias); 30 Sep 2016 22:52:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123967 invoked by uid 48); 30 Sep 2016 22:49:51 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/41901] gcj -C -ftarget 1.1 produces bytecode that doesn't work in JDK 1.1 Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.4 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02611.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D41901 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539015-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:03:08 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4616 invoked by alias); 30 Sep 2016 22:52:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124384 invoked by uid 48); 30 Sep 2016 22:49:56 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/16997] WeakHashMap leaks memory Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02627.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D16997 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539005-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:01:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3278 invoked by alias); 30 Sep 2016 22:51:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123214 invoked by uid 48); 30 Sep 2016 22:49:44 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/31570] GCC 4.3 needs more than 512MB of memory building libgcj Date: Fri, 30 Sep 2016 22:52:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02618.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31570 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539009-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:01:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3825 invoked by alias); 30 Sep 2016 22:52:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123701 invoked by uid 48); 30 Sep 2016 22:49:48 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/32247] -Wall enables -Wunused enables -Wunused-parameter Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02638.txt.bz2 Content-length: 499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D32247 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #15 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539025-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:05:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22694 invoked by alias); 30 Sep 2016 22:53:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124841 invoked by uid 48); 30 Sep 2016 22:50:02 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/49441] @LDLIBICONV@ lost from installed libgcj.spec Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02637.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D49441 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539029-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:06:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22937 invoked by alias); 30 Sep 2016 22:53:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124931 invoked by uid 48); 30 Sep 2016 22:50:03 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/20507] gcj needs a way to omit resources from .o Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02639.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20507 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539034-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:07:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23717 invoked by alias); 30 Sep 2016 22:53:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125118 invoked by uid 48); 30 Sep 2016 22:50:06 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13603] [meta-bug] Java security model tracking PR Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02650.txt.bz2 Content-length: 467 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13603 Bug 13603 depends on bug 21222, which changed state. Bug 21222 Summary: must restrict access to gnu.classpath.* https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21222 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539004-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:01:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3169 invoked by alias); 30 Sep 2016 22:51:47 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123304 invoked by uid 48); 30 Sep 2016 22:49:45 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/35266] gcj: Internal error: Killed (program jc1) when building java Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02642.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D35266 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539031-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:06:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23637 invoked by alias); 30 Sep 2016 22:53:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124823 invoked by uid 48); 30 Sep 2016 22:50:02 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/29957] makemake.tcl should install .h files generated from bc marked packages (org.xml, org.w3c, etc) Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: tromey at redhat dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02641.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D29957 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539027-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:05:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22858 invoked by alias); 30 Sep 2016 22:53:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124967 invoked by uid 48); 30 Sep 2016 22:50:04 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/6993] info page outdated about Input files Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.1 X-Bugzilla-Keywords: documentation X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02634.txt.bz2 Content-length: 497 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D6993 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539040-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:08:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24557 invoked by alias); 30 Sep 2016 22:53:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125635 invoked by uid 48); 30 Sep 2016 22:50:19 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/62068] libjava/prims.cc:807: possible missing call to va_end ? Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.9.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02646.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D62068 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539032-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:08:16 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23656 invoked by alias); 30 Sep 2016 22:53:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124945 invoked by uid 48); 30 Sep 2016 22:50:03 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27921] libgcj should support old 1.1-style JNI invocation API Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02648.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27921 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539035-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:08:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24419 invoked by alias); 30 Sep 2016 22:53:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125514 invoked by uid 48); 30 Sep 2016 22:50:18 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/35091] NoClassDefFoundError in case the path contains umlauts Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02647.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D35091 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539039-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:08:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24529 invoked by alias); 30 Sep 2016 22:53:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125032 invoked by uid 48); 30 Sep 2016 22:50:05 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/17488] Binary compatibility: must ensure static method's class remains live Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02644.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17488 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-538998-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:01:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2975 invoked by alias); 30 Sep 2016 22:51:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 123560 invoked by uid 48); 30 Sep 2016 22:49:47 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/9463] add native methods for file name encoding Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02649.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D9463 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539036-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:08:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24438 invoked by alias); 30 Sep 2016 22:53:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124981 invoked by uid 48); 30 Sep 2016 22:50:04 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/6819] duplicate class registration bug Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02645.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D6819 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539026-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:06:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22783 invoked by alias); 30 Sep 2016 22:53:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124783 invoked by uid 48); 30 Sep 2016 22:50:02 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12759] Binary compatibility: rip out -fno-assume-compiled Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02635.txt.bz2 Content-length: 499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12759 Bug 12759 depends on bug 12725, which changed state. Bug 12725 Summary: [meta-bug] gcj does not conform to Binary Compatibility = specification https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12725 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539028-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:06:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22895 invoked by alias); 30 Sep 2016 22:53:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124680 invoked by uid 48); 30 Sep 2016 22:50:01 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/49499] build error of gcc Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02636.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D49499 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539023-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:05:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 19303 invoked by alias); 30 Sep 2016 22:53:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124348 invoked by uid 48); 30 Sep 2016 22:49:56 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/39481] StringTokenizer.hasMoreTokens() can screw up tokens Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02640.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D39481 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539038-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:08:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24505 invoked by alias); 30 Sep 2016 22:53:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125591 invoked by uid 48); 30 Sep 2016 22:50:19 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/1305] [JSR133] GCJ ignores volatile modifier Date: Fri, 30 Sep 2016 22:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02643.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D1305 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|SUSPENDED |RESOLVED Resolution|--- |WONTFIX --- Comment #10 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539057-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:17:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27557 invoked by alias); 30 Sep 2016 22:54:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126391 invoked by uid 48); 30 Sep 2016 22:50:33 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/34313] SSLEngine for NIO - socket connection not working Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02666.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D34313 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539061-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:18:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27728 invoked by alias); 30 Sep 2016 22:54:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126535 invoked by uid 48); 30 Sep 2016 22:50:34 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/13319] null pointer checks for CNI code Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: ABI X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02676.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13319 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539033-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:07:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23687 invoked by alias); 30 Sep 2016 22:53:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124684 invoked by uid 48); 30 Sep 2016 22:50:01 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/6819] duplicate class registration bug Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02652.txt.bz2 Content-length: 497 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D6819 Bug 6819 depends on bug 12725, which changed state. Bug 12725 Summary: [meta-bug] gcj does not conform to Binary Compatibility = specification https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12725 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539022-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:06:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 13033 invoked by alias); 30 Sep 2016 22:52:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124524 invoked by uid 48); 30 Sep 2016 22:49:59 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/38840] GCJ internal compiler error in handle_constant under very specific combination of conditions Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02665.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D38840 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539069-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:21:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 30480 invoked by alias); 30 Sep 2016 22:54:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126187 invoked by uid 48); 30 Sep 2016 22:50:31 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/21890] SecurityManager is incomplete Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02678.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21890 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539047-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:13:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25588 invoked by alias); 30 Sep 2016 22:54:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125996 invoked by uid 48); 30 Sep 2016 22:50:26 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/31890] Java Namespace error - javaprims.h out of sync Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02658.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31890 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #7 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539063-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:19:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 29233 invoked by alias); 30 Sep 2016 22:54:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126599 invoked by uid 48); 30 Sep 2016 22:50:35 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/32904] Typo in Base64.java's decode function Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02680.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D32904 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539054-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:14:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26604 invoked by alias); 30 Sep 2016 22:54:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126034 invoked by uid 48); 30 Sep 2016 22:50:27 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/1379] converters must be able to throw exception Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02659.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D1379 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539045-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:11:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25483 invoked by alias); 30 Sep 2016 22:54:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125096 invoked by uid 48); 30 Sep 2016 22:50:06 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12725] [meta-bug] gcj does not conform to Binary Compatibility specification Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: ABI, meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: aph at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02657.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12725 Bug 12725 depends on bug 17488, which changed state. Bug 17488 Summary: Binary compatibility: must ensure static method's class = remains live https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17488 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539067-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:20:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 30349 invoked by alias); 30 Sep 2016 22:54:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126647 invoked by uid 48); 30 Sep 2016 22:50:36 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/7739] compile with -findirect-dispatch by default Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: ABI X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02675.txt.bz2 Content-length: 497 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D7739 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539070-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:21:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 30554 invoked by alias); 30 Sep 2016 22:54:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126169 invoked by uid 48); 30 Sep 2016 22:50:30 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/20469] gcjh does not rename Java variables named NULL Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.4.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02677.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20469 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539060-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:17:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27676 invoked by alias); 30 Sep 2016 22:54:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126235 invoked by uid 48); 30 Sep 2016 22:50:31 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/63355] libjava/classpath/native/jni/gstreamer-peer/gst_native_pipeline.c:180: possible typo ? Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02668.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D63355 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539037-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:09:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24470 invoked by alias); 30 Sep 2016 22:53:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125165 invoked by uid 48); 30 Sep 2016 22:50:07 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12759] Binary compatibility: rip out -fno-assume-compiled Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02653.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12759 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539062-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:19:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 29030 invoked by alias); 30 Sep 2016 22:54:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126394 invoked by uid 48); 30 Sep 2016 22:50:33 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/58689] Enhance returns_nonnull Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: diagnostic, missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02672.txt.bz2 Content-length: 458 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D58689 Bug 58689 depends on bug 21856, which changed state. Bug 21856 Summary: null pointer check elimination https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21856 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539059-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:18:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27646 invoked by alias); 30 Sep 2016 22:54:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126632 invoked by uid 48); 30 Sep 2016 22:50:35 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/2382] libjava's testsuite returns error case Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02669.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D2382 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539065-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:19:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 29389 invoked by alias); 30 Sep 2016 22:54:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126512 invoked by uid 48); 30 Sep 2016 22:50:34 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/20704] CNI code is called/loaded without any security checks Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02670.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20704 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539041-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:10:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25320 invoked by alias); 30 Sep 2016 22:54:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125051 invoked by uid 48); 30 Sep 2016 22:50:06 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/21222] must restrict access to gnu.classpath.* Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02655.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21222 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539024-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:05:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22626 invoked by alias); 30 Sep 2016 22:53:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124631 invoked by uid 48); 30 Sep 2016 22:50:00 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/33891] unresponsive to mouse and keyboard input Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02656.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D33891 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539042-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:10:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25364 invoked by alias); 30 Sep 2016 22:54:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125855 invoked by uid 48); 30 Sep 2016 22:50:22 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/38827] gcj emitting incorrect code Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02664.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D38827 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539050-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:14:16 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26421 invoked by alias); 30 Sep 2016 22:54:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125987 invoked by uid 48); 30 Sep 2016 22:50:26 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/27982] Make gcj inline methods in java.nio.Buffer Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02663.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27982 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539030-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:06:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 22978 invoked by alias); 30 Sep 2016 22:53:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124792 invoked by uid 48); 30 Sep 2016 22:50:02 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13459] use freedesktop mime type library Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02671.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13459 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539058-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:17:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27599 invoked by alias); 30 Sep 2016 22:54:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125757 invoked by uid 48); 30 Sep 2016 22:50:20 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/28175] libgcj install tree should be relocatable Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02673.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D28175 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539044-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:11:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25449 invoked by alias); 30 Sep 2016 22:54:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125269 invoked by uid 48); 30 Sep 2016 22:50:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/37676] Ability to bootstrap a fully working gcj without needing to download a separate binary ecj Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02651.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D37676 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539056-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:17:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27487 invoked by alias); 30 Sep 2016 22:54:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125909 invoked by uid 48); 30 Sep 2016 22:50:24 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/13378] gcj compiling from jar files - verification error Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02667.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13378 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539066-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:20:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 30322 invoked by alias); 30 Sep 2016 22:54:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126254 invoked by uid 48); 30 Sep 2016 22:50:32 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13603] [meta-bug] Java security model tracking PR Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02674.txt.bz2 Content-length: 457 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13603 Bug 13603 depends on bug 21890, which changed state. Bug 21890 Summary: SecurityManager is incomplete https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21890 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539046-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:12:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25543 invoked by alias); 30 Sep 2016 22:54:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125701 invoked by uid 48); 30 Sep 2016 22:50:20 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/70537] ICE segfault compiling jar with gcj Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 5.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02654.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D70537 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539052-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:15:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26539 invoked by alias); 30 Sep 2016 22:54:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125925 invoked by uid 48); 30 Sep 2016 22:50:25 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/28977] UTF-16 endianness differs between gcj and Sun JDK Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02660.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D28977 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539064-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:19:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 29315 invoked by alias); 30 Sep 2016 22:54:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126583 invoked by uid 48); 30 Sep 2016 22:50:35 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/24832] Modularization of Java libraries Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02679.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24832 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539055-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:16:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26655 invoked by alias); 30 Sep 2016 22:54:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125829 invoked by uid 48); 30 Sep 2016 22:50:21 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/23856] Modification Time Incorrectly Set From Extension Entry Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02662.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D23856 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539053-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:14:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26572 invoked by alias); 30 Sep 2016 22:54:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125786 invoked by uid 48); 30 Sep 2016 22:50:21 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/50520] getReaderForText never returns Date: Fri, 30 Sep 2016 22:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02661.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D50520 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539087-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:27:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 37464 invoked by alias); 30 Sep 2016 22:55:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127319 invoked by uid 48); 30 Sep 2016 22:50:55 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/33789] gij crashes when sending serialized objects through a pipe Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02693.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D33789 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539074-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:22:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31863 invoked by alias); 30 Sep 2016 22:55:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126699 invoked by uid 48); 30 Sep 2016 22:50:36 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/35485] libjava is disabled by default Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02684.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D35485 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539080-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:25:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 33900 invoked by alias); 30 Sep 2016 22:55:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127352 invoked by uid 48); 30 Sep 2016 22:50:55 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/51718] Regular Expression doesn't match < literal Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.5 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02690.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D51718 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539071-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:22:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31733 invoked by alias); 30 Sep 2016 22:55:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126824 invoked by uid 48); 30 Sep 2016 22:50:38 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/28533] [ecj] Default warnings Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02683.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D28533 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539048-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:12:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25628 invoked by alias); 30 Sep 2016 22:54:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125938 invoked by uid 48); 30 Sep 2016 22:50:25 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/49635] Odd Java -extdirs / --extdirs handling Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02691.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D49635 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539068-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:20:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 30408 invoked by alias); 30 Sep 2016 22:54:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126354 invoked by uid 48); 30 Sep 2016 22:50:32 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/21856] null pointer check elimination Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02682.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21856 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539078-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:24:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 33225 invoked by alias); 30 Sep 2016 22:55:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127015 invoked by uid 48); 30 Sep 2016 22:50:41 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27658] _Jv_CreateJavaVM calling ExtensionClassLoader bootstrap problem Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02687.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27658 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539049-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:14:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26356 invoked by alias); 30 Sep 2016 22:54:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126058 invoked by uid 48); 30 Sep 2016 22:50:27 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/5688] cross compiler build fails in libjava Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.1 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02694.txt.bz2 Content-length: 497 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D5688 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539073-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:22:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31806 invoked by alias); 30 Sep 2016 22:55:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126941 invoked by uid 48); 30 Sep 2016 22:50:40 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/21798] Generational garbage collector? Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02681.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21798 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539079-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:25:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 33841 invoked by alias); 30 Sep 2016 22:55:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126742 invoked by uid 48); 30 Sep 2016 22:50:37 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/18399] Class initialization optimization does not work with the inliner Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02689.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D18399 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539043-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:10:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25418 invoked by alias); 30 Sep 2016 22:54:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125257 invoked by uid 48); 30 Sep 2016 22:50:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/41676] FAIL: PR160 -O3 output - source compiled test Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02686.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D41676 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539075-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:23:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 33090 invoked by alias); 30 Sep 2016 22:55:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127399 invoked by uid 48); 30 Sep 2016 22:50:57 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/4439] CNI: would be nice to be able to create Java array with 'new' Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.0.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02685.txt.bz2 Content-length: 497 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D4439 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539083-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:27:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 36980 invoked by alias); 30 Sep 2016 22:55:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126916 invoked by uid 48); 30 Sep 2016 22:50:40 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/21016] Indirect dispatch code generated when using -findirect-dispatch has wrong line numbers Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: wrong-debug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02692.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21016 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539077-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:23:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 33173 invoked by alias); 30 Sep 2016 22:55:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127033 invoked by uid 48); 30 Sep 2016 22:50:42 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/41472] gcj -C Test.java fails in glib-java 0.4.2 Date: Fri, 30 Sep 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02688.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D41472 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539085-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:27:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 37262 invoked by alias); 30 Sep 2016 22:55:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127081 invoked by uid 48); 30 Sep 2016 22:50:43 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/32781] Build breaks - libstdc++-v3/include/bits/stl_algobase.h: In function '_OI std::__copy_aux(_II, _II, _OI)': error: expected primary-expression before ')' token Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02700.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D32781 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #9 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539089-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:28:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 37914 invoked by alias); 30 Sep 2016 22:56:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126724 invoked by uid 48); 30 Sep 2016 22:50:37 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/21893] class loading and verifier audit Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02696.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21893 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539105-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:32:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42896 invoked by alias); 30 Sep 2016 22:56:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 909 invoked by uid 48); 30 Sep 2016 22:51:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/23500] Optimization: Skip _Jv_InitClass for intra-class static method calls Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.2 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02715.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D23500 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539081-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:26:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35644 invoked by alias); 30 Sep 2016 22:55:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126829 invoked by uid 48); 30 Sep 2016 22:50:39 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27778] libgcj configure fails if pango is not installed even with --enable-java-awt=no Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02708.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27778 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539086-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:27:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 37318 invoked by alias); 30 Sep 2016 22:55:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126773 invoked by uid 48); 30 Sep 2016 22:50:38 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13603] [meta-bug] Java security model tracking PR Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02698.txt.bz2 Content-length: 460 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13603 Bug 13603 depends on bug 21893, which changed state. Bug 21893 Summary: class loading and verifier audit https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21893 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539095-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:30:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 40609 invoked by alias); 30 Sep 2016 22:56:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127450 invoked by uid 48); 30 Sep 2016 22:50:58 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/71757] libgcj: unknown symbol __cxa_throw_bad_array_new_length Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02702.txt.bz2 Content-length: 514 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71757 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #10 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539094-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:29:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39428 invoked by alias); 30 Sep 2016 22:56:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 128018 invoked by uid 48); 30 Sep 2016 22:51:02 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/31365] private methods given vtable slots Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02712.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31365 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539092-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:28:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39307 invoked by alias); 30 Sep 2016 22:56:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127774 invoked by uid 48); 30 Sep 2016 22:51:01 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/8685] CNI Invocation of Java code from C++ example fails Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.3 X-Bugzilla-Keywords: documentation X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02699.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D8685 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539099-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:30:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 41585 invoked by alias); 30 Sep 2016 22:56:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127779 invoked by uid 48); 30 Sep 2016 22:51:01 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/28474] mangle_name.c mangles names unecessarily Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02704.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D28474 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539090-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:28:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39224 invoked by alias); 30 Sep 2016 22:56:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127652 invoked by uid 48); 30 Sep 2016 22:51:00 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/38298] libjava link failures. Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02697.txt.bz2 Content-length: 514 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D38298 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #12 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539088-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:27:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 37871 invoked by alias); 30 Sep 2016 22:56:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126864 invoked by uid 48); 30 Sep 2016 22:50:39 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/36763] new methods introduced with classpath-0.97.2, nyi in libgcj Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02695.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D36763 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539097-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:30:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 40686 invoked by alias); 30 Sep 2016 22:56:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 128732 invoked by uid 48); 30 Sep 2016 22:51:04 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/24798] classmap.db should reside in /var/lib/gcj/ Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: fitzsim at redhat dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02703.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24798 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539104-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:33:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42858 invoked by alias); 30 Sep 2016 22:56:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 130068 invoked by uid 48); 30 Sep 2016 22:51:06 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/54439] new BigDecimal (int n) dumps core under CYGWIN_NT-6.1-WOW64 Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02711.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D54439 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539084-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:27:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 37042 invoked by alias); 30 Sep 2016 22:55:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126884 invoked by uid 48); 30 Sep 2016 22:50:39 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/42700] jc1: ICE in java_read_sourcefilenames, at java/jcf-parse.c:192 Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02709.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D42700 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539082-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:26:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35709 invoked by alias); 30 Sep 2016 22:55:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126781 invoked by uid 48); 30 Sep 2016 22:50:38 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/17574] [meta-bug] gcj and libgcj 4.0 tracking PR Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 4.0.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02701.txt.bz2 Content-length: 494 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17574 Bug 17574 depends on bug 18399, which changed state. Bug 18399 Summary: Class initialization optimization does not work with the= inliner https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D18399 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539107-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:34:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 44274 invoked by alias); 30 Sep 2016 22:56:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 372 invoked by uid 48); 30 Sep 2016 22:51:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/10657] java section can not find libiconv Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.3 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02714.txt.bz2 Content-length: 499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D10657 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #16 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539103-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:32:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42823 invoked by alias); 30 Sep 2016 22:56:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 130224 invoked by uid 48); 30 Sep 2016 22:51:06 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/30466] gcj crashes when using invalid options Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.1.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02713.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D30466 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539093-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:29:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39368 invoked by alias); 30 Sep 2016 22:56:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 128178 invoked by uid 48); 30 Sep 2016 22:51:03 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/32706] gcj -M's dependency list is empty Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02706.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D32706 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539098-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:31:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 41551 invoked by alias); 30 Sep 2016 22:56:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 129405 invoked by uid 48); 30 Sep 2016 22:51:05 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/51451] Premature EOF in stream Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.5 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02705.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D51451 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539091-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:28:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39268 invoked by alias); 30 Sep 2016 22:56:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 128072 invoked by uid 48); 30 Sep 2016 22:51:02 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/16122] gij - Incorrect result due to computations in extended precision on x86 Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02710.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D16122 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539096-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:30:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 40645 invoked by alias); 30 Sep 2016 22:56:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 648 invoked by uid 48); 30 Sep 2016 22:51:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/16229] [meta-bug] http, URL, and URLConnection issues Date: Fri, 30 Sep 2016 22:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02707.txt.bz2 Content-length: 510 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D16229 Bug 16229 depends on bug 6298, which changed state. Bug 6298 Summary: java.net.URL doesn't handle file:/c:/pub/files/foobar.txt= correctly (Mauve failure) https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D6298 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539110-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:35:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 45701 invoked by alias); 30 Sep 2016 22:57:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1455 invoked by uid 48); 30 Sep 2016 22:51:13 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/44109] gcj handling of assertions is in conflict with documentation Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02716.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D44109 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539076-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:23:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 33139 invoked by alias); 30 Sep 2016 22:55:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126984 invoked by uid 48); 30 Sep 2016 22:50:41 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/57424] extra multilib subdirectory level at r199345 Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02718.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D57424 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539117-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:37:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 48319 invoked by alias); 30 Sep 2016 22:57:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127591 invoked by uid 48); 30 Sep 2016 22:50:59 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/60667] Undefined behavior in Java FE Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02723.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60667 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539106-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:33:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 43363 invoked by alias); 30 Sep 2016 22:56:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127556 invoked by uid 48); 30 Sep 2016 22:50:59 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/31450] natFileChannelPosix.cc should use mincore Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02719.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31450 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539116-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:37:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 48148 invoked by alias); 30 Sep 2016 22:57:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1359 invoked by uid 48); 30 Sep 2016 22:51:12 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug other/704] --help and --version Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: other X-Bugzilla-Version: 2.97 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02722.txt.bz2 Content-length: 447 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D704 Bug 704 depends on bug 5303, which changed state. Bug 5303 Summary: Undocumented java programs https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D5303 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539072-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:22:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 31769 invoked by alias); 30 Sep 2016 22:55:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 126906 invoked by uid 48); 30 Sep 2016 22:50:40 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/37856] Abort with: Too many heap sections: Increase MAXHINCR or MAX_HEAP_SECTS Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02724.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D37856 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539100-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:31:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 41654 invoked by alias); 30 Sep 2016 22:56:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 127852 invoked by uid 48); 30 Sep 2016 22:51:01 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/25398] .jar files held open twice at runtime Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02727.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D25398 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539122-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:39:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 50631 invoked by alias); 30 Sep 2016 22:57:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1921 invoked by uid 48); 30 Sep 2016 22:51:27 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/54765] I like to make any windows native exe file from a java jar Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: blocker X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02729.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D54765 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539109-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:34:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 45652 invoked by alias); 30 Sep 2016 22:57:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1661 invoked by uid 48); 30 Sep 2016 22:51:14 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/1427] gcc should allow gcj and gfortran to generate N_MAIN stab or DW_AT_entry_point dwarf2 debug info Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 2.97 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02728.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D1427 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #21 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539112-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:35:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 46926 invoked by alias); 30 Sep 2016 22:57:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2024 invoked by uid 48); 30 Sep 2016 22:51:32 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/14670] [win32] gcj & high ascii: incorrectly translated / linux: fails to compile Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02721.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D14670 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539111-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:35:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 46459 invoked by alias); 30 Sep 2016 22:57:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 128623 invoked by uid 48); 30 Sep 2016 22:51:04 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/46033] gcc-4.5.1 fails to compile gcc-4.5.1 Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02730.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D46033 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539108-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:34:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 44329 invoked by alias); 30 Sep 2016 22:56:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 129441 invoked by uid 48); 30 Sep 2016 22:51:05 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/41221] segfault/internal compiler error in gcj when using AOT compilation Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02717.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D41221 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539120-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:38:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 49354 invoked by alias); 30 Sep 2016 22:57:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1221 invoked by uid 48); 30 Sep 2016 22:51:11 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/44327] build_java_method_aliases should use cgraph_node->same_body aliases list Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02726.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D44327 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539123-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:39:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 50681 invoked by alias); 30 Sep 2016 22:57:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2315 invoked by uid 48); 30 Sep 2016 22:51:35 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/31910] Trouble with libtool and libjava/classpath/native/jni/gtk-peer/Makefile Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02731.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31910 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539051-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:14:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26468 invoked by alias); 30 Sep 2016 22:54:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 125897 invoked by uid 48); 30 Sep 2016 22:50:24 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/20508] gij prints too much information if an incorrect class is given Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02720.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20508 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539102-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:32:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42783 invoked by alias); 30 Sep 2016 22:56:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1053 invoked by uid 48); 30 Sep 2016 22:51:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/35253] reflection on annotation objects throws IllegalAccessException Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02725.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D35253 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539115-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:36:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 48088 invoked by alias); 30 Sep 2016 22:57:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1621 invoked by uid 48); 30 Sep 2016 22:51:14 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/21725] use new sync built-ins Date: Fri, 30 Sep 2016 22:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02732.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21725 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539113-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:36:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 48021 invoked by alias); 30 Sep 2016 22:57:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1072 invoked by uid 48); 30 Sep 2016 22:51:09 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12059] jcf-dump does not display float constants to fixed precission Date: Fri, 30 Sep 2016 22:58:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02734.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12059 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539127-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:40:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 57805 invoked by alias); 30 Sep 2016 22:58:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2231 invoked by uid 48); 30 Sep 2016 22:51:34 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12725] [meta-bug] gcj does not conform to Binary Compatibility specification Date: Fri, 30 Sep 2016 22:58:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: ABI, meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: aph at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02733.txt.bz2 Content-length: 481 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12725 Bug 12725 depends on bug 22377, which changed state. Bug 22377 Summary: BC compilation fails to detect abstract instantiation https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D22377 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539125-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:40:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 57675 invoked by alias); 30 Sep 2016 22:58:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1384 invoked by uid 48); 30 Sep 2016 22:51:12 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/17831] GCJ/CNI should be usable without 'gcjh' Date: Fri, 30 Sep 2016 22:58:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02735.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17831 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539128-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:41:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 59157 invoked by alias); 30 Sep 2016 22:58:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2478 invoked by uid 48); 30 Sep 2016 22:51:36 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/48417] -ffixed-regs option can't work in mips-elf-gcj compiler Date: Fri, 30 Sep 2016 22:58:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.4.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: critical X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02737.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D48417 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539130-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 59220 invoked by alias); 30 Sep 2016 22:58:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2170 invoked by uid 48); 30 Sep 2016 22:51:34 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/22377] BC compilation fails to detect abstract instantiation Date: Fri, 30 Sep 2016 22:58:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02736.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D22377 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #7 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539124-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:40:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 56508 invoked by alias); 30 Sep 2016 22:58:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2214 invoked by uid 48); 30 Sep 2016 22:51:34 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/24154] Make requires too much memory building libjava Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02747.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24154 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #9 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539129-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:41:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 59195 invoked by alias); 30 Sep 2016 22:58:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1515 invoked by uid 48); 30 Sep 2016 22:51:13 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/38812] gcj-built executables don't run after strip (libgcj erroneously references _environ) Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.3.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02745.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D38812 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #9 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539119-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:38:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 49325 invoked by alias); 30 Sep 2016 22:57:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1155 invoked by uid 48); 30 Sep 2016 22:51:10 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12996] ICE trying to compile an entire jar file Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.3.1 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02741.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12996 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539136-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:34 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63733 invoked by alias); 30 Sep 2016 22:59:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2813 invoked by uid 48); 30 Sep 2016 22:51:42 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/30862] Installation error Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02742.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D30862 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539101-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:31:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 41703 invoked by alias); 30 Sep 2016 22:56:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 130911 invoked by uid 48); 30 Sep 2016 22:51:07 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/6298] java.net.URL doesn't handle file:/c:/pub/files/foobar.txt correctly (Mauve failure) Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02739.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D6298 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539126-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:41:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 57749 invoked by alias); 30 Sep 2016 22:58:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2345 invoked by uid 48); 30 Sep 2016 22:51:36 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/31719] gcj crashes compiling simple .class file output by Rhino js->.class compiler Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02749.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31719 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539134-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 62915 invoked by alias); 30 Sep 2016 22:59:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3023 invoked by uid 48); 30 Sep 2016 22:51:45 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/15474] libgcj jar file should always be in classpath at runtime Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02740.txt.bz2 Content-length: 499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D15474 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #11 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539141-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 66208 invoked by alias); 30 Sep 2016 22:59:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3096 invoked by uid 48); 30 Sep 2016 22:51:46 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/7938] java-rmi-problem Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02748.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D7938 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #11 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539135-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63494 invoked by alias); 30 Sep 2016 22:59:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2968 invoked by uid 48); 30 Sep 2016 22:51:45 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/35367] Linux x86 build (with --enable-targets=all, so also building with cross-to-x64 multilib configuration) fails in libjava (prims.cc) Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02744.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D35367 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539139-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 64974 invoked by alias); 30 Sep 2016 22:59:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3133 invoked by uid 48); 30 Sep 2016 22:51:47 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/17033] [meta-bug] RMI problems Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02746.txt.bz2 Content-length: 441 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17033 Bug 17033 depends on bug 7938, which changed state. Bug 7938 Summary: java-rmi-problem https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D7938 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539142-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 66271 invoked by alias); 30 Sep 2016 22:59:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2662 invoked by uid 48); 30 Sep 2016 22:51:39 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/52384] PR16923 execution test fails Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02750.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D52384 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539131-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 60285 invoked by alias); 30 Sep 2016 22:59:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2833 invoked by uid 48); 30 Sep 2016 22:51:42 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/11117] internal error on compilation of java code (multiple jar's and sources) Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.2.3 X-Bugzilla-Keywords: ice-on-valid-code, patch X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02738.txt.bz2 Content-length: 499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D11117 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #10 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539137-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63796 invoked by alias); 30 Sep 2016 22:59:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3322 invoked by uid 48); 30 Sep 2016 22:51:49 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/29772] using @sourcelist-file leads to wrong flag creation Date: Fri, 30 Sep 2016 22:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02743.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D29772 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539145-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73851 invoked by alias); 30 Sep 2016 23:00:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2721 invoked by uid 48); 30 Sep 2016 22:51:40 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/38075] Scanner(System.in) causes next*() to behave incorrectly Date: Fri, 30 Sep 2016 23:00:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02753.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D38075 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539147-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:03 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73921 invoked by alias); 30 Sep 2016 23:00:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2884 invoked by uid 48); 30 Sep 2016 22:51:43 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12996] ICE trying to compile an entire jar file Date: Fri, 30 Sep 2016 23:00:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.3.1 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02751.txt.bz2 Content-length: 501 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12996 Bug 12996 depends on bug 11117, which changed state. Bug 11117 Summary: internal error on compilation of java code (multiple jar= 's and sources) https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D11117 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539146-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73892 invoked by alias); 30 Sep 2016 23:00:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2609 invoked by uid 48); 30 Sep 2016 22:51:38 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/46059] internel compiler error when compiling libjava/gnu/awt/LightweightRedirector.java with -finline-functions Date: Fri, 30 Sep 2016 23:00:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.6.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02752.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D46059 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539133-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 62874 invoked by alias); 30 Sep 2016 22:59:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3191 invoked by uid 48); 30 Sep 2016 22:51:47 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/6993] info page outdated about Input files Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.1 X-Bugzilla-Keywords: documentation X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02760.txt.bz2 Content-length: 500 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D6993 Bug 6993 depends on bug 30515, which changed state. Bug 30515 Summary: mixing source (.java) and bytecode (.class) no longer wo= rks with gcj 4.3 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D30515 What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539157-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76330 invoked by alias); 30 Sep 2016 23:01:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3393 invoked by uid 48); 30 Sep 2016 22:51:49 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/30292] ICE on compiling .java by gcc(1) Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02762.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D30292 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #7 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539140-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 65011 invoked by alias); 30 Sep 2016 22:59:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2772 invoked by uid 48); 30 Sep 2016 22:51:41 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/25700] gcj manual missing option index Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: documentation X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02770.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D25700 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539152-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 75105 invoked by alias); 30 Sep 2016 23:01:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2760 invoked by uid 48); 30 Sep 2016 22:51:41 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/30109] InetAddress.getHostName() does not resolve host names Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02759.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D30109 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539148-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 74981 invoked by alias); 30 Sep 2016 23:01:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3830 invoked by uid 48); 30 Sep 2016 22:52:01 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/6462] jc1 should have better error message for corrupt jar file ("Cannot allocate xxx bytes after allocating yyyy bytes") Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.0.4 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02754.txt.bz2 Content-length: 497 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D6462 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539161-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 77988 invoked by alias); 30 Sep 2016 23:01:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3337 invoked by uid 48); 30 Sep 2016 22:51:49 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/25655] Implement signal chaining Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02766.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D25655 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539143-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 68281 invoked by alias); 30 Sep 2016 23:00:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3432 invoked by uid 48); 30 Sep 2016 22:51:50 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/32034] Use of deprecated classes in "gcc-4_2-build/i686-pc-linux-gnu/libjava/classpath/tools" Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02765.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D32034 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539164-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 80466 invoked by alias); 30 Sep 2016 23:01:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3953 invoked by uid 48); 30 Sep 2016 22:52:06 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/57799] ICE in jcf-parse.c Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.8.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02771.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D57799 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539166-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 80523 invoked by alias); 30 Sep 2016 23:01:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3824 invoked by uid 48); 30 Sep 2016 22:52:01 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/20047] runtime 'protected' access checks Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02772.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20047 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539150-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 75048 invoked by alias); 30 Sep 2016 23:01:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2621 invoked by uid 48); 30 Sep 2016 22:51:38 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/20169] Serialization: readResolve does not work Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02756.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20169 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #7 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539156-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76238 invoked by alias); 30 Sep 2016 23:01:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4211 invoked by uid 48); 30 Sep 2016 22:52:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/17574] [meta-bug] gcj and libgcj 4.0 tracking PR Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 4.0.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02763.txt.bz2 Content-length: 552 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17574 Bug 17574 depends on bug 18266, which changed state. Bug 18266 Summary: GCJ: Using references drops finalizers causing all apps = to eventually crash ( SIGSEGV in GC_register_finalizer_inner () ) https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D18266 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539149-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:16 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 75015 invoked by alias); 30 Sep 2016 23:01:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4163 invoked by uid 48); 30 Sep 2016 22:52:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/56372] Missing libgcj caused ICE (stack overflow) in jc1 Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.7.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02755.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D56372 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539153-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 75153 invoked by alias); 30 Sep 2016 23:01:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2919 invoked by uid 48); 30 Sep 2016 22:51:44 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/49036] gcj-mp-4.5: Internal error: Abort trap (program ecj1) on Mac OS X 10.5.8 Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02757.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D49036 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539162-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 79156 invoked by alias); 30 Sep 2016 23:01:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2713 invoked by uid 48); 30 Sep 2016 22:51:40 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/20502] gcj failure if .jar contains same .class twice Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02768.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20502 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539160-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 77949 invoked by alias); 30 Sep 2016 23:01:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2909 invoked by uid 48); 30 Sep 2016 22:51:44 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/28625] FAIL: PR7482 -O3 output - source compiled test Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02767.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D28625 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539158-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76409 invoked by alias); 30 Sep 2016 23:01:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2883 invoked by uid 48); 30 Sep 2016 22:51:43 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/24258] add flag to track shared library activity Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02764.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24258 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539163-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 79214 invoked by alias); 30 Sep 2016 23:01:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2794 invoked by uid 48); 30 Sep 2016 22:51:42 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27368] [Xlib peer] Font.canDisplayUpTo throws UnsupportedOperationException Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02769.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27368 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539151-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 75081 invoked by alias); 30 Sep 2016 23:01:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3162 invoked by uid 48); 30 Sep 2016 22:51:47 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/30515] mixing source (.java) and bytecode (.class) no longer works with gcj 4.3 Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02758.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D30515 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539155-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76180 invoked by alias); 30 Sep 2016 23:01:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2798 invoked by uid 48); 30 Sep 2016 22:51:42 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/4918] Use of MainClass attribute when compiling a jar file Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.0.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02761.txt.bz2 Content-length: 497 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D4918 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539132-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 60332 invoked by alias); 30 Sep 2016 22:59:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1115 invoked by uid 48); 30 Sep 2016 22:51:09 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13288] MulticastSocket not joining more than one interface Date: Fri, 30 Sep 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.3.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02773.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13288 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539171-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 82705 invoked by alias); 30 Sep 2016 23:02:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4087 invoked by uid 48); 30 Sep 2016 22:52:07 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/39103] Deadlock in AWT Date: Fri, 30 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: aph at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02781.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D39103 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539114-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:36:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 48050 invoked by alias); 30 Sep 2016 22:57:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1191 invoked by uid 48); 30 Sep 2016 22:51:10 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/5303] Undocumented java programs Date: Fri, 30 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.1 X-Bugzilla-Keywords: documentation X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02783.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D5303 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #18 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539170-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 81700 invoked by alias); 30 Sep 2016 23:02:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2746 invoked by uid 48); 30 Sep 2016 22:51:41 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/14023] gcj should call GC allocators directly Date: Fri, 30 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02776.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D14023 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539138-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:42:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63850 invoked by alias); 30 Sep 2016 22:59:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3188 invoked by uid 48); 30 Sep 2016 22:51:47 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/39180] New String constructors need to be implemented in local copy of java.lang.String Date: Fri, 30 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02777.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D39180 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539169-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:16 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 81630 invoked by alias); 30 Sep 2016 23:02:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2666 invoked by uid 48); 30 Sep 2016 22:51:39 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/9755] Code gets compiled that shouldn't be when using Newlib (compiling the compiler) Date: Fri, 30 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.2 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02774.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D9755 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539175-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 87817 invoked by alias); 30 Sep 2016 23:02:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 7905 invoked by uid 48); 30 Sep 2016 22:52:22 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/31900] Java line number debug info is bogus Date: Fri, 30 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02782.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31900 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539176-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 88086 invoked by alias); 30 Sep 2016 23:02:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 5715 invoked by uid 48); 30 Sep 2016 22:52:18 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/50860] Unexpected NullPointerException when create simple class Date: Fri, 30 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02785.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D50860 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539174-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 83930 invoked by alias); 30 Sep 2016 23:02:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4844 invoked by uid 48); 30 Sep 2016 22:52:15 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/58215] -fwhole-program cause gcj undefined reference to `Main::class$' Date: Fri, 30 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.8.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02780.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D58215 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539177-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 89377 invoked by alias); 30 Sep 2016 23:02:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4502 invoked by uid 48); 30 Sep 2016 22:52:13 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12725] [meta-bug] gcj does not conform to Binary Compatibility specification Date: Fri, 30 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: ABI, meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: aph at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02784.txt.bz2 Content-length: 477 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12725 Bug 12725 depends on bug 15363, which changed state. Bug 15363 Summary: Binary Compatibility: need special access control https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D15363 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539168-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 81588 invoked by alias); 30 Sep 2016 23:02:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2592 invoked by uid 48); 30 Sep 2016 22:51:37 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27823] Found a problem with the JNI methods declared and implemented Date: Fri, 30 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02775.txt.bz2 Content-length: 514 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27823 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #25 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539173-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 83864 invoked by alias); 30 Sep 2016 23:02:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4353 invoked by uid 48); 30 Sep 2016 22:52:12 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/15363] Binary Compatibility: need special access control Date: Fri, 30 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02779.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D15363 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539165-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 80501 invoked by alias); 30 Sep 2016 23:01:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4035 invoked by uid 48); 30 Sep 2016 22:52:07 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/40953] function declaration forgotten Date: Fri, 30 Sep 2016 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: trivial X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02778.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D40953 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539184-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:45:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 95654 invoked by alias); 30 Sep 2016 23:03:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 6145 invoked by uid 48); 30 Sep 2016 22:52:19 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/16990] [meta-bug] TimeZone Issues in libgcj/classpath Date: Fri, 30 Sep 2016 23:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02790.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D16990 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539180-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 90801 invoked by alias); 30 Sep 2016 23:03:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 5126 invoked by uid 48); 30 Sep 2016 22:52:17 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13603] [meta-bug] Java security model tracking PR Date: Fri, 30 Sep 2016 23:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02786.txt.bz2 Content-length: 451 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13603 Bug 13603 depends on bug 11780, which changed state. Bug 11780 Summary: Method.invoke() is slow https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D11780 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539178-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 89412 invoked by alias); 30 Sep 2016 23:02:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4387 invoked by uid 48); 30 Sep 2016 22:52:12 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/2370] Behavior of main compilation without --main is unfriendly Date: Fri, 30 Sep 2016 23:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02789.txt.bz2 Content-length: 497 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D2370 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539181-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 90845 invoked by alias); 30 Sep 2016 23:03:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 6763 invoked by uid 48); 30 Sep 2016 22:52:20 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/46406] nothing Date: Fri, 30 Sep 2016 23:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02787.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D46406 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539172-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 83811 invoked by alias); 30 Sep 2016 23:02:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 5391 invoked by uid 48); 30 Sep 2016 22:52:17 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/30884] Some arbitrary system properties missing Date: Fri, 30 Sep 2016 23:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02792.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D30884 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539182-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:45:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 91853 invoked by alias); 30 Sep 2016 23:03:16 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4620 invoked by uid 48); 30 Sep 2016 22:52:14 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/30937] Win32: Process.exitValue() does not work after multiple calls to a terminated process Date: Fri, 30 Sep 2016 23:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02788.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D30937 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539179-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 90177 invoked by alias); 30 Sep 2016 23:03:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4886 invoked by uid 48); 30 Sep 2016 22:52:16 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/11780] Method.invoke() is slow Date: Fri, 30 Sep 2016 23:03:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02791.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D11780 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #9 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539187-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:45:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 102983 invoked by alias); 30 Sep 2016 23:04:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4614 invoked by uid 48); 30 Sep 2016 22:52:14 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12182] compilation of iText fails, probably a bug Date: Fri, 30 Sep 2016 23:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02794.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12182 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539185-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:45:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 97645 invoked by alias); 30 Sep 2016 23:04:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4762 invoked by uid 48); 30 Sep 2016 22:52:15 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/31875] "Error loading applet" when playing runescape Date: Fri, 30 Sep 2016 23:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02793.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31875 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539194-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 105671 invoked by alias); 30 Sep 2016 23:05:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 8958 invoked by uid 48); 30 Sep 2016 22:52:23 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27201] can't include cni.h and jni.h in the same file Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02805.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27201 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539195-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 106693 invoked by alias); 30 Sep 2016 23:05:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 8235 invoked by uid 48); 30 Sep 2016 22:52:22 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/17187] Call to java.lang.Object constructor is redundant Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02801.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17187 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539201-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 109163 invoked by alias); 30 Sep 2016 23:05:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22856 invoked by uid 48); 30 Sep 2016 22:53:30 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/35407] tries to link 32 instead of 64 bit version of libasound.so in midi-alsa Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02807.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D35407 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539196-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 106729 invoked by alias); 30 Sep 2016 23:05:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 5116 invoked by uid 48); 30 Sep 2016 22:52:17 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/43962] gcj fails to compile with LANG=ja_JP.eucJP Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02802.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D43962 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539199-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 107992 invoked by alias); 30 Sep 2016 23:05:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4927 invoked by uid 48); 30 Sep 2016 22:52:16 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/21423] http://gcc.gnu.org/java/status.html needs updating Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: documentation X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02806.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21423 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539189-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:45:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 104351 invoked by alias); 30 Sep 2016 23:05:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 7296 invoked by uid 48); 30 Sep 2016 22:52:21 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/35410] clone() for array types has incorrect return type Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02795.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D35410 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539190-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:45:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 104383 invoked by alias); 30 Sep 2016 23:05:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 7738 invoked by uid 48); 30 Sep 2016 22:52:21 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13603] [meta-bug] Java security model tracking PR Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02796.txt.bz2 Content-length: 472 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13603 Bug 13603 depends on bug 1373, which changed state. Bug 1373 Summary: recursion stress test causes segmentation fault https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D1373 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539202-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110410 invoked by alias); 30 Sep 2016 23:05:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 13045 invoked by uid 48); 30 Sep 2016 22:52:57 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/60309] JNI_CreateJavaVM aborts with java.system.class.loader property set Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02808.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60309 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539192-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:45:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 105594 invoked by alias); 30 Sep 2016 23:05:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 5648 invoked by uid 48); 30 Sep 2016 22:52:18 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/30903] regeneration of headers is broken/difficult Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02798.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D30903 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539186-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:45:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 101335 invoked by alias); 30 Sep 2016 23:04:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 8492 invoked by uid 48); 30 Sep 2016 22:52:22 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27728] Class.getEnclosingX() methods need implementation Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02800.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27728 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539191-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:45:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 104423 invoked by alias); 30 Sep 2016 23:05:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 8959 invoked by uid 48); 30 Sep 2016 22:52:23 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12784] Add flag to request static libgcj.a when invoking gcj Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02797.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12784 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539193-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:45:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 105634 invoked by alias); 30 Sep 2016 23:05:14 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4748 invoked by uid 48); 30 Sep 2016 22:52:15 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/12660] libgcj should use strerror_r instead of strerror Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02799.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12660 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539198-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 106801 invoked by alias); 30 Sep 2016 23:05:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4534 invoked by uid 48); 30 Sep 2016 22:52:14 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/28149] Fail to test GCC on simulation due to libjava build errors. Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02803.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D28149 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539197-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 106763 invoked by alias); 30 Sep 2016 23:05:25 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4838 invoked by uid 48); 30 Sep 2016 22:52:15 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/38102] error building libjavamath on OS X 10.4.11 PPC Date: Fri, 30 Sep 2016 23:05:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02804.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D38102 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539204-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:29 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110493 invoked by alias); 30 Sep 2016 23:06:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 13042 invoked by uid 48); 30 Sep 2016 22:52:57 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/30673] [jni] Different behaviour than a Sun JRE Date: Fri, 30 Sep 2016 23:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02809.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D30673 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539200-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 108077 invoked by alias); 30 Sep 2016 23:05:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22674 invoked by uid 48); 30 Sep 2016 22:53:28 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/29604] Race condition in ServerSocket.accept() Date: Fri, 30 Sep 2016 23:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02813.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D29604 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539206-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 112786 invoked by alias); 30 Sep 2016 23:06:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22692 invoked by uid 48); 30 Sep 2016 22:53:28 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/20388] gcj should have a -print-libgcj-jar-file-name option Date: Fri, 30 Sep 2016 23:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02812.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20388 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539203-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 110440 invoked by alias); 30 Sep 2016 23:06:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22846 invoked by uid 48); 30 Sep 2016 22:53:30 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/33218] Process.waiFor() Process.destroy() misbehave for childs which are not reacting to Ctrl+C SIGQUIT Date: Fri, 30 Sep 2016 23:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02810.txt.bz2 Content-length: 499 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D33218 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #15 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539207-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 115995 invoked by alias); 30 Sep 2016 23:06:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23756 invoked by uid 48); 30 Sep 2016 22:53:40 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/28442] libtool: link: cannot find the library `' Date: Fri, 30 Sep 2016 23:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02814.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D28442 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539188-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:45:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 103023 invoked by alias); 30 Sep 2016 23:04:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 6332 invoked by uid 48); 30 Sep 2016 22:52:19 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/23283] Sun's JIT faster than gcc for Random.nextDouble Date: Fri, 30 Sep 2016 23:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.4.4 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02811.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D23283 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539210-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121090 invoked by alias); 30 Sep 2016 23:07:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23038 invoked by uid 48); 30 Sep 2016 22:53:31 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/6587] gcj generates incorrect debug output Date: Fri, 30 Sep 2016 23:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.3 X-Bugzilla-Keywords: wrong-debug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02817.txt.bz2 Content-length: 497 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D6587 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539209-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 119147 invoked by alias); 30 Sep 2016 23:07:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23673 invoked by uid 48); 30 Sep 2016 22:53:39 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13852] [Win32] not using Win32 based locale Date: Fri, 30 Sep 2016 23:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02815.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13852 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539205-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 111678 invoked by alias); 30 Sep 2016 23:06:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 22950 invoked by uid 48); 30 Sep 2016 22:53:31 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/18086] automate marking of Class object Date: Fri, 30 Sep 2016 23:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02816.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D18086 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539212-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121900 invoked by alias); 30 Sep 2016 23:07:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23539 invoked by uid 48); 30 Sep 2016 22:53:37 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/26007] initialized final static data should go in .rodata, not .data Date: Fri, 30 Sep 2016 23:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02818.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D26007 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539215-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 124770 invoked by alias); 30 Sep 2016 23:08:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24388 invoked by uid 48); 30 Sep 2016 22:53:49 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/24833] Variable declared as 'final' can be assigned in conflict with Java standard Date: Fri, 30 Sep 2016 23:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: trivial X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02821.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24833 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539208-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 119110 invoked by alias); 30 Sep 2016 23:07:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23055 invoked by uid 48); 30 Sep 2016 22:53:32 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/17438] clean up thread native state using phantom reference Date: Fri, 30 Sep 2016 23:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02820.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17438 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539167-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:44:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 81560 invoked by alias); 30 Sep 2016 23:02:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2854 invoked by uid 48); 30 Sep 2016 22:51:43 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/20509] inline function _Jv_Select could return error code instead of throwing exception Date: Fri, 30 Sep 2016 23:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02826.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20509 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539213-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 122677 invoked by alias); 30 Sep 2016 23:08:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23622 invoked by uid 48); 30 Sep 2016 22:53:38 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/61356] make error in gcj Date: Fri, 30 Sep 2016 23:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02819.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61356 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539219-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 126518 invoked by alias); 30 Sep 2016 23:08:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24233 invoked by uid 48); 30 Sep 2016 22:53:48 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/38804] libgcj multilib fails if not able to exec "non" native programs Date: Fri, 30 Sep 2016 23:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02825.txt.bz2 Content-length: 514 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D38804 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #14 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539216-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 124797 invoked by alias); 30 Sep 2016 23:08:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23090 invoked by uid 48); 30 Sep 2016 22:53:32 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12772] Need infrastructure to determine if a class in in same binary unit Date: Fri, 30 Sep 2016 23:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02822.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12772 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539217-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125687 invoked by alias); 30 Sep 2016 23:08:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24196 invoked by uid 48); 30 Sep 2016 22:53:47 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/24860] java.util.Calendar needs updating Date: Fri, 30 Sep 2016 23:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02824.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24860 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539218-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 125702 invoked by alias); 30 Sep 2016 23:08:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23277 invoked by uid 48); 30 Sep 2016 22:53:33 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/55637] FAIL: sourcelocation output - source compiled test Date: Fri, 30 Sep 2016 23:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.8.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02823.txt.bz2 Content-length: 514 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D55637 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #21 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539222-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 130989 invoked by alias); 30 Sep 2016 23:09:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24485 invoked by uid 48); 30 Sep 2016 22:53:50 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/31093] Multicast PromiscuousTraffic Date: Fri, 30 Sep 2016 23:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02828.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31093 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539220-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 129481 invoked by alias); 30 Sep 2016 23:09:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24366 invoked by uid 48); 30 Sep 2016 22:53:48 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27726] LocalSocketImpl not implemented Date: Fri, 30 Sep 2016 23:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02827.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27726 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539183-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:45:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 94576 invoked by alias); 30 Sep 2016 23:03:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 7155 invoked by uid 48); 30 Sep 2016 22:52:20 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/1373] recursion stress test causes segmentation fault Date: Fri, 30 Sep 2016 23:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 2.96 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: aph at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02829.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D1373 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #14 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539231-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:48:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4920 invoked by alias); 30 Sep 2016 23:10:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25286 invoked by uid 48); 30 Sep 2016 22:54:02 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/17979] Binary Compatibility: could resolve String references while defining class Date: Fri, 30 Sep 2016 23:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02839.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17979 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539118-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:37:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 49305 invoked by alias); 30 Sep 2016 22:57:38 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1744 invoked by uid 48); 30 Sep 2016 22:51:16 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/9715] Not all required character encodings are supported Date: Fri, 30 Sep 2016 23:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02837.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D9715 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539214-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 123643 invoked by alias); 30 Sep 2016 23:08:15 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23511 invoked by uid 48); 30 Sep 2016 22:53:37 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/16229] [meta-bug] http, URL, and URLConnection issues Date: Fri, 30 Sep 2016 23:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02838.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D16229 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539230-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4173 invoked by alias); 30 Sep 2016 23:10:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25001 invoked by uid 48); 30 Sep 2016 22:53:56 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27741] Automate generation of gcj/javaprims.h Date: Fri, 30 Sep 2016 23:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02836.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27741 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539224-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2082 invoked by alias); 30 Sep 2016 23:10:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24959 invoked by uid 48); 30 Sep 2016 22:53:55 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/32947] Segfault when invoking a Java method which uses DOM parser Date: Fri, 30 Sep 2016 23:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02831.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D32947 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539154-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76129 invoked by alias); 30 Sep 2016 23:01:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3978 invoked by uid 48); 30 Sep 2016 22:52:06 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13603] [meta-bug] Java security model tracking PR Date: Fri, 30 Sep 2016 23:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02833.txt.bz2 Content-length: 461 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13603 Bug 13603 depends on bug 20047, which changed state. Bug 20047 Summary: runtime 'protected' access checks https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20047 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539228-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2840 invoked by alias); 30 Sep 2016 23:10:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25052 invoked by uid 48); 30 Sep 2016 22:53:56 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/20087] gij should support -verbose:jni Date: Fri, 30 Sep 2016 23:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02834.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20087 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539226-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2147 invoked by alias); 30 Sep 2016 23:10:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24732 invoked by uid 48); 30 Sep 2016 22:53:52 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/10920] Too many roots is reported for program, which shouldn't run out of memory Date: Fri, 30 Sep 2016 23:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02832.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D10920 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #9 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539225-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:38 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2105 invoked by alias); 30 Sep 2016 23:10:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24775 invoked by uid 48); 30 Sep 2016 22:53:52 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/50241] Building from the "current" branch - 178337 fails. Date: Fri, 30 Sep 2016 23:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02830.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D50241 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539229-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 3653 invoked by alias); 30 Sep 2016 23:10:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24645 invoked by uid 48); 30 Sep 2016 22:53:51 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/21524] Cancelling a TimerTask puts Timer binary heap in inconsistent state Date: Fri, 30 Sep 2016 23:10:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02835.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21524 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539159-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 77924 invoked by alias); 30 Sep 2016 23:01:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 3714 invoked by uid 48); 30 Sep 2016 22:52:00 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/16439] gcj generates wrong line number for static function breakpoint Date: Fri, 30 Sep 2016 23:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02841.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D16439 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539234-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:48:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 16667 invoked by alias); 30 Sep 2016 23:12:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25548 invoked by uid 48); 30 Sep 2016 22:54:07 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/24637] static and non-static declarations of missing type do not pass the verifier Date: Fri, 30 Sep 2016 23:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: thebohemian at gmx dot net X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02840.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24637 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539236-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24667 invoked by alias); 30 Sep 2016 23:13:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25789 invoked by uid 48); 30 Sep 2016 22:54:09 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/20699] gij -ms segfaults Date: Fri, 30 Sep 2016 23:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: Hans.Boehm at hp dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02842.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20699 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539233-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:48:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 6769 invoked by alias); 30 Sep 2016 23:11:23 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25423 invoked by uid 48); 30 Sep 2016 22:54:06 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/28009] libjava cannot be cross-built; X_CFLAGS includes /usr/include Date: Fri, 30 Sep 2016 23:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02844.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D28009 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #7 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539237-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:09 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24689 invoked by alias); 30 Sep 2016 23:13:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25941 invoked by uid 48); 30 Sep 2016 22:54:13 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/29477] [SJLJ EH] JNI broken with certain libs Date: Fri, 30 Sep 2016 23:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02843.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D29477 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539242-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:33 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27144 invoked by alias); 30 Sep 2016 23:14:15 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 26184 invoked by uid 48); 30 Sep 2016 22:54:17 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/51615] Condition Variable queue state corruption and infinite loop Date: Fri, 30 Sep 2016 23:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02849.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D51615 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539232-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:48:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 4960 invoked by alias); 30 Sep 2016 23:10:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25108 invoked by uid 48); 30 Sep 2016 22:53:57 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/24433] GIJ interprets null too eagerly Date: Fri, 30 Sep 2016 23:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02850.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24433 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539144-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:43:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 71009 invoked by alias); 30 Sep 2016 23:00:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 4128 invoked by uid 48); 30 Sep 2016 22:52:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/18266] GCJ: Using references drops finalizers causing all apps to eventually crash ( SIGSEGV in GC_register_finalizer_inner () ) Date: Fri, 30 Sep 2016 23:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02847.txt.bz2 Content-length: 514 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D18266 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #21 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539238-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:15 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25558 invoked by alias); 30 Sep 2016 23:13:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25874 invoked by uid 48); 30 Sep 2016 22:54:10 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/14687] [win32] Incorrect UTF-8 byte->String conversion Date: Fri, 30 Sep 2016 23:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02851.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D14687 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539239-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26274 invoked by alias); 30 Sep 2016 23:14:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25966 invoked by uid 48); 30 Sep 2016 22:54:13 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/18187] java.util.WeakHashMap$WeakEntrySet.next() throws NoSuchElementException during GC Date: Fri, 30 Sep 2016 23:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02845.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D18187 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539243-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27233 invoked by alias); 30 Sep 2016 23:14:15 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 26261 invoked by uid 48); 30 Sep 2016 22:54:18 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/24125] use dlmopen to avoid copying .so Date: Fri, 30 Sep 2016 23:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02848.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24125 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539240-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26296 invoked by alias); 30 Sep 2016 23:14:05 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 26017 invoked by uid 48); 30 Sep 2016 22:54:14 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/21221] [Win32] File.isHidden() method always returns 'true' in windows. Date: Fri, 30 Sep 2016 23:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02846.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21221 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539235-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23920 invoked by alias); 30 Sep 2016 23:13:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25667 invoked by uid 48); 30 Sep 2016 22:54:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/36762] outstanding issues from the classpath-0.97 merge Date: Fri, 30 Sep 2016 23:14:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.3.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02852.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D36762 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539244-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 38268 invoked by alias); 30 Sep 2016 23:16:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 26925 invoked by uid 48); 30 Sep 2016 22:54:23 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/50844] SimpleDateFormat too slow Date: Fri, 30 Sep 2016 23:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.5.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02854.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D50844 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539245-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39781 invoked by alias); 30 Sep 2016 23:16:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 26999 invoked by uid 48); 30 Sep 2016 22:54:24 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/28698] [gcj] libgcj-bc only used when building shared libs, not executables Date: Fri, 30 Sep 2016 23:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02853.txt.bz2 Content-length: 514 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D28698 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #11 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539250-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 43567 invoked by alias); 30 Sep 2016 23:17:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27163 invoked by uid 48); 30 Sep 2016 22:54:26 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/25916] java.text.NumberFormat.getCurrencyInstance throws IllegalArgumentExceptions even on standard locales Date: Fri, 30 Sep 2016 23:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02856.txt.bz2 Content-length: 514 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D25916 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #11 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539251-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 43784 invoked by alias); 30 Sep 2016 23:17:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27584 invoked by uid 48); 30 Sep 2016 22:54:30 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/17136] [mingw/cygwin] Conflicting JNI function declarations Date: Fri, 30 Sep 2016 23:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: patch X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02857.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17136 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539249-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42935 invoked by alias); 30 Sep 2016 23:17:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27427 invoked by uid 48); 30 Sep 2016 22:54:29 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13603] [meta-bug] Java security model tracking PR Date: Fri, 30 Sep 2016 23:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02855.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13603 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539247-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42289 invoked by alias); 30 Sep 2016 23:17:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27248 invoked by uid 48); 30 Sep 2016 22:54:27 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/28455] [ecj] defineclass.cc rewrites constant pool Date: Fri, 30 Sep 2016 23:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02858.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D28455 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539255-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 48748 invoked by alias); 30 Sep 2016 23:18:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27985 invoked by uid 48); 30 Sep 2016 22:54:32 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/31931] Mauve test "wonka" causes "java.lang.IllegalMonitorStateException: current thread not owner" error Date: Fri, 30 Sep 2016 23:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02861.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31931 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539253-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:15 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 46974 invoked by alias); 30 Sep 2016 23:18:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27952 invoked by uid 48); 30 Sep 2016 22:54:32 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/20395] GNU Crypto should be merged into libgcj Date: Fri, 30 Sep 2016 23:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02859.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20395 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539252-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 46279 invoked by alias); 30 Sep 2016 23:18:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27827 invoked by uid 48); 30 Sep 2016 22:54:31 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/39092] FAIL: Divide_1 -O3 output - source compiled test Date: Fri, 30 Sep 2016 23:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02860.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D39092 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539121-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:39:00 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 50578 invoked by alias); 30 Sep 2016 22:57:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 2568 invoked by uid 48); 30 Sep 2016 22:51:37 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/18148] gcj has wrong type for itable Date: Fri, 30 Sep 2016 23:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02863.txt.bz2 Content-length: 498 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D18148 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as the Java front-end has been removed from the trunk. >>From gcc-bugs-return-539259-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 53706 invoked by alias); 30 Sep 2016 23:19:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29304 invoked by uid 48); 30 Sep 2016 22:54:45 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/37871] testsuite/libjava.mauve is out of date / doesn't work with current mauve Date: Fri, 30 Sep 2016 23:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02865.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D37871 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539256-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 49490 invoked by alias); 30 Sep 2016 23:19:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 28018 invoked by uid 48); 30 Sep 2016 22:54:33 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27939] eclipse deadlock on startup Date: Fri, 30 Sep 2016 23:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02862.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27939 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539258-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 52916 invoked by alias); 30 Sep 2016 23:19:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29450 invoked by uid 48); 30 Sep 2016 22:54:46 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/50845] java.util.concurrent.ThreadPoolExecutor do not work with core thread=0 Date: Fri, 30 Sep 2016 23:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.5.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02864.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D50845 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539248-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:56 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42896 invoked by alias); 30 Sep 2016 23:17:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27327 invoked by uid 48); 30 Sep 2016 22:54:27 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/37019] libjava/configure uses "grep" and "egrep" and "grep -E" and "$EGGREP" but not ggrep -- sed also is trouble Date: Fri, 30 Sep 2016 23:19:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02866.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D37019 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #9 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539266-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:51:15 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 57582 invoked by alias); 30 Sep 2016 23:20:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30207 invoked by uid 48); 30 Sep 2016 22:54:53 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/48533] Installer fails on libjava component Date: Fri, 30 Sep 2016 23:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02872.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D48533 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539254-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 47954 invoked by alias); 30 Sep 2016 23:18:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27664 invoked by uid 48); 30 Sep 2016 22:54:30 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/20391] gcj-dbtool shows incorrect error message if JAR and DSO are switched on the command line Date: Fri, 30 Sep 2016 23:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02874.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20391 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539261-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 54964 invoked by alias); 30 Sep 2016 23:20:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29502 invoked by uid 48); 30 Sep 2016 22:54:47 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/38861] gcjwebplugin.cc doesn't compile against latest xulrunner 1.9.1 sdk Date: Fri, 30 Sep 2016 23:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: aph at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02867.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D38861 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539263-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 55863 invoked by alias); 30 Sep 2016 23:20:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29863 invoked by uid 48); 30 Sep 2016 22:54:50 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/19621] Network-performance issue in java.io.PrintStream Date: Fri, 30 Sep 2016 23:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.3.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02868.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D19621 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539246-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:49 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 40744 invoked by alias); 30 Sep 2016 23:17:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 27076 invoked by uid 48); 30 Sep 2016 22:54:25 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/26593] libgcjawt should be built even if the gtk peers aren't Date: Fri, 30 Sep 2016 23:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02871.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D26593 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539262-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:51:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 55841 invoked by alias); 30 Sep 2016 23:20:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29963 invoked by uid 48); 30 Sep 2016 22:54:51 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27983] FAIL: md5test output - gij test Date: Fri, 30 Sep 2016 23:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02869.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27983 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539264-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:51:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 56710 invoked by alias); 30 Sep 2016 23:20:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30021 invoked by uid 48); 30 Sep 2016 22:54:51 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/17033] [meta-bug] RMI problems Date: Fri, 30 Sep 2016 23:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02873.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D17033 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539265-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:51:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 56732 invoked by alias); 30 Sep 2016 23:20:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30127 invoked by uid 48); 30 Sep 2016 22:54:52 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/34574] wait() call hangs in _Jv_CondWait taking the monitor with it causing the application to hang Date: Fri, 30 Sep 2016 23:20:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02870.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D34574 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539269-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:51:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63821 invoked by alias); 30 Sep 2016 23:21:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30821 invoked by uid 48); 30 Sep 2016 22:54:59 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/44296] libjavamath not using just built libgmp Date: Fri, 30 Sep 2016 23:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02875.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D44296 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539268-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:51:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 61739 invoked by alias); 30 Sep 2016 23:21:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30618 invoked by uid 48); 30 Sep 2016 22:54:56 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/1222] Testing framework: enforce failure results correctness. Date: Fri, 30 Sep 2016 23:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02877.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D1222 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539270-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:51:39 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 63876 invoked by alias); 30 Sep 2016 23:21:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30735 invoked by uid 48); 30 Sep 2016 22:54:58 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/40479] libjava/gnu/gcj/util/natGCInfo.cc: bad call to sprintf Date: Fri, 30 Sep 2016 23:21:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02876.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D40479 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539223-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 1442 invoked by alias); 30 Sep 2016 23:09:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24941 invoked by uid 48); 30 Sep 2016 22:53:54 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/31728] --enable-java-maintainer-mode should pass JNI header options to classpath configure Date: Fri, 30 Sep 2016 23:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: fitzsim at redhat dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02882.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31728 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539271-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:51:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 64720 invoked by alias); 30 Sep 2016 23:22:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30911 invoked by uid 48); 30 Sep 2016 22:55:00 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/26624] make install too slow due to CNI header installation Date: Fri, 30 Sep 2016 23:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02878.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D26624 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539260-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 54659 invoked by alias); 30 Sep 2016 23:20:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 29768 invoked by uid 48); 30 Sep 2016 22:54:49 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/20684] FileChannelImpl.java fails to sync filedescriptor on force() invocation Date: Fri, 30 Sep 2016 23:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02879.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20684 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539273-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:52:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 65857 invoked by alias); 30 Sep 2016 23:22:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31580 invoked by uid 48); 30 Sep 2016 22:55:03 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/56353] libgcj should be listed on command line for libjava.jni/invocation/PR16923.c Date: Fri, 30 Sep 2016 23:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.8.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02884.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D56353 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539241-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:49:26 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 26336 invoked by alias); 30 Sep 2016 23:14:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 26049 invoked by uid 48); 30 Sep 2016 22:54:15 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/46082] libgcj fails to build in current 4.5 branch Date: Fri, 30 Sep 2016 23:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.5.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02885.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D46082 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539267-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:51:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 60856 invoked by alias); 30 Sep 2016 23:21:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30375 invoked by uid 48); 30 Sep 2016 22:54:54 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/6996] gij needs assertion-related command-line options Date: Fri, 30 Sep 2016 23:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02880.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D6996 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539272-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:51:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 65809 invoked by alias); 30 Sep 2016 23:22:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 30985 invoked by uid 48); 30 Sep 2016 22:55:01 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/2696] IO classes ignore InterruptedIOException Date: Fri, 30 Sep 2016 23:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02881.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D2696 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539274-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:52:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 65905 invoked by alias); 30 Sep 2016 23:22:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31497 invoked by uid 48); 30 Sep 2016 22:55:02 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/46263] without zip in system, gcc with --enable-languages=....,java bootstraps, but no libgcj in result Date: Fri, 30 Sep 2016 23:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.5.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02883.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D46263 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539280-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:52:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 74992 invoked by alias); 30 Sep 2016 23:23:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 32144 invoked by uid 48); 30 Sep 2016 22:55:07 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/15686] ^\ (SIG QUIT) should print stack trace Date: Fri, 30 Sep 2016 23:23:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02888.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D15686 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539281-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:52:48 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 75022 invoked by alias); 30 Sep 2016 23:23:55 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33112 invoked by uid 48); 30 Sep 2016 22:55:17 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27797] win32.cc: FormatMessage fails on win98 for network messages Date: Fri, 30 Sep 2016 23:23:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02889.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27797 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539277-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:52:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 70986 invoked by alias); 30 Sep 2016 23:23:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31979 invoked by uid 48); 30 Sep 2016 22:55:05 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/60282] memory leak - Double from string, _Jv_Balloc Date: Fri, 30 Sep 2016 23:23:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.8.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02886.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60282 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539221-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 130345 invoked by alias); 30 Sep 2016 23:09:33 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24554 invoked by uid 48); 30 Sep 2016 22:53:50 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/16902] GIJ: Garbage collection related failure with interpreter Date: Fri, 30 Sep 2016 23:23:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02887.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D16902 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539282-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:52:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 78256 invoked by alias); 30 Sep 2016 23:24:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33359 invoked by uid 48); 30 Sep 2016 22:55:21 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug preprocessor/20078] Gcc doesn't complain about non-benign macro definitions Date: Fri, 30 Sep 2016 23:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: preprocessor X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: accepts-invalid, diagnostic X-Bugzilla-Severity: minor X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 4.5.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02890.txt.bz2 Content-length: 489 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20078 Bug 20078 depends on bug 27797, which changed state. Bug 27797 Summary: win32.cc: FormatMessage fails on win98 for network messa= ges https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27797 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539276-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:52:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69976 invoked by alias); 30 Sep 2016 23:23:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31811 invoked by uid 48); 30 Sep 2016 22:55:05 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/36640] Build gcc-4.2.1 release fails when configured with --with-xmlj using Sun's ld Date: Fri, 30 Sep 2016 23:24:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02891.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D36640 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539278-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:52:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 71006 invoked by alias); 30 Sep 2016 23:23:13 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 32053 invoked by uid 48); 30 Sep 2016 22:55:06 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13671] [JNI] don't allow native code to be loaded by more than one class loader Date: Fri, 30 Sep 2016 23:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02898.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13671 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539286-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:08 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 82057 invoked by alias); 30 Sep 2016 23:25:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33556 invoked by uid 48); 30 Sep 2016 22:55:24 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/43279] Constructor java.lang.String(int[], int, int) missing Date: Fri, 30 Sep 2016 23:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.4.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02892.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D43279 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539285-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 82035 invoked by alias); 30 Sep 2016 23:25:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33728 invoked by uid 48); 30 Sep 2016 22:55:25 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/21891] must audit libgcj for required SecurityManager calls Date: Fri, 30 Sep 2016 23:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: gbenson at redhat dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02893.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21891 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539289-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:22 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 86007 invoked by alias); 30 Sep 2016 23:25:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34286 invoked by uid 48); 30 Sep 2016 22:55:28 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/31939] Command line arguments are byteswapped before being passed to the program runing in custom locale. Date: Fri, 30 Sep 2016 23:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02896.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31939 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539287-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 84089 invoked by alias); 30 Sep 2016 23:25:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33878 invoked by uid 48); 30 Sep 2016 22:55:25 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13603] [meta-bug] Java security model tracking PR Date: Fri, 30 Sep 2016 23:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: meta-bug X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02894.txt.bz2 Content-length: 480 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13603 Bug 13603 depends on bug 21891, which changed state. Bug 21891 Summary: must audit libgcj for required SecurityManager calls https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D21891 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539275-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:52:13 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 66865 invoked by alias); 30 Sep 2016 23:22:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31676 invoked by uid 48); 30 Sep 2016 22:55:04 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/56431] -lpthread should be added to -lgo Date: Fri, 30 Sep 2016 23:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 4.8.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02895.txt.bz2 Content-length: 506 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D56431 Bug 56431 depends on bug 56353, which changed state. Bug 56353 Summary: libgcj should be listed on command line for libjava.jni/= invocation/PR16923.c https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D56353 What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539211-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:46:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121866 invoked by alias); 30 Sep 2016 23:07:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23265 invoked by uid 48); 30 Sep 2016 22:53:33 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug java/12725] [meta-bug] gcj does not conform to Binary Compatibility specification Date: Fri, 30 Sep 2016 23:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: unknown X-Bugzilla-Keywords: ABI, meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: aph at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02899.txt.bz2 Content-length: 496 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12725 Bug 12725 depends on bug 12772, which changed state. Bug 12772 Summary: Need infrastructure to determine if a class in in same b= inary unit https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D12772 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX >>From gcc-bugs-return-539290-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:25 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 86061 invoked by alias); 30 Sep 2016 23:25:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34167 invoked by uid 48); 30 Sep 2016 22:55:27 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/1419] Add --enable-target-opt configure option. Date: Fri, 30 Sep 2016 23:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02897.txt.bz2 Content-length: 512 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D1419 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539301-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:54:14 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 99681 invoked by alias); 30 Sep 2016 23:26:58 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 36763 invoked by uid 48); 30 Sep 2016 22:55:48 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/23466] call to _dtoa is possibly incorrect Date: Fri, 30 Sep 2016 23:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02910.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D23466 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #8 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539294-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 89142 invoked by alias); 30 Sep 2016 23:26:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34955 invoked by uid 48); 30 Sep 2016 22:55:33 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/24403] --enable-java-awt=qt fails to build Date: Fri, 30 Sep 2016 23:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02902.txt.bz2 Content-length: 514 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D24403 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #19 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539257-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:50:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 50344 invoked by alias); 30 Sep 2016 23:19:16 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 28994 invoked by uid 48); 30 Sep 2016 22:54:44 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/45377] java-signal.h warning: declaration 'class java::lang::Throwable' does not declare anything Date: Fri, 30 Sep 2016 23:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.5.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02908.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D45377 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539279-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:52:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73992 invoked by alias); 30 Sep 2016 23:23:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 32226 invoked by uid 48); 30 Sep 2016 22:55:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/42276] When creating cross-gcj compiler, libjvm gets installed in system library paths Date: Fri, 30 Sep 2016 23:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.3.4 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02901.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D42276 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539300-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:54:04 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 95586 invoked by alias); 30 Sep 2016 23:26:48 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35672 invoked by uid 48); 30 Sep 2016 22:55:38 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/14164] [Win32] gcj fails to load resource bundle based on classloader Date: Fri, 30 Sep 2016 23:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02907.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D14164 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539295-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 89197 invoked by alias); 30 Sep 2016 23:26:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34814 invoked by uid 48); 30 Sep 2016 22:55:32 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/19612] gjdoc in libgcj Date: Fri, 30 Sep 2016 23:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02900.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D19612 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539227-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:47:50 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 2808 invoked by alias); 30 Sep 2016 23:10:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24860 invoked by uid 48); 30 Sep 2016 22:53:53 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/31891] Libjava configuration scripts out of sync for pkg-config tests Date: Fri, 30 Sep 2016 23:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02903.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D31891 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539296-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:55 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 91222 invoked by alias); 30 Sep 2016 23:26:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35501 invoked by uid 48); 30 Sep 2016 22:55:37 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/20223] libjava testsuite does not fully support multilibs Date: Fri, 30 Sep 2016 23:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02904.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20223 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539302-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:54:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 99782 invoked by alias); 30 Sep 2016 23:26:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35868 invoked by uid 48); 30 Sep 2016 22:55:40 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/7532] shutdown hooks not run upon abnormal termination Date: Fri, 30 Sep 2016 23:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02911.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D7532 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #10 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539298-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:58 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 91428 invoked by alias); 30 Sep 2016 23:26:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35214 invoked by uid 48); 30 Sep 2016 22:55:35 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/13672] [JNI] unload native libraries when class loader collected Date: Fri, 30 Sep 2016 23:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: tromey at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02905.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D13672 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #3 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539291-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 87168 invoked by alias); 30 Sep 2016 23:26:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34463 invoked by uid 48); 30 Sep 2016 22:55:29 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/46632] libjava: fortify catches memcpy overflow in parseAnnotationElement() for 64bit targets Date: Fri, 30 Sep 2016 23:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.5.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02909.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D46632 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539292-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 88185 invoked by alias); 30 Sep 2016 23:26:16 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34582 invoked by uid 48); 30 Sep 2016 22:55:30 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/28626] FAIL: Thread_Join execution - gij test Date: Fri, 30 Sep 2016 23:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02906.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D28626 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539284-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:06 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 81548 invoked by alias); 30 Sep 2016 23:25:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33415 invoked by uid 48); 30 Sep 2016 22:55:22 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/63768] double included .h file in libjava/.../natFileChannelPosix.cc Date: Fri, 30 Sep 2016 23:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.9.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: trivial X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02919.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D63768 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539297-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 91341 invoked by alias); 30 Sep 2016 23:26:37 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35402 invoked by uid 48); 30 Sep 2016 22:55:36 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27066] libgcj native socket code does not support IPv6 Date: Fri, 30 Sep 2016 23:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02915.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27066 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539304-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:54:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 103941 invoked by alias); 30 Sep 2016 23:27:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 36854 invoked by uid 48); 30 Sep 2016 22:55:50 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/32836] infinite loop (SIGSEGV) in java::lang::Throwable::fillInStackTrace Date: Fri, 30 Sep 2016 23:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02912.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D32836 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #7 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539293-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:37 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 88208 invoked by alias); 30 Sep 2016 23:26:16 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34751 invoked by uid 48); 30 Sep 2016 22:55:31 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27031] native Eclipse uses too much memory on startup, sometimes Date: Fri, 30 Sep 2016 23:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02918.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27031 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539288-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:53:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 85142 invoked by alias); 30 Sep 2016 23:25:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34053 invoked by uid 48); 30 Sep 2016 22:55:26 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/19512] Optional JNI error checking Date: Fri, 30 Sep 2016 23:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: mark at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02916.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D19512 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |WONTFIX --- Comment #5 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539299-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:54:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 94458 invoked by alias); 30 Sep 2016 23:26:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35560 invoked by uid 48); 30 Sep 2016 22:55:38 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/27219] bogus-looking code in natPlainSocketImplPosix.cc Date: Fri, 30 Sep 2016 23:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02917.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D27219 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539303-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:54:24 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 103811 invoked by alias); 30 Sep 2016 23:27:10 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 36663 invoked by uid 48); 30 Sep 2016 22:55:48 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/48709] java/net/natVMInetAddress.cc:42:52: error: declaration of C function 'int gethostname(char*, int)' conflicts Date: Fri, 30 Sep 2016 23:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.5.3 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02913.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D48709 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539283-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:52:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 80162 invoked by alias); 30 Sep 2016 23:24:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33467 invoked by uid 48); 30 Sep 2016 22:55:23 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/15680] CodeSource is null in ProtectionDomain Date: Fri, 30 Sep 2016 23:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 3.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02914.txt.bz2 Content-length: 513 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D15680 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Andrew Pinski --- Closing as won't fix as libgcj (and the java front-end) has been removed fr= om the trunk. >>From gcc-bugs-return-539305-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:58:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 14550 invoked by alias); 30 Sep 2016 23:49:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 31126 invoked by uid 48); 30 Sep 2016 23:15:01 -0000 From: "meissner at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77670] PowerPC64 Spec 2006 fails on 453.povray using -mcpu=power9 -mpower9-minmax Date: Fri, 30 Sep 2016 23:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: meissner at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: meissner at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02920.txt.bz2 Content-length: 520 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77670 Michael Meissner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #5 from Michael Meissner --- Fixed on the trunk in subversion id 240294 and on the gcc 6 branch in subversion id 240670. >>From gcc-bugs-return-539307-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:59:46 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 69381 invoked by alias); 30 Sep 2016 23:59:46 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 68744 invoked by uid 55); 30 Sep 2016 23:59:31 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77490] bit-not (~) on boolean should be warned about Date: Fri, 30 Sep 2016 23:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: enhancement X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02922.txt.bz2 Content-length: 493 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77490 --- Comment #5 from Jakub Jelinek --- Author: jakub Date: Fri Sep 30 23:43:49 2016 New Revision: 240688 URL: https://gcc.gnu.org/viewcvs?rev=3D240688&root=3Dgcc&view=3Drev Log: PR c/77490 * c-c++-common/Wbool-operation-1.c: Add -Wno-psabi to dg-options. Add dg-prune-output directive. Modified: trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/c-c++-common/Wbool-operation-1.c >>From gcc-bugs-return-539306-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Sep 30 23:59:27 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 68222 invoked by alias); 30 Sep 2016 23:59:27 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34886 invoked by uid 55); 30 Sep 2016 23:58:58 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/66643] Missing compilation error for formatted data transfer without format Date: Fri, 30 Sep 2016 23:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-09/txt/msg02921.txt.bz2 Content-length: 784 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D66643 --- Comment #7 from Jerry DeLisle --- Author: jvdelisle Date: Fri Sep 30 23:19:58 2016 New Revision: 240686 URL: https://gcc.gnu.org/viewcvs?rev=3D240686&root=3Dgcc&view=3Drev Log: 2016-09-30 Jerry DeLisle PR fortran/66643 * io.c (match_dt_unit): Peek check for missing format. * gfortran.fortran-torture/compile/arrayio.f90: Update test. * gfortran.fortran-torture/compile/write.f90: Update test. Modified: trunk/gcc/fortran/ChangeLog trunk/gcc/fortran/io.c trunk/gcc/testsuite/ChangeLog trunk/gcc/testsuite/gfortran.fortran-torture/compile/arrayio.f90 trunk/gcc/testsuite/gfortran.fortran-torture/compile/write.f90 >>From gcc-bugs-return-539308-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 00:00:42 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 71638 invoked by alias); 1 Oct 2016 00:00:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 70988 invoked by uid 48); 1 Oct 2016 00:00:20 -0000 From: "danglin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/60433] auto-fn24.C:7:8: ICE: in dbxout_type, at dbxout.c:2371 Date: Sat, 01 Oct 2016 00:00:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: danglin at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00000.txt.bz2 Content-length: 435 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60433 John David Anglin changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #4 from John David Anglin --- Fixed. >>From gcc-bugs-return-539309-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 00:47:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 41916 invoked by alias); 1 Oct 2016 00:47:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 41797 invoked by uid 55); 1 Oct 2016 00:47:19 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77380] ICE in gfc_check_dependency, at fortran/dependency.c:1255 Date: Sat, 01 Oct 2016 00:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: kargl at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00001.txt.bz2 Content-length: 739 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77380 --- Comment #5 from kargl at gcc dot gnu.org --- Author: kargl Date: Sat Oct 1 00:46:28 2016 New Revision: 240692 URL: https://gcc.gnu.org/viewcvs?rev=3D240692&root=3Dgcc&view=3Drev Log: 2016-09-30 Steven G. Kargl Backport from trunk PR fortran/77380 * dependency.c (gfc_check_dependency): Do not assert with -fcoarray=3Dlib. PR fortran/77380 * gfortran.dg/pr77380.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77380.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/dependency.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-539310-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 02:41:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 19097 invoked by alias); 1 Oct 2016 02:41:26 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 18975 invoked by uid 48); 1 Oct 2016 02:41:12 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/66643] Missing compilation error for formatted data transfer without format Date: Sat, 01 Oct 2016 02:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00002.txt.bz2 Content-length: 439 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D66643 Jerry DeLisle changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #8 from Jerry DeLisle --- Fixed on trunk >>From gcc-bugs-return-539311-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 04:30:45 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121992 invoked by alias); 1 Oct 2016 04:30:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121587 invoked by uid 55); 1 Oct 2016 04:30:27 -0000 From: "jonwilliams0000 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcj/20391] gcj-dbtool shows incorrect error message if JAR and DSO are switched on the command line Date: Sat, 01 Oct 2016 04:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcj X-Bugzilla-Version: 4.0.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jonwilliams0000 at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00003.txt.bz2 Content-length: 757 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20391 --- Comment #2 from jonwilliams0000 at gmail dot com --- unsubscribe On Fri, Sep 30, 2016 at 4:54 PM, pinskia at gcc dot gnu.org < gcc-bugzilla@gcc.gnu.org> wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D20391 > > Andrew Pinski changed: > > What |Removed |Added > ------------------------------------------------------------ > ---------------- > Status|UNCONFIRMED |RESOLVED > Resolution|--- |WONTFIX > > --- Comment #1 from Andrew Pinski --- > Closing as won't fix as libgcj (and the java front-end) has been removed > from > the trunk. >>From gcc-bugs-return-539312-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 04:59:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 70728 invoked by alias); 1 Oct 2016 04:59:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 70118 invoked by uid 55); 1 Oct 2016 04:58:44 -0000 From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77391] gfortran allows CHARACTER(LEN=:),PARAMETER:: STRING='constant' buts does not report it as an extension Date: Sat, 01 Oct 2016 04:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00004.txt.bz2 Content-length: 787 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77391 --- Comment #9 from kargl at gcc dot gnu.org --- Author: kargl Date: Sat Oct 1 04:58:02 2016 New Revision: 240693 URL: https://gcc.gnu.org/viewcvs?rev=3D240693&root=3Dgcc&view=3Drev Log: 2016-09-30 Steven G. Kargl Backport from trunk PR fortran/77391 * resolve.c (deferred_requirements): New function to check F2008:C4= 02. (resolve_fl_variable,resolve_fl_parameter): Use it. PR fortran/77391 * gfortran.dg/pr77391.f90: New test. Added: branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr77391.f90 Modified: branches/gcc-5-branch/gcc/fortran/ChangeLog branches/gcc-5-branch/gcc/fortran/resolve.c branches/gcc-5-branch/gcc/testsuite/ChangeLog >>From gcc-bugs-return-539313-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 05:53:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 45944 invoked by alias); 1 Oct 2016 05:53:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 45840 invoked by uid 48); 1 Oct 2016 05:53:28 -0000 From: "su at cs dot ucdavis.edu" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77812] New: incorrectly rejects valid C++ code that uses enum in template instantiation Date: Sat, 01 Oct 2016 05:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: su at cs dot ucdavis.edu X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00005.txt.bz2 Content-length: 1586 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77812 Bug ID: 77812 Summary: incorrectly rejects valid C++ code that uses enum in template instantiation Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: su at cs dot ucdavis.edu Target Milestone: --- It affects 4.7.x and later, and is a regression from 4.6.x.=20 Both Clang and ICC also accept the code.=20 The code is accepted if a struct is used for template instantiation instead (see small2.cpp).=20 $ g++-trunk -v Using built-in specs. COLLECT_GCC=3Dg++-trunk COLLECT_LTO_WRAPPER=3D/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/= 7.0.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: ../gcc-source-trunk/configure --enable-languages=3Dc,c++,l= to --prefix=3D/usr/local/gcc-trunk --disable-bootstrap Thread model: posix gcc version 7.0.0 20160930 (experimental) [trunk revision 240688] (GCC)=20 $=20 $ g++-4.6 -c small1.cpp $ clang++-3.8 -c small1.cpp $=20 $ g++-trunk -c small1.cpp small1.cpp: In function =E2=80=98void f()=E2=80=99: small1.cpp:5:12: error: use of enum =E2=80=98f=E2=80=99 without previous de= claration f < enum f > (); ^ $=20 $ g++-trunk -c small2.cpp $=20 $ cat small1.cpp enum f { R, G, B };=20 template < typename > void f () { f < enum f > ();=20 } $=20 $ cat small2.cpp struct f {};=20 template < typename > void f () { f < struct f > ();=20 } $ >>From gcc-bugs-return-539314-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 06:04:31 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 57968 invoked by alias); 1 Oct 2016 06:04:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 57583 invoked by uid 48); 1 Oct 2016 06:04:17 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77812] [5/6/7 Regression] incorrectly rejects valid C++ code that uses enum in template instantiation Date: Sat, 01 Oct 2016 06:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_known_to_work keywords cf_reconfirmed_on everconfirmed short_desc target_milestone cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00006.txt.bz2 Content-length: 1004 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77812 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Known to work| |4.6.0 Keywords| |rejects-valid Last reconfirmed| |2016-10-01 Ever confirmed|0 |1 Summary|incorrectly rejects valid |[5/6/7 Regression] |C++ code that uses enum in |incorrectly rejects valid |template instantiation |C++ code that uses enum in | |template instantiation Target Milestone|--- |5.5 Known to fail| |4.7.0, 7.0 --- Comment #1 from Andrew Pinski --- Confirmed. >>From gcc-bugs-return-539315-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 08:29:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 92478 invoked by alias); 1 Oct 2016 08:29:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 92136 invoked by uid 48); 1 Oct 2016 08:29:05 -0000 From: "ubizjak at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77756] __get_cpuid() returns wrong values for level 7 (extended features) Date: Sat, 01 Oct 2016 08:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ubizjak at gmail dot com X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ubizjak at gmail dot com X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00007.txt.bz2 Content-length: 1000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77756 --- Comment #13 from Uro=C5=A1 Bizjak --- (In reply to Yale Zhang from comment #12) > What's the purpose of subleaf? Is it to distinguish the capabilities of > different cores in a heterogeneous chip (e.g. ARM big-little)? No, it is just a value in ECX that in some cases specifies what information= to return. > Then I would be fine with making this an extra parameter to __get_cpuid()= .=20 cpuid.h is exported public header and we would break backward compatibility= in this case. > Microsoft has a __cpuidex() function that also takes subleaf, but for the > regular __cpuid(), the subleaf default to 0. Should __get_cpuid() default= to > 0 as well? I think there is no need for default 0. Rhere are other cases (e.g. level 1= 3) that uses other subleafs to get capabilites info. So, there is no rule, and defaulting to 0 would be confusing. One should use __get_cpuid_count when subleaf is to be specified. >>From gcc-bugs-return-539316-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 09:39:44 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 98526 invoked by alias); 1 Oct 2016 09:39:44 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 98419 invoked by uid 48); 1 Oct 2016 09:39:30 -0000 From: "glisse at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcc/77813] New: __TMC_END__ - __TMC_LIST__ == 0 Date: Sat, 01 Oct 2016 09:39:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcc X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: glisse at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcctarget Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00008.txt.bz2 Content-length: 1150 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77813 Bug ID: 77813 Summary: __TMC_END__ - __TMC_LIST__ =3D=3D 0 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libgcc Assignee: unassigned at gcc dot gnu.org Reporter: glisse at gcc dot gnu.org Target Milestone: --- Target: powerpc64le-unknown-linux-gnu In crtstuff.c, function deregister_tm_clones contains this code: if (__TMC_END__ - __TMC_LIST__ =3D=3D 0) this currently gives, in the original dump if (((unsigned long) &__TMC_END__ + 7) - (unsigned long) &__TMC_LIST__ <= =3D 14) I was testing an optimization that allows us to get instead if ((long int) &__TMC_END__ =3D=3D (long int) &__TMC_LIST__) During forwprop, the match.pd pattern (cmp (convert1?@2 addr@0) (convert2? addr@1)) applies and we fold this to 0. In the libitm testsuite, most runti= me tests then segfault. It seems that either the optimization to compare addresses is too eager, or= the code in crtstuff.c doesn't mark the variables appropriately... >>From gcc-bugs-return-539317-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 09:42:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 101252 invoked by alias); 1 Oct 2016 09:42:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 101122 invoked by uid 48); 1 Oct 2016 09:42:07 -0000 From: "glisse at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcc/77813] __TMC_END__ - __TMC_LIST__ == 0 Date: Sat, 01 Oct 2016 09:42:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcc X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: glisse at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00009.txt.bz2 Content-length: 258 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77813 --- Comment #1 from Marc Glisse --- Created attachment 39728 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39728&action=3Dedit optimization patch that shows the issue >>From gcc-bugs-return-539318-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 09:54:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 47456 invoked by alias); 1 Oct 2016 09:54:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 47345 invoked by uid 48); 1 Oct 2016 09:54:38 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77596] [F03] procedure pointer with implicit interface in type pointing to a function can be 'called' Date: Sat, 01 Oct 2016 09:54:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00010.txt.bz2 Content-length: 520 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77596 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |WAITING Last reconfirmed| |2016-10-01 Ever confirmed|0 |1 --- Comment #1 from Dominique d'Humieres --- Duplicate of/related to pr24878? >>From gcc-bugs-return-539319-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 09:57:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 50516 invoked by alias); 1 Oct 2016 09:57:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 50369 invoked by uid 48); 1 Oct 2016 09:56:51 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/71767] Endless stream of warnings when using GCC with -Wa,-q and Clang Integrated Assembler Date: Sat, 01 Oct 2016 09:57:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: assemble-failure X-Bugzilla-Severity: minor X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: iains at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00011.txt.bz2 Content-length: 233 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D71767 --- Comment #28 from Dominique d'Humieres --- Two other tests needing to replace 'L' with '\[lL\]': gcc.dg/const-uniq-1.c gcc.target/i386/pr70799-1.c >>From gcc-bugs-return-539320-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 10:02:07 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 55119 invoked by alias); 1 Oct 2016 10:02:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 54943 invoked by uid 48); 1 Oct 2016 10:01:53 -0000 From: "vehre at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/77663] libgfortran/caf/single.c: four minor problems Date: Sat, 01 Oct 2016 10:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: vehre at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc assigned_to everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00012.txt.bz2 Content-length: 547 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77663 vehre at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2016-10-01 CC| |vehre at gcc dot gnu.org Assignee|unassigned at gcc dot gnu.org |vehre at gcc dot gn= u.org Ever confirmed|0 |1 >>From gcc-bugs-return-539321-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 10:46:40 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 118091 invoked by alias); 1 Oct 2016 10:46:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 117946 invoked by uid 48); 1 Oct 2016 10:46:27 -0000 From: "vehre at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/77663] libgfortran/caf/single.c: four minor problems Date: Sat, 01 Oct 2016 10:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: vehre at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00013.txt.bz2 Content-length: 687 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77663 --- Comment #1 from vehre at gcc dot gnu.org --- Hi David, what SW did you use to find this? #1, #2, #4 are covered by a patch I am doing at the moment. I believe that the report for #3 is at least misleading. Because when the associated memory is NULL the token of the allocatable component has to be unset, too. I.e. it is invalid for allocatable components to be NULL while = the associated token is set. Nevertheless did the report show a logic error. The token never would have been stored at the appropriate location, but would be lost. The patch to come fixes this, too (hopefully). Thanks for the report. Regards, Andre >>From gcc-bugs-return-539322-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 11:38:18 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 54675 invoked by alias); 1 Oct 2016 11:38:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 54581 invoked by uid 48); 1 Oct 2016 11:38:05 -0000 From: "vehre at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/77663] libgfortran/caf/single.c: three minor problems and a lost token Date: Sat, 01 Oct 2016 11:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: vehre at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00014.txt.bz2 Content-length: 423 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77663 vehre at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |WAITING --- Comment #2 from vehre at gcc dot gnu.org --- Patch available at: https://gcc.gnu.org/ml/fortran/2016-10/msg00000.html Waiting for review. >>From gcc-bugs-return-539323-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 13:38:05 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 94131 invoked by alias); 1 Oct 2016 13:38:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 94027 invoked by uid 48); 1 Oct 2016 13:37:51 -0000 From: "tprince at computer dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/77814] New: build fails trying to build eh_arm Date: Sat, 01 Oct 2016 13:38:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: tprince at computer dot org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00015.txt.bz2 Content-length: 1105 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77814 Bug ID: 77814 Summary: build fails trying to build eh_arm Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: tprince at computer dot org Target Milestone: --- Created attachment 39729 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39729&action=3Dedit log from trunk stage 1 bootstrap of libstdc++ Initial bootstrap tries (and fails) to build eh_arm. /cygdrive/c/users/tim/tim/tim/src/gnu/gcc2/libstdc++-v3/include/bits/std_ab= s.h: In function =E2=80=98long long int std::abs(long long int)=E2=80=99: /cygdrive/c/users/tim/tim/tim/src/gnu/gcc2/libstdc++-v3/include/bits/std_ab= s.h:5 9:3: error: conflicting declaration of C function =E2=80=98long long int st= d::abs(long l ong int)=E2=80=99 abs(long long __x) { return __builtin_llabs (__x); } ^~~ full log attached Guessing that the build shouldn't require this compilation. >>From gcc-bugs-return-539324-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 13:41:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121045 invoked by alias); 1 Oct 2016 13:41:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 116385 invoked by uid 55); 1 Oct 2016 13:41:40 -0000 From: "n8tm at aol dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77593] [7 Regression] Bootstrap failure with configure-target-libgfortran " cygwin64 Windows 10 anniversary Date: Sat, 01 Oct 2016 13:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: n8tm at aol dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00016.txt.bz2 Content-length: 1528 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77593 --- Comment #11 from n8tm at aol dot com --- I returned to attempts to build trunk on win8.1. Initial bootstrap of c++ is failing, attempting (unsuccessfully!) to build eh_arm. I filed pr 77814 On 9/25/2016 3:03 PM, jvdelisle at gcc dot gnu.org wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77593 > > --- Comment #9 from Jerry DeLisle --- > (In reply to tprince from comment #8) >> I show my configure parameters in my test results posts. At some time in >> the past, each of them has been important. I don't know if the paramete= rs >> quoted by cygwin release pertain to cross compiling. As the parameters I >> use have been successful again last week on win8.1 I don't see how they >> might pertain to the f951 bootstrap failure on win10. When I get back to >> the win10 box I will compare with disable bootstrap. > Tim, using your parameters I was able to build. I proceeded to do a regr= ession > hunt and confirmed that it was at the DTIO patch on 8/31/2016. > > In this patch we added two new functions to libgfortran and set the symbol > versioning. I modified the library by inserting a printf("ping\n") in the= code > path for a simple program. > > print *, "hello" > end > > The ping does not show which means the wrong library is being used at run= time. > > I am trying various config and bath settings to see if I can sort it out.= No > luck so far. > >>From gcc-bugs-return-539325-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 14:01:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 42799 invoked by alias); 1 Oct 2016 14:01:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 42392 invoked by uid 55); 1 Oct 2016 14:01:29 -0000 From: "vehre at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/77663] libgfortran/caf/single.c: three minor problems and a lost token Date: Sat, 01 Oct 2016 14:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: vehre at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00017.txt.bz2 Content-length: 1033 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77663 --- Comment #3 from vehre at gcc dot gnu.org --- Author: vehre Date: Sat Oct 1 14:00:57 2016 New Revision: 240695 URL: https://gcc.gnu.org/viewcvs?rev=3D240695&root=3Dgcc&view=3Drev Log: gcc/testsuite/ChangeLog: 2016-10-01 Andre Vehreschild PR fortran/77663 * gfortran.dg/coarray_send_by_ref_1.f08: New test. libgfortran/ChangeLog: 2016-10-01 Andre Vehreschild PR fortran/77663 * caf/single.c (caf_internal_error): Fix not terminating va-list. (_gfortran_caf_register): Free memory also when other allocs failed. (_gfortran_caf_get_by_ref): Fixed style. (send_by_ref): Token is now stored at the correct position preventi= ng inaccessible tokens, memory loss and possibly crashes. Added: trunk/gcc/testsuite/gfortran.dg/coarray_send_by_ref_1.f08 Modified: trunk/gcc/testsuite/ChangeLog trunk/libgfortran/ChangeLog trunk/libgfortran/caf/single.c >>From gcc-bugs-return-539326-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 14:35:12 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 27156 invoked by alias); 1 Oct 2016 14:35:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 26856 invoked by uid 55); 1 Oct 2016 14:34:56 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77798] [7 Regression] 465.tonto ICE with trunk with -O2 Date: Sat, 01 Oct 2016 14:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00018.txt.bz2 Content-length: 807 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77798 --- Comment #5 from Richard Biener --- Author: rguenth Date: Sat Oct 1 14:34:18 2016 New Revision: 240696 URL: https://gcc.gnu.org/viewcvs?rev=3D240696&root=3Dgcc&view=3Drev Log: 2016-10-01 Richard Biener PR middle-end/77798 * genmatch.c (get_operand_type): Add operand position arg and handle COND_EXPR comparison operand with fixed boolean_type_nod= e. (expr::gen_transform): Adjust. (dt_simplify::gen_1): Likewise. * gfortran.fortran-torture/compile/pr77798.f90: New testcase. Added: trunk/gcc/testsuite/gfortran.fortran-torture/compile/pr77798.f90 Modified: trunk/gcc/ChangeLog trunk/gcc/genmatch.c trunk/gcc/testsuite/ChangeLog >>From gcc-bugs-return-539327-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 15:41:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 80698 invoked by alias); 1 Oct 2016 15:41:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 80519 invoked by uid 48); 1 Oct 2016 15:41:15 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77390] generates INDIRECT_REF of void type Date: Sat, 01 Oct 2016 15:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00019.txt.bz2 Content-length: 649 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77390 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |WAITING Last reconfirmed| |2016-10-01 CC| |pault at gcc dot gnu.org Ever confirmed|0 |1 --- Comment #1 from Dominique d'Humieres --- Paul, How is this related to the problem(s) you have with gfortran.dg/submodule_6.f08? >>From gcc-bugs-return-539328-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 15:43:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 83683 invoked by alias); 1 Oct 2016 15:43:43 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 83549 invoked by uid 48); 1 Oct 2016 15:43:30 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/77473] New PRNG causes regressions on DragonFly BSD Date: Sat, 01 Oct 2016 15:43:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00020.txt.bz2 Content-length: 599 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77473 Dominique d'Humieres changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |WAITING Last reconfirmed| |2016-10-01 CC| |jb at gcc dot gnu.org Ever confirmed|0 |1 --- Comment #1 from Dominique d'Humieres --- Janne, Will you have a look at this PR? >>From gcc-bugs-return-539329-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 16:22:32 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 61218 invoked by alias); 1 Oct 2016 16:22:31 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 61072 invoked by uid 48); 1 Oct 2016 16:22:18 -0000 From: "jb at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/77473] New PRNG causes regressions on DragonFly BSD Date: Sat, 01 Oct 2016 16:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jb at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00021.txt.bz2 Content-length: 3104 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77473 --- Comment #2 from Janne Blomqvist --- (In reply to Rimvydas (RJ) from comment #0) > Created attachment 39550 [details] > changes to tests >=20 > Native configuration is x86_64-unknown-dragonfly4.7 >=20 > r239356 Replace KISS PRNG with xorshift1024* using per-thread state > caused all execution failures for: > FAIL: gfortran.dg/random_7.f90 -O0 execution test > FAIL: gfortran.fortran-torture/execute/random_1.f90 execution, -O0 >=20 > r239611 Always initialize PRNG using random data from the OS > added: > FAIL: gfortran.dg/random_4.f90 -O0 execution test >=20 > Adding prints for seed and check arrays before comparison shows that they > differ: > ./random_4.x > seed 42 42 42 42 42=20=20= =20=20=20=20=20=20=20 > 42 42 42 42 42 42 4= 2=20=20 > 42 42 42 42 42 42 4= 2=20=20 > 42 42 42 42 42 42 4= 2=20=20 > 42 42 42 42 42 42 0 > check -2110421118 -1194805269 1415242221 54534463 1225148040=20=20 > 821055102 -1530405947 -1820502322 2146652427 -147906310 -1761641582 > -1622508139 2006260459 151764285 -1191598697 -239551325 -1064082961=20 > 2093503284 1165045647 -1200385605 -867398903 -830236747 846618033=20= =20 > 706688103 1954790377 859476278 -1696051309 -1413451556 -1779817981=20 > 1071423788 1556108935 1966576166 0 >=20 > If -pthread is explicitly used for those tests (attachment) only failure > left is gfortran.dg/graphite/pr68279.f90 pr71348 > (execute/random_1.f90 still fails in testsuite - doesn't take -pthread fl= ag) >=20 > Should libgfortran.so always bring in libpthread.so or new PRNG could be > changed to have deterministic behavior with or without -pthread on Dragon= Fly? I don't know about DragonflyBSD, but at least on Linux the idea is that if a thread library is not linked in, the various thread functions are stubbed o= ut, allowing us to support both single-threaded usage without the overhead of mutexes etc. and multi-threaded usage without needing multiple library buil= ds. This relies on weak symbols and such fancy linker tricks. If the Dragonfly linker doesn't have such features, I suspect you need to either always link= in libpthread, or have separate builds for single-threaded and multi-threaded usage? But this is not something new introduced with the new random algorithm, it = has been used since the beginning (which is one reason we use the __ghthread_* functions instead of the pthreads API directly). What hasn't been used in libgfortran before is the usage of __gthread_active_p() to check whether threads are linked in or not at runtime. But again, this is not something n= ew, it has been used at least in libstdc++ before. So, do all the libstdc++ tests pass on Dragonfly? If not, perhaps there is something wrong with __ghtread_active_p() on DragonflyBSD? >>From gcc-bugs-return-539330-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 16:51:36 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 99988 invoked by alias); 1 Oct 2016 16:51:36 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 99796 invoked by uid 48); 1 Oct 2016 16:51:12 -0000 From: "rimvydas.jas at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/77473] New PRNG causes regressions on DragonFly BSD Date: Sat, 01 Oct 2016 16:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rimvydas.jas at gmail dot com X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00022.txt.bz2 Content-length: 418 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77473 --- Comment #3 from Rimvydas (RJ) --- Created attachment 39730 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D39730&action=3Dedit possible variant to use libc internal status variable On DragonFly libpthread always brings libc so __isthreaded is available. __isthreaded is a special variable that is set by libpthread lib. >>From gcc-bugs-return-539331-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 16:58:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 118989 invoked by alias); 1 Oct 2016 16:58:20 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 118870 invoked by uid 48); 1 Oct 2016 16:58:08 -0000 From: "rimvydas.jas at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/77473] New PRNG causes regressions on DragonFly BSD Date: Sat, 01 Oct 2016 16:58:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rimvydas.jas at gmail dot com X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00023.txt.bz2 Content-length: 800 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77473 --- Comment #4 from Rimvydas (RJ) --- Yes it is an issue in gthr-posix.h how presence of pthread is checked on DragonFly. libc contains pthread_cancel() stub and it is strange why we detected failu= res only now on testsuite after new PRNG in libgfortran. Currently we checking if we could exclude pthread_cancel symbol from libc without breaking to much stuff (this would automatically fix previous gcc p= orts and base compilers on DragonFly 4.7+). Other variants are to use pthread_create() (as in BIONIC case) or special variable from libc (z2.diff), however that depends on what __gthread_active= _p() should mean: 1) the pthread library is present and initialized 2) present but might not be initialized yet >>From gcc-bugs-return-539332-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 20:50:41 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 8034 invoked by alias); 1 Oct 2016 20:50:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 7908 invoked by uid 48); 1 Oct 2016 20:50:27 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcc/77813] __TMC_END__ - __TMC_LIST__ == 0 Date: Sat, 01 Oct 2016 20:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcc X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_gcctarget bug_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00024.txt.bz2 Content-length: 848 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77813 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Target|powerpc64le-unknown-linux-g | |nu | Status|UNCONFIRMED |NEW Last reconfirmed| |2016-10-01 Ever confirmed|0 |1 --- Comment #2 from Andrew Pinski --- What the code in crtstuff should do is something like: char *end =3D __TMC_END__ ; char *start =3D __TMC_LIST__ ; asm("" :"+r"(end)); asm("" :"+r"(start)); ... if (end - start =3D=3D 0) .... We have recommended this already in bugzilla for other cases like the above too. >>From gcc-bugs-return-539333-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 20:53:47 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 9925 invoked by alias); 1 Oct 2016 20:53:47 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 9818 invoked by uid 55); 1 Oct 2016 20:53:34 -0000 From: "paul.richard.thomas at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77390] generates INDIRECT_REF of void type Date: Sat, 01 Oct 2016 20:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 6.2.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: paul.richard.thomas at gmail dot com X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00025.txt.bz2 Content-length: 1338 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77390 --- Comment #2 from paul.richard.thomas at gmail dot com --- Dear Dominique, I don't think that the problems are connected. I am having a problem with a vtable that gets generated in a submodule and so has an address different from that in the module itself. I cannot come back to any of this for the next two weeks. I am taking my wife to Thailand as a birthday present :-) Cheers Paul On 1 October 2016 at 17:41, dominiq at lps dot ens.fr wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77390 > > Dominique d'Humieres changed: > > What |Removed |Added > -------------------------------------------------------------------------= --- > Status|UNCONFIRMED |WAITING > Last reconfirmed| |2016-10-01 > CC| |pault at gcc dot gnu.org > Ever confirmed|0 |1 > > --- Comment #1 from Dominique d'Humieres --- > Paul, > > How is this related to the problem(s) you have with > gfortran.dg/submodule_6.f08? > > -- > You are receiving this mail because: > You are on the CC list for the bug. >>From gcc-bugs-return-539334-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 21:04:21 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 56658 invoked by alias); 1 Oct 2016 21:04:21 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 56526 invoked by uid 48); 1 Oct 2016 21:04:08 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/77808] [7 Regression] ICE in duplicate_ssa_name_ptr_info, at tree-ssanames.c:630 starting with r240439 Date: Sat, 01 Oct 2016 21:04:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: ice-on-valid-code, patch X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status bug_file_loc cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00026.txt.bz2 Content-length: 664 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77808 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch Status|UNCONFIRMED |NEW URL| |https://gcc.gnu.org/ml/gcc- | |patches/2016-10/msg00000.ht | |ml Last reconfirmed| |2016-10-01 Ever confirmed|0 |1 >>From gcc-bugs-return-539335-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 21:36:51 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 89007 invoked by alias); 1 Oct 2016 21:36:51 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 88913 invoked by uid 48); 1 Oct 2016 21:36:38 -0000 From: "jeff.mirwaisi at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77815] New: access to destructor via decltype-specifier Date: Sat, 01 Oct 2016 21:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jeff.mirwaisi at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00027.txt.bz2 Content-length: 590 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77815 Bug ID: 77815 Summary: access to destructor via decltype-specifier Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: jeff.mirwaisi at gmail dot com Target Milestone: --- Invocation of the destructor or pseudo destructor via a decltype-specifier results in an error: T t; t.~decltype(t)(); error: expected identifier before 'decltype' >>From gcc-bugs-return-539336-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 21:40:11 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 96507 invoked by alias); 1 Oct 2016 21:40:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 96290 invoked by uid 48); 1 Oct 2016 21:39:58 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/77800] Undefined ref to host_detect_local_cpu on netbsd/arm Date: Sat, 01 Oct 2016 21:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 5.4.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00028.txt.bz2 Content-length: 350 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77800 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |build Severity|minor |normal >>From gcc-bugs-return-539337-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 21:40:28 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 99949 invoked by alias); 1 Oct 2016 21:40:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 97268 invoked by uid 48); 1 Oct 2016 21:40:22 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/77803] [7 Regression] Bogus implicit-fallthrough warning Date: Sat, 01 Oct 2016 21:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords version target_milestone short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00029.txt.bz2 Content-length: 602 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77803 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |diagnostic Version|unknown |7.0 Target Milestone|--- |7.0 Summary|Bogus implicit-fallthrough |[7 Regression] Bogus |warning |implicit-fallthrough | |warning >>From gcc-bugs-return-539338-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 22:55:52 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 50781 invoked by alias); 1 Oct 2016 22:55:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 50684 invoked by uid 48); 1 Oct 2016 22:55:39 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/59650] Inefficient vector assignment code Date: Sat, 01 Oct 2016 22:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.8.2 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00030.txt.bz2 Content-length: 207 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D59650 --- Comment #1 from Andrew Pinski --- I think this has been improved already but I don't have a build for x86 to = test on. >>From gcc-bugs-return-539339-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Oct 01 23:01:08 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 58089 invoked by alias); 1 Oct 2016 23:01:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 56044 invoked by uid 48); 1 Oct 2016 23:00:56 -0000 From: "dje at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77780] Go front-end ignores NO_DOLLAR_IN_LABEL Date: Sat, 01 Oct 2016 23:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: assemble-failure X-Bugzilla-Severity: normal X-Bugzilla-Who: dje at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00031.txt.bz2 Content-length: 549 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77780 David Edelsohn changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |assemble-failure --- Comment #2 from David Edelsohn --- Is it possible to catch the creation of the decl in go-gcc.cc Gcc_backend::implicit_variable() and ::immutable_struct_set_init() to change the string? Or all calls to build_decl()? >>From gcc-bugs-return-539340-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 00:44:23 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 21903 invoked by alias); 2 Oct 2016 00:44:22 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 21802 invoked by uid 48); 2 Oct 2016 00:44:10 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77816] New: [7 Regression] lots of fortran tests fail on aarch64-linux-gnu Date: Sun, 02 Oct 2016 00:44:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00032.txt.bz2 Content-length: 886 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77816 Bug ID: 77816 Summary: [7 Regression] lots of fortran tests fail on aarch64-linux-gnu Product: gcc Version: 6.1.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end Assignee: unassigned at gcc dot gnu.org Reporter: pinskia at gcc dot gnu.org Target Milestone: --- See https://gcc.gnu.org/ml/gcc-testresults/2016-09/msg02894.html . (this is revision 240650). They used to work: https://gcc.gnu.org/ml/gcc-testresults/2016-09/msg02849.html (revision 240639). At line 6 of file /home/apinski/src/local/gcc/gcc/testsuite/gfortran.dg/adjustl_1.f90 Internal Error: get_unit(): Bad internal unit KIND Error termination. Backtrace: FAIL: gfortran.dg/adjustl_1.f90 -O execution test >>From gcc-bugs-return-539341-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 00:46:01 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 23646 invoked by alias); 2 Oct 2016 00:46:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 23538 invoked by uid 48); 2 Oct 2016 00:45:48 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77816] [7 Regression] lots of fortran tests fail on aarch64-linux-gnu Date: Sun, 02 Oct 2016 00:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cf_gcctarget version target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00033.txt.bz2 Content-length: 900 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77816 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |wrong-code Target| |aarch64-linux-gnu Version|6.1.0 |7.0 Target Milestone|--- |7.0 --- Comment #1 from Andrew Pinski --- Note I also built gcc with these options too (not just with --with-cpu=3Dthunderx+lse): Configured with: ../gcc/configure --disable-libsanitizer --prefix=3D/home/apinski/src/local/objdir/../tools --enable-languages=3Dc,c++,fortran,go --disable-werror --with-sysroot=3D/ --enable-plugins --enable-gnu-indirect-function --with-pkgver And get the same failures. >>From gcc-bugs-return-539342-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 00:46:57 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 24877 invoked by alias); 2 Oct 2016 00:46:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 24728 invoked by uid 48); 2 Oct 2016 00:46:44 -0000 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77816] [7 Regression] lots of fortran tests fail on aarch64-linux-gnu Date: Sun, 02 Oct 2016 00:46:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00034.txt.bz2 Content-length: 227 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77816 --- Comment #2 from Andrew Pinski --- It looks like it was working with r240644 . https://gcc.gnu.org/ml/gcc-testresults/2016-09/msg02880.html >>From gcc-bugs-return-539343-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 04:06:35 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 39865 invoked by alias); 2 Oct 2016 04:06:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 39641 invoked by uid 48); 2 Oct 2016 04:06:21 -0000 From: "ian at airs dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77780] Go front-end ignores NO_DOLLAR_IN_LABEL Date: Sun, 02 Oct 2016 04:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: assemble-failure X-Bugzilla-Severity: normal X-Bugzilla-Who: ian at airs dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00035.txt.bz2 Content-length: 259 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77780 --- Comment #3 from Ian Lance Taylor --- My inclination would be to overhaul all the identifiers in the gofrontend to rationalize them from the rather random collection they are now. >>From gcc-bugs-return-539344-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 07:51:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 1774 invoked by alias); 2 Oct 2016 07:51:07 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 1375 invoked by uid 48); 2 Oct 2016 07:50:50 -0000 From: "schwab@linux-m68k.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/77816] [7 Regression] lots of fortran tests fail on aarch64-linux-gnu Date: Sun, 02 Oct 2016 07:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: schwab@linux-m68k.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00036.txt.bz2 Content-length: 188 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77816 --- Comment #3 from Andreas Schwab --- Stage2 Ada compiler is miscompiled after r240649, may be the same bug. >>From gcc-bugs-return-539345-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 09:01:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 121377 invoked by alias); 2 Oct 2016 09:01:52 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 121206 invoked by uid 48); 2 Oct 2016 09:01:34 -0000 From: "db0451 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/53479] Control flow analysis reports warnings in switch over an enum class even if all possible values have their branches Date: Sun, 02 Oct 2016 09:01:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 4.6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: db0451 at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00037.txt.bz2 Content-length: 858 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D53479 --- Comment #19 from DB --- just for anyone finding this later, note this has been raised at the level = of the C++ Standard - http://wg21.link/p0375r0 - with the conclusion being: > EWG pointed out that most enumerations are exhaustive, and > we want to be annotating the exception, not the norm. > However, there wasn=E2=80=99t much appetite for a =E2=80=9Cnon-exhaustive= =E2=80=9D > annotation, either; implementers were of the opinion that > current heuristics for diagnostics for switch statements > on enumerations are sufficient. - via https://botondballo.wordpress.com/2016/07/06/trip-report-c-standards-meetin= g-in-oulu-june-2016/ I suspect that "most enumerations are exhaustive" is an overgeneralisation = that only holds for some people you could ask, but hey. >>From gcc-bugs-return-539346-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 09:56:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 51480 invoked by alias); 2 Oct 2016 09:56:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 51349 invoked by uid 48); 2 Oct 2016 09:56:42 -0000 From: "glisse at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/59650] Inefficient vector assignment code Date: Sun, 02 Oct 2016 09:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.8.2 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: glisse at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00038.txt.bz2 Content-length: 515 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D59650 --- Comment #2 from Marc Glisse --- Actually, we have a regression, BIT_INSERT_EXPR causes a spurious warning a.c:13:10: warning: 'tmp' is used uninitialized in this function [-Wuninitialized] tmp[0] =3D v[0]; ~~~~~~~^~~~~~ And we don't vectorize any function. We would vectorize the second if tmp w= as a global variable. The main difference I see since 4.8 is that 2 of the 4 mov= s in set1 got merged to an unaligned mov. >>From gcc-bugs-return-539347-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 10:13:54 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73972 invoked by alias); 2 Oct 2016 10:13:54 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 73839 invoked by uid 55); 2 Oct 2016 10:13:40 -0000 From: "cltang at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/77371] [6/7 Regression] ICE in force_constant_size, at gimplify.c:671 (... and others) Date: Sun, 02 Oct 2016 10:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: openacc X-Bugzilla-Severity: normal X-Bugzilla-Who: cltang at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: cltang at gcc dot gnu.org X-Bugzilla-Target-Milestone: 6.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00039.txt.bz2 Content-length: 1085 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77371 --- Comment #4 from Chung-Lin Tang --- Author: cltang Date: Sun Oct 2 10:13:04 2016 New Revision: 240700 URL: https://gcc.gnu.org/viewcvs?rev=3D240700&root=3Dgcc&view=3Drev Log: 2016-10-02 Chung-Lin Tang PR fortran/77371 * omp-low.c (lower_omp_target): Avoid reference-type processing on pointers for firstprivate clause. * gimplify.c (gimplify_adjust_omp_clauses): Add 'remove =3D true' when emitting error on private/firstprivate reductions. testsuite/ * gfortran.dg/goacc/pr77371-1.f90: New test. * gfortran.dg/goacc/pr77371-2.f90: New test. Added: branches/gomp-4_0-branch/gcc/testsuite/gfortran.dg/goacc/pr77371-1.f90 branches/gomp-4_0-branch/gcc/testsuite/gfortran.dg/goacc/pr77371-2.f90 Modified: branches/gomp-4_0-branch/gcc/ChangeLog.gomp branches/gomp-4_0-branch/gcc/gimplify.c branches/gomp-4_0-branch/gcc/omp-low.c branches/gomp-4_0-branch/gcc/testsuite/ChangeLog.gomp >>From gcc-bugs-return-539348-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 10:41:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 124756 invoked by alias); 2 Oct 2016 10:41:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 124542 invoked by uid 48); 2 Oct 2016 10:41:14 -0000 From: "tulipawn at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/70896] gcc4 ABI compatible bootstrap fails Date: Sun, 02 Oct 2016 10:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 6.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: tulipawn at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WORKSFORME X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00040.txt.bz2 Content-length: 453 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D70896 PeteVine changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |WORKSFORME --- Comment #10 from PeteVine --- Definitely doesn't reproduce any more. >>From gcc-bugs-return-539349-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 13:40:17 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 34027 invoked by alias); 2 Oct 2016 13:40:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 33659 invoked by uid 48); 2 Oct 2016 13:40:02 -0000 From: "dominiq at lps dot ens.fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/60563] FAIL: g++.dg/ext/sync-4.C on *-apple-darwin* Date: Sun, 02 Oct 2016 13:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dominiq at lps dot ens.fr X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00041.txt.bz2 Content-length: 282 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60563 --- Comment #14 from Dominique d'Humieres --- > Filed radr://19802258 and uploaded a standalone test case for the darwin > linker developer to debug with. Jack, Did you get any feedback from Apple? >>From gcc-bugs-return-539350-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 14:33:53 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 96932 invoked by alias); 2 Oct 2016 14:33:53 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 96827 invoked by uid 48); 2 Oct 2016 14:33:40 -0000 From: "jim at meyering dot net" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/77817] New: -Wimplicit-fallthrough: cpp directive renders FALLTHRU comment ineffective Date: Sun, 02 Oct 2016 14:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: jim at meyering dot net X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00042.txt.bz2 Content-length: 1432 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77817 Bug ID: 77817 Summary: -Wimplicit-fallthrough: cpp directive renders FALLTHRU comment ineffective Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: minor Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: jim at meyering dot net Target Milestone: --- Normally, adding a comment like /* FALLTHRU */ works fine to mark a switch = case that is intended to fall through. But if a cpp directive appears in the vicinity of that comment, the comment becomes ineffective and we get the warning anyway. Here is a minimal example (without the "#undef", that comment *does* suppre= ss the warning): int foo (int x) { switch (x) { case 1: x =3D 3; #undef X /* fallthrough */ case 2: x =3D 4; } return x; } $ gcc -c -O -Wimplicit-fallthrough /t/ft.c /t/ft.c: In function =E2=80=98foo=E2=80=99: /t/ft.c:20:9: warning: this statement may fall through [-Wimplicit-fallthro= ugh] x =3D 3; ~~^~~ /t/ft.c:23:5: note: here case 2: ^~~~ The above was compiled with yesterday's GCC 7: gcc version 7.0.0 20161001 (experimental) (GCC) I encountered an actual instance of this in gnulib's vasnprintf.c: http://git.savannah.gnu.org/cgit/gnulib.git/tree/lib/vasnprintf.c#n4823 >>From gcc-bugs-return-539351-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 16:08:59 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 92647 invoked by alias); 2 Oct 2016 16:08:59 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 83861 invoked by uid 48); 2 Oct 2016 16:08:46 -0000 From: "msebor at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77818] New: stage3 bootstrap error in libgo on powerpc64le Date: Sun, 02 Oct 2016 16:08:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: msebor at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00043.txt.bz2 Content-length: 2410 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77818 Bug ID: 77818 Summary: stage3 bootstrap error in libgo on powerpc64le Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: bootstrap Assignee: unassigned at gcc dot gnu.org Reporter: msebor at gcc dot gnu.org Target Milestone: --- On powerpc64le, recent top of trunk (7.0) configured with -enable-languages=3Dall,ada,c,c++,fortran,go,lto,objc,obj-c++ --enable-host-shared fails with the following error: make[4]: Entering directory `/build/gcc-trunk/powerpc64le-unknown-linux-gnu/libgo' /build/gcc-trunk/./gcc/xgcc -B/build/gcc-trunk/./gcc/ -B/usr/local/powerpc64le-unknown-linux-gnu/bin/ -B/usr/local/powerpc64le-unknown-linux-gnu/lib/ -isystem /usr/local/powerpc64le-unknown-linux-gnu/include -isystem /usr/local/powerpc64le-unknown-linux-gnu/sys-include -DHAVE_CONFIG_H -I. -I/src/gcc/trunk/libgo -I /src/gcc/trunk/libgo/runtime -I/src/gcc/trunk/libgo/../libffi/include -I../libffi/include -pthread=20 -fexceptions -fnon-call-exceptions -fplan9-extensions -Wall -Wextra -Wwrite-strings -Wcast-qual -Werror -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=3D64 -I /src/gcc/trunk/libgo/../libgcc -I /src/gcc/trunk/libgo/../libbacktrace -I ../../gcc/include -fPIC -g -O2 -MT libgobegin_a-go-main.o -MD -MP -MF .deps/libgobegin_a-go-main.Tpo -c -o libgobegin_a-go-main.o `test -f 'runtime/go-main.c' || echo '/src/gcc/trunk/libgo/'`runtime/go-main.c In file included from /src/gcc/trunk/libgo/runtime/runtime.h:116:0, from /src/gcc/trunk/libgo/runtime/go-main.c:17: ./runtime.inc:2618:0: error: "_LITTLE_ENDIAN" redefined [-Werror] #define _LITTLE_ENDIAN 1234 : note: this is the location of the previous definition cc1: all warnings being treated as errors make[4]: *** [libgobegin_a-go-main.o] Error 1 make[4]: Leaving directory `/build/gcc-trunk/powerpc64le-unknown-linux-gnu/libgo' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/build/gcc-trunk/powerpc64le-unknown-linux-gnu/libgo' make[2]: *** [all] Error 2 make[2]: Leaving directory `/build/gcc-trunk/powerpc64le-unknown-linux-gnu/libgo' make[1]: *** [all-target-libgo] Error 2 make[1]: Leaving directory `/build/gcc-trunk' make: *** [bootstrap] Error 2 make: Leaving directory `/build/gcc-trunk' >>From gcc-bugs-return-539352-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 16:43:20 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 129586 invoked by alias); 2 Oct 2016 16:43:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 129508 invoked by uid 48); 2 Oct 2016 16:43:07 -0000 From: "schwab@linux-m68k.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77809] "_LITTLE_ENDIAN" redefined Date: Sun, 02 Oct 2016 16:43:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: schwab@linux-m68k.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_gcctarget cf_gcchost cf_gccbuild Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00044.txt.bz2 Content-length: 2266 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77809 Andreas Schwab changed: What |Removed |Added ---------------------------------------------------------------------------- Target|powerpc64le-unknown-linux-g |powerpc*-* |nu | Host|powerpc64le-unknown-linux-g | |nu | Build|powerpc64le-unknown-linux-g | |nu | --- Comment #1 from Andreas Schwab --- /daten/gcc/gcc-20161002/Build/./gcc/xgcc -B/daten/gcc/gcc-20161002/Build/./= gcc/ -B/usr/powerpc64-suse-linux/bin/ -B/usr/powerpc64-suse-linux/lib/ -isystem /usr/powerpc64-suse-linux/include -isystem /usr/powerpc64-suse-linux/sys-include -m32 -DHAVE_CONFIG_H -I. -I../../../../libgo -I ../../../../libgo/runtime -I../../../../libgo/../libffi/include -I../libffi/include -pthread=20 -fexceptions -fnon-call-exceptions -fplan9-extensions -Wall -Wextra -Wwrite-strings -Wcast-qual -Werror -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=3D64 -I ../../../../libgo/../libgcc -I ../../../../libgo/../libbacktrace -I ../../../gcc/include -fPIC -O2 -g -m32 -MT libgolibbegin_a-go-libmain.o -MD -MP -MF .deps/libgolibbegin_a-go-libmain.Tpo -c -o libgolibbegin_a-go-libmain.o `te= st -f 'runtime/go-libmain.c' || echo '../../../../libgo/'`runtime/go-libmain.c In file included from ../../../../libgo/runtime/runtime.h:116:0, from ../../../../libgo/runtime/go-main.c:17: ./runtime.inc:2890:0: error: "_BIG_ENDIAN" redefined [-Werror] #define _BIG_ENDIAN 4321 : note: this is the location of the previous definition cc1: all warnings being treated as errors make[8]: *** [libgobegin_a-go-main.o] Error 1 make[8]: *** Waiting for unfinished jobs.... In file included from ../../../../libgo/runtime/runtime.h:116:0, from ../../../../libgo/runtime/go-libmain.c:15: ./runtime.inc:2890:0: error: "_BIG_ENDIAN" redefined [-Werror] #define _BIG_ENDIAN 4321 : note: this is the location of the previous definition cc1: all warnings being treated as errors make[8]: *** [libgolibbegin_a-go-libmain.o] Error 1 >>From gcc-bugs-return-539353-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 17:41:43 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 21112 invoked by alias); 2 Oct 2016 17:41:42 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 21022 invoked by uid 48); 2 Oct 2016 17:41:30 -0000 From: "schwab@linux-m68k.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77809] "_LITTLE_ENDIAN" redefined Date: Sun, 02 Oct 2016 17:41:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: schwab@linux-m68k.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00045.txt.bz2 Content-length: 297 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77809 --- Comment #2 from Andreas Schwab --- The bug is that -fdump-go-spec (go_print_macro) prepends an underscore to t= he name of all constants, but -fgo-c-headers doesn't remove it. This will of course create conflicts. >>From gcc-bugs-return-539356-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 17:49:30 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 36354 invoked by alias); 2 Oct 2016 17:49:29 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 35085 invoked by uid 48); 2 Oct 2016 17:49:16 -0000 From: "howarth.at.gcc at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/60563] FAIL: g++.dg/ext/sync-4.C on *-apple-darwin* Date: Sun, 02 Oct 2016 17:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: howarth.at.gcc at gmail dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00048.txt.bz2 Content-length: 709 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D60563 Jack Howarth changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |howarth.at.gcc at gmail do= t com --- Comment #15 from Jack Howarth --- (In reply to Dominique d'Humieres from comment #14) > > Filed radr://19802258 and uploaded a standalone test case for the darwin > > linker developer to debug with. >=20 > Jack, >=20 > Did you get any feedback from Apple? No feedback and the issue still exists with the Xcode 8.1 beta linker and g= cc trunk. >>From gcc-bugs-return-539355-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 17:49:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35160 invoked by alias); 2 Oct 2016 17:49:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34924 invoked by uid 48); 2 Oct 2016 17:49:06 -0000 From: "schwab@linux-m68k.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/77818] stage3 bootstrap error in libgo on powerpc64le Date: Sun, 02 Oct 2016 17:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: schwab@linux-m68k.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00047.txt.bz2 Content-length: 482 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77818 Andreas Schwab changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |DUPLICATE --- Comment #1 from Andreas Schwab --- dup *** This bug has been marked as a duplicate of bug 77809 *** >>From gcc-bugs-return-539354-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 17:49:19 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 35147 invoked by alias); 2 Oct 2016 17:49:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 34944 invoked by uid 48); 2 Oct 2016 17:49:06 -0000 From: "schwab@linux-m68k.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77809] "_LITTLE_ENDIAN" redefined Date: Sun, 02 Oct 2016 17:49:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: schwab@linux-m68k.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00046.txt.bz2 Content-length: 436 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77809 Andreas Schwab changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |msebor at gcc dot gnu.org --- Comment #3 from Andreas Schwab --- *** Bug 77818 has been marked as a duplicate of this bug. *** >>From gcc-bugs-return-539357-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 17:51:02 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 38052 invoked by alias); 2 Oct 2016 17:51:02 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 37933 invoked by uid 48); 2 Oct 2016 17:50:49 -0000 From: "schwab@linux-m68k.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/77809] [7 regression] "_LITTLE_ENDIAN" redefined Date: Sun, 02 Oct 2016 17:51:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 7.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: schwab@linux-m68k.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: 7.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords target_milestone short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2016-10/txt/msg00049.txt.bz2 Content-length: 483 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D77809 Andreas Schwab changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |build Target Milestone|--- |7.0 Summary|"_LITTLE_ENDIAN" redefined |[7 regression] | |"_LITTLE_ENDIAN" redefined >>From gcc-bugs-return-539358-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Oct 02 18:53:10 2016 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 89159 invoked by alias); 2 Oct 2016 18:53:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 89147 invoked by uid 89); 2 Oct 2016 18:53:08 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.2 required=5.0 tests=BAYES_00,FREEMAIL_FROM,HK_RANDOM_ENVFROM,HK_RANDOM_FROM,PYZOR_CHECK,RCVD_IN_DNSWL_LOW,SPF_PASS,TVD_SPACE_RATIO autolearn=no version=3.3.2 spammy=Hx-languages-length:122 X-HELO: out4-smtp.messagingengine.com Received: from out4-smtp.messagingengine.com (HELO out4-smtp.messagingengine.com) (66.111.4.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 02 Oct 2016 18:52:58 +0000 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id D410E205CE for ; Sun, 2 Oct 2016 14:52:56 -0400 (EDT) Received: from web4 ([10.202.2.214]) by compute3.internal (MEProxy); Sun, 02 Oct 2016 14:52:56 -0400 Received: by mailuser.nyi.internal (Postfix, from userid 99) id B05AFCC7BD; Sun, 2 Oct 2016 14:52:56 -0400 (EDT) Message-Id: <1475434376.2061958.743542633.0662AA64@webmail.messagingengine.com> From: William Webb To: gcc-bugs@gcc.gnu.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain Subject: Re: confirm subscribe to gcc-bugs@gcc.gnu.org Date: Sun, 02 Oct 2016 18:53:00 -0000 In-Reply-To: <1475434342.87149.ezmlm@gcc.gnu.org> References: <1475434342.87149.ezmlm@gcc.gnu.org> X-SW-Source: 2016-10/txt/msg00050.txt.bz2 Content-length: 76 gcc-bugs-sc.1475434342.hmefnfhdekkimmaicgjl-lxknl=fastmail.com@gcc.gnu.org