[Bug libstdc++/64781] regex out-of-range submatches should represent an unmatched sub-expression

2015-03-09 Thread timshen at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64781 Tim Shen changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug c++/65354] Converting lambda to pointer results in double destruction

2015-03-09 Thread charlie at charliedyson dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65354 --- Comment #2 from Charlie --- Here's a more succinct example (using the "+" trick to convert to a function pointer): #include int main () { auto f = +[] (std::string s) { return std::string (std::move (s)); }; std::stri

[Bug target/65358] wrong parameter passing code with tail call optimization on arm

2015-03-09 Thread mikpelinux at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65358 Mikael Pettersson changed: What|Removed |Added CC||mikpelinux at gmail dot com --- Comm

[Bug rtl-optimization/65321] [5 Regression] ICE on valid code at -O2 and -O3 with -g enabled in decompose, at rtl.h:2007

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65321 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment #8

[Bug target/65358] wrong parameter passing code with tail call optimization on arm

2015-03-09 Thread hong.gyu.kim at lge dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65358 --- Comment #4 from Honggyu Kim --- Dear Mikael Pettersson I also have a runtime testcase, which is different from dejagnu format. Can I add this testcase with your modification as my first gcc contribution? :) I was trying to fix this bug mysel

[Bug target/65358] wrong parameter passing code with tail call optimization on arm

2015-03-09 Thread hong.gyu.kim at lge dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65358 --- Comment #5 from Honggyu Kim --- I just wrote foo function code separately to debug gcc more easily by compile only problematic code.

[Bug c/65357] aggressive loop optimization not correct

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65357 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment #5

[Bug target/65358] wrong parameter passing code with tail call optimization on arm

2015-03-09 Thread mikpelinux at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65358 --- Comment #6 from Mikael Pettersson --- (In reply to Honggyu Kim from comment #4) > Can I add this testcase with your modification as my first gcc contribution? > :) Sure, just attach it to this PR as a new test case.

[Bug c/65357] aggressive loop optimization not correct

2015-03-09 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65357 --- Comment #6 from Andrew Pinski --- I missed there was a sequence point issue there too :).

[Bug c++/65284] [5 Regression] C++ lambda and auto return value causes ICE or gimple error

2015-03-09 Thread ramana at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65284 Ramana Radhakrishnan changed: What|Removed |Added Status|NEW |ASSIGNED

[Bug tree-optimization/44563] GCC uses a lot of RAM when compiling a large numbers of functions

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44563 Richard Biener changed: What|Removed |Added CC||rguenth at gcc dot gnu.org --- Comment

[Bug fortran/65359] New: [OOP] undefined output with array and inheritance

2015-03-09 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65359 Bug ID: 65359 Summary: [OOP] undefined output with array and inheritance Product: gcc Version: 5.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: f

[Bug libstdc++/64441] A match_results returns an incorrect sub_match if the sub_match::matched is false

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64441 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug libstdc++/64441] A match_results returns an incorrect sub_match if the sub_match::matched is false

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64441 Jonathan Wakely changed: What|Removed |Added CC||kaballo86 at hotmail dot com --- Comme

[Bug libstdc++/64781] regex out-of-range submatches should represent an unmatched sub-expression

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64781 Jonathan Wakely changed: What|Removed |Added Resolution|FIXED |DUPLICATE --- Comment #2 from Jonathan

[Bug c++/65336] name lookup finds operator in unnamed namespace

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65336 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug c++/51577] dependent name lookup finds operator in global namespace

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51577 Jonathan Wakely changed: What|Removed |Added CC||thibaut.lutz at googlemail dot com --

[Bug c++/51577] dependent name lookup finds operator in global namespace

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51577 --- Comment #10 from Jonathan Wakely --- Testcase from PR65336: extern "C" int puts(const char*); struct ostream {} cout; template struct A{ T t; }; struct B{}; struct C : public B{}; ostream& operator<< (ostream& out, const B&) { puts("

[Bug c++/51577] dependent name lookup finds operator in global namespace

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51577 --- Comment #11 from Jonathan Wakely --- And the testcase from PR 61161: struct T { template void f(const T &v) { 0 << v; } }; namespace N { struct X {}; struct Y : X {}; void operator<<(int, const X&) {} } void operator<<(int, c

[Bug c++/65354] Converting lambda to pointer results in double destruction

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65354 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug c++/62052] function parameter has wrong address in lambda converted to pointer-to-function

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62052 Jonathan Wakely changed: What|Removed |Added CC||charlie at charliedyson dot net --- Co

[Bug c++/62052] function parameter has wrong address in lambda converted to pointer-to-function

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62052 --- Comment #3 from Jonathan Wakely --- Segfaulting testcase from PR 65354: #include int main () { auto f = +[] (std::string s) { return std::string (std::move (s)); }; std::string s ("hello"); f (std::move (s)); }

[Bug rtl-optimization/65321] [5 Regression] ICE on valid code at -O2 and -O3 with -g enabled in decompose, at rtl.h:2007

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65321 Richard Biener changed: What|Removed |Added Assignee|rguenth at gcc dot gnu.org |jakub at gcc dot gnu.org --- Com

[Bug fortran/60780] Equivalence statements in nested modules results in fast growing duplicate statements in module files

2015-03-09 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60780 --- Comment #5 from Dominique d'Humieres --- I have doubled the number of modules to get the following results gcc version 4.8.5 21.907u 0.994s 0:23.00 99.5%0+0k 0+22io 3pf+0w -rw-r--r-- 1 dominiq staff 2923 Mar 9 10:59 module0.mod -

[Bug c/65360] New: Compiler error, while using gcc xml to parse a .c and a .h file at the same time

2015-03-09 Thread pierre.sassoulas at fr dot thalesgroup.com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65360 Bug ID: 65360 Summary: Compiler error, while using gcc xml to parse a .c and a .h file at the same time Product: gcc Version: 4.4.6 Status: UNCONFIRMED Severity

[Bug c/65360] Compiler error, while using gcc xml to parse a .c and a .h file at the same time

2015-03-09 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65360 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug ipa/65270] [5 regression] issues with merging memory accesses from different code paths

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65270 Richard Biener changed: What|Removed |Added Status|REOPENED|ASSIGNED --- Comment #32 from Richard B

[Bug libgomp/65338] [5 Regression] Offloading from DSO is broken after OpenACC merge to trunk

2015-03-09 Thread tschwinge at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65338 Thomas Schwinge changed: What|Removed |Added Keywords||openacc, openmp Assignee|una

[Bug tree-optimization/44563] GCC uses a lot of RAM when compiling a large numbers of functions

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44563 --- Comment #16 from Richard Biener --- callgrind shows the cgraph_edge_hasher quite high in the profile (via redirect_all_calls). I suppose as the large main is a single BB walking all stmts over-and-over is quite bad. Also hash_pointer isn't

[Bug rtl-optimization/65321] [5 Regression] ICE on valid code at -O2 and -O3 with -g enabled in decompose, at rtl.h:2007

2015-03-09 Thread rsandifo at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65321 --- Comment #10 from rsandifo at gcc dot gnu.org --- Thanks, looks good to me too FWIW.

[Bug tree-optimization/65335] Potential optimization issue with 'tree-loop-vectorize'

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65335 Richard Biener changed: What|Removed |Added Keywords||missed-optimization Status|

[Bug tree-optimization/65337] [5 Regression] bootstrap-lto gnat1 linktime ICE: gcc/ada/exp_aggr.adb:6570:0: internal compiler error: in forward_edge_to_pdom, at tree-ssa-dce.c:1086

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65337 Richard Biener changed: What|Removed |Added Keywords||build Target|

[Bug libgomp/65338] Offloading from DSO is broken after OpenACC merge to trunk

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65338 Richard Biener changed: What|Removed |Added Target Milestone|5.0 |--- Summary|[5 Regression] O

[Bug target/65341] [5 Regression] glibc build failure on ppc64le: setcontext.S:367: Error: junk at end of line: `1,0'

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65341 Richard Biener changed: What|Removed |Added Target Milestone|--- |5.0

[Bug target/65351] [5 Regression] ld: absolute addressing (perhaps -mdynamic-no-pic) used in _byte_common_op_match_null_string_p from ../libiberty/pic/libiberty.a(regex.o) not allowed ... on powerpc-a

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65351 Richard Biener changed: What|Removed |Added Target Milestone|--- |5.0

[Bug go/65349] [5 Regression] go tool crashes, can't compile go code on 32bit linux systems

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65349 Richard Biener changed: What|Removed |Added Target Milestone|--- |5.0

[Bug middle-end/65346] [5 Regression] glibc make check failures since r214941

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65346 Richard Biener changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED CC|

[Bug tree-optimization/64715] [5 Regression] __builtin_object_size (..., 1) fails to locate subobject

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64715 Richard Biener changed: What|Removed |Added CC||trippels at gcc dot gnu.org --- Comment

[Bug go/65353] [5 Regression] unknown ptrSize for $GOARCH "arm64" on aarch64-linux-gnu

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65353 Richard Biener changed: What|Removed |Added Target Milestone|--- |5.0

[Bug target/65342] [5 Regression] FAIL: gfortran.dg/intrinsic_(un)?pack_1.f90 -O1 execution test on powerpc-apple-darwin9 after r210201

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65342 Richard Biener changed: What|Removed |Added Target Milestone|--- |5.0

[Bug preprocessor/65238] [5 Regression] __has_attribute is not handled properly with -traditional-cpp.

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65238 Jakub Jelinek changed: What|Removed |Added CC||emsr at gcc dot gnu.org,

[Bug libstdc++/43660] range of random-number generator seems wrong/confusing

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43660 --- Comment #5 from Jonathan Wakely --- (In reply to Jonathan Wakely from comment #2) > (In reply to comment #0) > > [Note that the same issue exists with other ways of invoking using the > > generator (e.g., a std::uniform_real_distribution with

[Bug lto/65361] New: [5 Regression] LTO: tree check: expected tree that contains ‘decl minimal’ structure, have ‘tree_binfo’ in add_type_duplicate, at ipa-devirt.c:1509

2015-03-09 Thread burnus at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65361 Bug ID: 65361 Summary: [5 Regression] LTO: tree check: expected tree that contains ‘decl minimal’ structure, have ‘tree_binfo’ in add_type_duplicate, at ipa-devirt.c:1509 Pr

[Bug lto/65361] [5 Regression] LTO: tree check: expected tree that contains ‘decl minimal’ structure, have ‘tree_binfo’ in add_type_duplicate, at ipa-devirt.c:1509

2015-03-09 Thread burnus at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65361 --- Comment #1 from Tobias Burnus --- Created attachment 34990 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=34990&action=edit two.ii

[Bug libstdc++/64351] std::uniform_real_distribution(0, 1) returns 1

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64351 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug libstdc++/64467] [5 Regression] 28_regex/traits/char/isctype.cc and wchar_t/isctype.cc

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64467 --- Comment #17 from Jonathan Wakely --- Author: redi Date: Mon Mar 9 12:47:51 2015 New Revision: 221279 URL: https://gcc.gnu.org/viewcvs?rev=221279&root=gcc&view=rev Log: PR libstdc++/64467 * testsuite/28_regex/traits/char/isctype.cc:

[Bug c++/64446] Misleading error message when inheriting from a template class w/o the template params

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64446 Jonathan Wakely changed: What|Removed |Added Keywords||diagnostic Status|UNCONFIR

[Bug libstdc++/64467] [5 Regression] 28_regex/traits/char/isctype.cc and wchar_t/isctype.cc

2015-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64467 Jonathan Wakely changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|---

[Bug lto/65361] [5 Regression] LTO: tree check: expected tree that contains ‘decl minimal’ structure, have ‘tree_binfo’ in add_type_duplicate, at ipa-devirt.c:1509

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65361 Richard Biener changed: What|Removed |Added Target Milestone|--- |5.0

[Bug ipa/65270] [5 regression] issues with merging memory accesses from different code paths

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65270 --- Comment #33 from Richard Biener --- Author: rguenth Date: Mon Mar 9 13:54:28 2015 New Revision: 221281 URL: https://gcc.gnu.org/viewcvs?rev=221281&root=gcc&view=rev Log: 2015-03-09 Richard Biener PR middle-end/65270 * tree-core.

[Bug middle-end/65330] restrict should be considered when folding through references from global vars

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65330 Bug 65330 depends on bug 65270, which changed state. Bug 65270 Summary: [5 regression] issues with merging memory accesses from different code paths https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65270 What|Removed

[Bug ipa/65270] [5 regression] issues with merging memory accesses from different code paths

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65270 Richard Biener changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/65292] Template function not emitted

2015-03-09 Thread gnugcc at marino dot st
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65292 --- Comment #8 from John Marino --- As a final follow up, webkit-qt5 built on a March 8 version of gcc5 with no changes from my previous attempt. Good news, thanks for the patch! John

[Bug tree-optimization/65177] [5 Regression]: extend jump thread for finite state automata causes miscompilation

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65177 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment #7

[Bug target/65342] [5 Regression] FAIL: gfortran.dg/intrinsic_(un)?pack_1.f90 -O1 execution test on powerpc-apple-darwin9 after r210201

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65342 Jakub Jelinek changed: What|Removed |Added Priority|P3 |P4 CC|

[Bug c++/65269] internal compiler error: Segmentation fault

2015-03-09 Thread andrew.n.sutton at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65269 Andrew Sutton changed: What|Removed |Added CC||andrew.n.sutton at gmail dot com --- Co

[Bug go/65353] [5 Regression] unknown ptrSize for $GOARCH "arm64" on aarch64-linux-gnu

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65353 Jakub Jelinek changed: What|Removed |Added Priority|P3 |P4 CC|

[Bug lto/65361] [5 Regression] LTO: tree check: expected tree that contains ‘decl minimal’ structure, have ‘tree_binfo’ in add_type_duplicate, at ipa-devirt.c:1509

2015-03-09 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65361 Marek Polacek changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug go/65349] [5 Regression] go tool crashes, can't compile go code on 32bit linux systems

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65349 Jakub Jelinek changed: What|Removed |Added Priority|P3 |P4 CC|

[Bug tree-optimization/62630] [5 regression] gcc.dg/graphite/vect-pr43423.c FAILs

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62630 Jakub Jelinek changed: What|Removed |Added Priority|P1 |P2 --- Comment #19 from Jakub Jelinek -

[Bug fortran/65024] [4.9/5 Regression] [OOP] ICE concerning unlimited polymorphic pointer

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65024 Richard Biener changed: What|Removed |Added Priority|P3 |P4 Target Milestone|---

[Bug tree-optimization/65355] [4.8/4.9/5 Regression] vectorizer increase alignment of symbols already placed in anchors

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65355 Richard Biener changed: What|Removed |Added Keywords||wrong-code Target Milestone|---

[Bug target/65121] [5 regression] long_call attribute broken weak symbol arm*

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65121 Richard Biener changed: What|Removed |Added Priority|P3 |P1 Target Milestone|---

[Bug c++/65323] [4.8/4.9/5 Regression] duplicate -Wzero-as-null-pointer-constant warnings

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65323 Richard Biener changed: What|Removed |Added Keywords||diagnostic Priority|P3

[Bug target/65222] [5 Regression] -mtune= or -march=: Not all options not documented: slm, knl, shanghai, istanbul

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65222 Richard Biener changed: What|Removed |Added Target||x86_64-*-*, i?86-*-* Target Milestone

[Bug fortran/65045] [4.8/4.9/5 Regression] ICE when using the same name for a block and a variable.

2015-03-09 Thread pault at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65045 Paul Thomas changed: What|Removed |Added CC||pault at gcc dot gnu.org Assigne

[Bug target/65121] [5 regression] long_call attribute broken weak symbol arm*

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65121 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment #3

[Bug libgomp/65362] New: OpenACC compilation on Tegra K1 (ARM)

2015-03-09 Thread zziolko at clemson dot edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65362 Bug ID: 65362 Summary: OpenACC compilation on Tegra K1 (ARM) Product: gcc Version: 5.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libgomp

[Bug target/65121] [5 regression] long_call attribute broken weak symbol arm*

2015-03-09 Thread ramana at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65121 Ramana Radhakrishnan changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug target/65121] [5 regression] long_call attribute broken weak symbol arm*

2015-03-09 Thread ramana at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65121 --- Comment #5 from Ramana Radhakrishnan --- Author: ramana Date: Mon Mar 9 15:19:20 2015 New Revision: 221282 URL: https://gcc.gnu.org/viewcvs?rev=221282&root=gcc&view=rev Log: Fix PR number for 65121 in Changelog. PR target/65121 The commit

[Bug tree-optimization/44563] GCC uses a lot of RAM when compiling a large numbers of functions

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44563 --- Comment #17 from Richard Biener --- (In reply to Richard Biener from comment #16) > callgrind shows the cgraph_edge_hasher quite high in the profile (via > redirect_all_calls). I suppose as the large main is a single BB walking > all stmts o

[Bug lto/65361] [5 Regression] LTO: tree check: expected tree that contains ‘decl minimal’ structure, have ‘tree_binfo’ in add_type_duplicate, at ipa-devirt.c:1509

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65361 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment #3

[Bug tree-optimization/44563] GCC uses a lot of RAM when compiling a large numbers of functions

2015-03-09 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44563 --- Comment #18 from Richard Biener --- (In reply to Richard Biener from comment #17) > (In reply to Richard Biener from comment #16) > > callgrind shows the cgraph_edge_hasher quite high in the profile (via > > redirect_all_calls). I suppose as

[Bug debug/53927] wrong value for DW_AT_static_link

2015-03-09 Thread derodat at adacore dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53927 --- Comment #21 from Pierre-Marie de Rodat --- (In reply to Eric Botcazou from comment #18) > I think this is worth investigating though because it's conceptually > much simpler than adding yet another indirection. And we should > concentrate on

[Bug debug/53927] wrong value for DW_AT_static_link

2015-03-09 Thread derodat at adacore dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53927 --- Comment #22 from Pierre-Marie de Rodat --- (In reply to Tom Tromey from comment #20) >> Yeah. There wasn't much point submitting it when it wouldn't work anyhow :} >> Also see the README.archer file. It explains some changes that are needed

[Bug lto/65361] [5 Regression] LTO: tree check: expected tree that contains ‘decl minimal’ structure, have ‘tree_binfo’ in add_type_duplicate, at ipa-devirt.c:1509

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65361 --- Comment #4 from Jakub Jelinek --- --- gcc/testsuite/g++.dg/lto/pr65361_0.C.jj2015-03-09 16:43:42.720534781 +0100 +++ gcc/testsuite/g++.dg/lto/pr65361_0.C2015-03-09 16:47:00.325356410 +0100 @@ -0,0 +1,6 @@ +// { dg-lto-do link { xfail

[Bug target/65341] [5 Regression] glibc build failure on ppc64le: setcontext.S:367: Error: junk at end of line: `1,0'

2015-03-09 Thread meissner at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65341 --- Comment #16 from Michael Meissner --- As I can see there are several issues/whatever. 1) Each of the _ARCH_PWR is cumulative, so if you say -mcpu=power8 for instance, it defines _ARCH_PWR4, _ARCH_PWR5, _ARCH_PWR5X, _ARCH_PWR6, _ARCH_PWR7, an

[Bug target/65242] [5 Regression] ICE (in gen_add2_insn, at optabs.c:4761) on powerpc64le-linux-gnu

2015-03-09 Thread meissner at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65242 --- Comment #8 from Michael Meissner --- I'm going to start looking at this. I suspect the issue is we need more checks about the offset in TOC references. In particular, the 64-bit GPR load/store instruction (ld, std), the sign-extended 32-bit

[Bug lto/65361] [5 Regression] LTO: tree check: expected tree that contains ‘decl minimal’ structure, have ‘tree_binfo’ in add_type_duplicate, at ipa-devirt.c:1509

2015-03-09 Thread burnus at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65361 --- Comment #5 from Tobias Burnus --- (In reply to Jakub Jelinek from comment #3) > Untested fix Thanks! It looks good for the the original two unreduced files. Also, I have finally been able again to compile the full code (at least with some op

[Bug c/65345] ICE with _Generic selection on _Atomic int

2015-03-09 Thread joseph at codesourcery dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65345 --- Comment #4 from joseph at codesourcery dot com --- Or e.g. _Atomic int i = 5; int j = sizeof (i + 1); which is valid code not involving _Generic. And, similarly: _Atomic int i = 5; int j = sizeof (i = 0); or _Atomic int i = 5; int j = s

[Bug tree-optimization/65363] New: trivial redundant code reordering makes code less optimal

2015-03-09 Thread vries at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65363 Bug ID: 65363 Summary: trivial redundant code reordering makes code less optimal Product: gcc Version: 5.0 Status: UNCONFIRMED Severity: minor Priorit

[Bug target/65341] [5 Regression] glibc build failure on ppc64le: setcontext.S:367: Error: junk at end of line: `1,0'

2015-03-09 Thread trippels at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65341 Markus Trippelsdorf changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug c/65345] ICE with _Generic selection on _Atomic int

2015-03-09 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65345 --- Comment #5 from Marek Polacek --- (In reply to jos...@codesourcery.com from comment #4) > Or e.g. > > _Atomic int i = 5; > int j = sizeof (i + 1); > > which is valid code not involving _Generic. And, similarly: > > _Atomic int i = 5; > in

[Bug c/65345] ICE with _Generic selection on _Atomic int

2015-03-09 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65345 --- Comment #6 from Marek Polacek --- FWIW, my testcase was /* PR c/65345 */ /* { dg-do compile } */ /* { dg-options "" } */ _Atomic int i = 3; int g1 = sizeof (i + 1) + sizeof (-i); int g2 = __builtin_constant_p (i + 1); int g3 = 0 && i; int g

[Bug rtl-optimization/64317] [5 Regression] Ineffective allocation of PIC base register

2015-03-09 Thread law at redhat dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64317 --- Comment #23 from Jeffrey A. Law --- So with a functional prototype in place, I can get good code for this test. However, deeper testing of that prototype is proving difficult simply because the postreload-gcse.c code very rarely does anythin

[Bug testsuite/65364] New: FAIL: gcc.dg/uninit-19.c (test for warnings, line 22)

2015-03-09 Thread danglin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65364 Bug ID: 65364 Summary: FAIL: gcc.dg/uninit-19.c (test for warnings, line 22) Product: gcc Version: 5.0 Status: UNCONFIRMED Severity: normal Priority: P3 Compone

[Bug target/65222] [5 Regression] -mtune= or -march=: Not all options not documented: slm, knl, shanghai, istanbul

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65222 Jakub Jelinek changed: What|Removed |Added CC||hjl.tools at gmail dot com,

[Bug testsuite/65364] FAIL: gcc.dg/uninit-19.c (test for warnings, line 22)

2015-03-09 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65364 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug testsuite/65364] FAIL: gcc.dg/uninit-19.c (test for warnings, line 22)

2015-03-09 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65364 --- Comment #2 from Dominique d'Humieres --- See https://gcc.gnu.org/ml/gcc-patches/2015-02/msg00557.html for a patch and https://gcc.gnu.org/ml/gcc-patches/2015-02/msg00737.html for some analysis for darwin.

[Bug sanitizer/63958] [5 Regression] bootstrap failure in the sanitizer libs on sparc-linux-gnu

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63958 --- Comment #11 from Jakub Jelinek --- Author: jakub Date: Mon Mar 9 18:25:28 2015 New Revision: 221283 URL: https://gcc.gnu.org/viewcvs?rev=221283&root=gcc&view=rev Log: PR sanitizer/63958 Reapply: 2014-10-14 David S. Miller

[Bug c/65120] [5 Regression] Wlogical-not-parentheses should not warn about double exclamation !!

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65120 --- Comment #11 from Jakub Jelinek --- Author: jakub Date: Mon Mar 9 18:26:52 2015 New Revision: 221284 URL: https://gcc.gnu.org/viewcvs?rev=221284&root=gcc&view=rev Log: PR c/65120 * c-typeck.c (parser_build_binary_op): Don't warn for

[Bug fortran/60780] Equivalence statements in nested modules results in fast growing duplicate statements in module files

2015-03-09 Thread jvdelisle at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60780 Jerry DeLisle changed: What|Removed |Added CC||jvdelisle at gcc dot gnu.org --- Comment

[Bug fortran/60780] Equivalence statements in nested modules results in fast growing duplicate statements in module files

2015-03-09 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60780 --- Comment #7 from Dominique d'Humieres --- > Is 40958 a duplicate of this PR or is there something else lurking? AFAIU pr40958 comment 13, Janne was anticipating possible exponential behaviors from a rather theoretical point of view. This PR i

[Bug sanitizer/63958] [5 Regression] bootstrap failure in the sanitizer libs on sparc-linux-gnu

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63958 --- Comment #12 from Jakub Jelinek --- Fixed for GCC 5 now, but the problem will likely reappear during next merge :(.

[Bug sanitizer/63958] [5 Regression] bootstrap failure in the sanitizer libs on sparc-linux-gnu

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63958 Jakub Jelinek changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug testsuite/65364] FAIL: gcc.dg/uninit-19.c (test for warnings, line 22)

2015-03-09 Thread dave.anglin at bell dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65364 --- Comment #3 from dave.anglin at bell dot net --- On 2015-03-09 2:08 PM, dominiq at lps dot ens.fr wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65364 > > --- Comment #2 from Dominique d'Humieres --- > See https://gcc.gnu.org/ml/gcc-pat

[Bug c++/65339] [5 Regression] C++ ICE with lambda and no capture list

2015-03-09 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65339 --- Comment #2 from Jason Merrill --- Author: jason Date: Mon Mar 9 19:59:54 2015 New Revision: 221285 URL: https://gcc.gnu.org/viewcvs?rev=221285&root=gcc&view=rev Log: PR c++/65339 * call.c: Don't call maybe_resolve_dummy when calling

[Bug lto/65361] [5 Regression] LTO: tree check: expected tree that contains ‘decl minimal’ structure, have ‘tree_binfo’ in add_type_duplicate, at ipa-devirt.c:1509

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65361 Jakub Jelinek changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug lto/65361] [5 Regression] LTO: tree check: expected tree that contains ‘decl minimal’ structure, have ‘tree_binfo’ in add_type_duplicate, at ipa-devirt.c:1509

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65361 --- Comment #6 from Jakub Jelinek --- Author: jakub Date: Mon Mar 9 20:19:34 2015 New Revision: 221286 URL: https://gcc.gnu.org/viewcvs?rev=221286&root=gcc&view=rev Log: PR lto/65361 * ipa-devirt.c (add_type_duplicate): Don't use DECL_C

[Bug c++/65339] [5 Regression] C++ ICE with lambda and no capture list

2015-03-09 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65339 Jakub Jelinek changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

  1   2   >