[Bug libfortran/61035] Crash in getcwd intrinsic due to stack overflow

2014-05-13 Thread jb at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61035 Janne Blomqvist jb at gcc dot gnu.org changed: What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug preprocessor/61165] New: unfriendly diagnostic from macro expansion

2014-05-13 Thread tromey at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61165 Bug ID: 61165 Summary: unfriendly diagnostic from macro expansion Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component:

[Bug preprocessor/61165] unfriendly diagnostic from macro expansion

2014-05-13 Thread tromey at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61165 --- Comment #1 from Tom Tromey tromey at gcc dot gnu.org --- Also, note what happens if one changes the body of the function: extern void *allocate (int); #define my_alloc(X) allocate (X) int *alloc_int(void) { return my_alloc(sizeof (int));

[Bug preprocessor/60858] 64-bit multi-character constants

2014-05-13 Thread swissp2013 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60858 --- Comment #2 from SwissP swissp2013 at gmail dot com --- Andrew, Also patches go to gcc-patches@ and should include a testcase or two. Not familiar with the bugzilla interface I could not find where gcc-patches@ resides on the site. Can

[Bug c/61162] possibly bad error location with -Wc++-compat

2014-05-13 Thread tromey at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61162 --- Comment #4 from Tom Tromey tromey at gcc dot gnu.org --- Note that it is also wrong in the initializer case. enum e f(void) { enum e result = 0; return result; } barimba. gcc --syntax-only -Wc++-compat r.c r.c: In function ‘f’:

[Bug c/61162] possibly bad error location with -Wc++-compat

2014-05-13 Thread tromey at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61162 --- Comment #5 from Tom Tromey tromey at gcc dot gnu.org --- But, curiously, in this case it points to the RHS of the assignment (I still tend to think the = is the best location): extern void *alloc (void); int *f (void) { int *r = alloc ();

[Bug ipa/61160] [4.9/4.10 Regression] wrong code with -O3 (or ICE: verify_cgraph_node failed: edge points to wrong declaration)

2014-05-13 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61160 Jakub Jelinek jakub at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW Last

[Bug libstdc++/61166] New: overflow when parse number in std::duration operator

2014-05-13 Thread kan.liu.229 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61166 Bug ID: 61166 Summary: overflow when parse number in std::duration operator Product: gcc Version: 4.9.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug c/61162] possibly bad error location with -Wc++-compat

2014-05-13 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61162 --- Comment #6 from Marek Polacek mpolacek at gcc dot gnu.org --- (In reply to Tom Tromey from comment #4) Note that it is also wrong in the initializer case. Right, my patch fixes this too. (In reply to Tom Tromey from comment #5) But,

[Bug c/61162] possibly bad error location with -Wc++-compat

2014-05-13 Thread tromey at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61162 --- Comment #7 from Tom Tromey tromey at gcc dot gnu.org --- (In reply to Marek Polacek from comment #6) I'd prefer the RHS location here; it's the RHS that's being converted. I was hoping to automate some conversion from C to C++ using the

[Bug middle-end/60787] [4.7 Regression] ICE in expand_builtin_eh_common, at except.c:1953

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60787 --- Comment #3 from Richard Biener rguenth at gcc dot gnu.org --- r172430 exposed it, r190284 made it latent again. The testcase also fails with early inlining disabled.

[Bug ipa/60973] Invalid propagation of a tail call in devirt pass

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60973 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED

[Bug tree-optimization/60382] [4.8 Regression] ICE on valid code at -O3 on x86_64-linux-gnu (in vect_create_epilog_for_reduction, at tree-vect-loop.c:4352)

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60382 --- Comment #8 from Richard Biener rguenth at gcc dot gnu.org --- hmm, interesting - I can't reproduce the failure but will backport anyway (it's a safe fix).

[Bug c++/10437] using namespace at global scope creates incorrect code

2014-05-13 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=10437 --- Comment #12 from Jonathan Wakely redi at gcc dot gnu.org --- (In reply to Richard Smith from comment #11) I disagree. The failure is not in the immediate context of the substitution, so this is a hard error. GCC seems to be doing the right

[Bug target/61060] [4.9/4.10 Regression] ICE: in int_mode_for_mode, at stor-layout.c:400 with -free-ter

2014-05-13 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61060 --- Comment #7 from Jakub Jelinek jakub at gcc dot gnu.org --- Author: jakub Date: Tue May 13 08:28:53 2014 New Revision: 210352 URL: http://gcc.gnu.org/viewcvs?rev=210352root=gccview=rev Log: PR target/61060 * config/i386/i386.c

[Bug target/61060] [4.9/4.10 Regression] ICE: in int_mode_for_mode, at stor-layout.c:400 with -free-ter

2014-05-13 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61060 --- Comment #8 from Jakub Jelinek jakub at gcc dot gnu.org --- Author: jakub Date: Tue May 13 08:31:29 2014 New Revision: 210353 URL: http://gcc.gnu.org/viewcvs?rev=210353root=gccview=rev Log: PR target/61060 * config/i386/i386.c

[Bug c++/61167] New: ::std::map::operator[]() throws arithmetic exception

2014-05-13 Thread hrehf...@uni-koblenz.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61167 Bug ID: 61167 Summary: ::std::map::operator[]() throws arithmetic exception Product: gcc Version: 4.9.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug c/61144] Invalid optimizations for extern vars with local weak definitions

2014-05-13 Thread glisse at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61144 --- Comment #16 from Marc Glisse glisse at gcc dot gnu.org --- (In reply to Rich Felker from comment #15) Can you clarify? As far as I can tell, the other bug is a missed optimization and this is an overly-aggressive, incorrect optimization.

[Bug middle-end/58094] [4.9 Regression] IPA devirt testsuite errors

2014-05-13 Thread doko at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58094 Matthias Klose doko at gcc dot gnu.org changed: What|Removed |Added Status|RESOLVED|NEW

[Bug libstdc++/61075] parallel std::accumulate reduct type cannot be different than the iterated type

2014-05-13 Thread denes.matetelki at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61075 --- Comment #4 from Denes Matetelki denes.matetelki at gmail dot com --- Thank you for the reply, Jonathan. I understand your reasoning and not sure if my desires has much impact in the future of GCC. I'm suprised that the same source code

[Bug target/61060] [4.9/4.10 Regression] ICE: in int_mode_for_mode, at stor-layout.c:400 with -free-ter

2014-05-13 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61060 Jakub Jelinek jakub at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED

[Bug libstdc++/61143] [4.9/4.10 Regression] Arithmetic exception on emplacing into unordered_map moved out

2014-05-13 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61143 Jonathan Wakely redi at gcc dot gnu.org changed: What|Removed |Added CC|

[Bug c++/61167] ::std::map::operator[]() throws arithmetic exception

2014-05-13 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61167 Jonathan Wakely redi at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug middle-end/58094] [4.9 Regression] IPA devirt testsuite errors

2014-05-13 Thread doko at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58094 --- Comment #9 from Matthias Klose doko at gcc dot gnu.org --- x86_64-linux-gnu and i586-linux-gnu too

[Bug libstdc++/61075] parallel std::accumulate reduct type cannot be different than the iterated type

2014-05-13 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61075 --- Comment #5 from Jonathan Wakely redi at gcc dot gnu.org --- (In reply to Denes Matetelki from comment #4) I'm suprised that the same source code cannot be compiled with parallel mode. It would be ugly to branch with #ifdef

[Bug c++/61167] ::std::map::operator[]() throws arithmetic exception

2014-05-13 Thread hrehf...@uni-koblenz.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61167 --- Comment #2 from hrehf...@uni-koblenz.de --- Thanks! :-)

[Bug libstdc++/61143] [4.9/4.10 Regression] Arithmetic exception on emplacing into unordered_map moved out

2014-05-13 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61143 Jonathan Wakely redi at gcc dot gnu.org changed: What|Removed |Added Severity|normal |major ---

[Bug c/61165] bad location for conversion in return

2014-05-13 Thread manu at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61165 Manuel López-Ibáñez manu at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW Last

[Bug c/61162] possibly bad error location with -Wc++-compat

2014-05-13 Thread manu at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61162 Manuel López-Ibáñez manu at gcc dot gnu.org changed: What|Removed |Added CC||manu at gcc

[Bug c/61165] bad location for conversion in return

2014-05-13 Thread manu at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61165 --- Comment #3 from Manuel López-Ibáñez manu at gcc dot gnu.org --- (In reply to Tom Tromey from comment #0) I find this a bit strange. The actual warning: line points to the #define -- but here I think I would have expected this to point

[Bug c/61165] bad location for conversion in return

2014-05-13 Thread manu at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61165 --- Comment #4 from Manuel López-Ibáñez manu at gcc dot gnu.org --- (In reply to Manuel López-Ibáñez from comment #3) (In reply to Tom Tromey from comment #0) I find this a bit strange. The actual warning: line points to the #define --

[Bug lto/61168] New: Assembler options (-Wa,*) are not propagated when using -flto

2014-05-13 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61168 Bug ID: 61168 Summary: Assembler options (-Wa,*) are not propagated when using -flto Product: gcc Version: 4.10.0 Status: UNCONFIRMED Severity: normal

[Bug fortran/61138] [4.8/4.9/4.10 Regression] Wrong code with pointer-bounds remapping

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61138 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Priority|P3 |P4 Target

[Bug c/61137] [4.10 regression] FAIL: gcc.target/ia64/small-addr-1.c (test for excess errors)

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61137 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Target Milestone|--- |4.10.0

[Bug tree-optimization/61139] missed fma optimization

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61139 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Keywords|

[Bug tree-optimization/61139] missed fma/reassoc optimization

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61139 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Summary|missed fma optimization |missed

[Bug libstdc++/61075] parallel std::accumulate reduct type cannot be different than the iterated type

2014-05-13 Thread denes.matetelki at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61075 Denes Matetelki denes.matetelki at gmail dot com changed: What|Removed |Added Status|NEW

[Bug libstdc++/61075] parallel std::accumulate reduct type cannot be different than the iterated type

2014-05-13 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61075 Jonathan Wakely redi at gcc dot gnu.org changed: What|Removed |Added Resolution|INVALID |WONTFIX ---

[Bug libstdc++/61166] overflow when parse number in std::duration operator

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61166 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added CC|kan.liu.229 at gmail dot com

[Bug c++/12944] [meta-bug] C++ name-lookup problems

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=12944 Bug 12944 depends on bug 10437, which changed state. Bug 10437 Summary: using namespace at global scope creates incorrect code https://gcc.gnu.org/bugzilla/show_bug.cgi?id=10437 What|Removed |Added

[Bug c++/10437] using namespace at global scope creates incorrect code

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=10437 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Status|NEW |RESOLVED

[Bug ipa/60973] Invalid propagation of a tail call in devirt pass

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60973 --- Comment #7 from Richard Biener rguenth at gcc dot gnu.org --- Author: rguenth Date: Tue May 13 11:04:44 2014 New Revision: 210364 URL: http://gcc.gnu.org/viewcvs?rev=210364root=gccview=rev Log: 2014-05-13 Richard Biener rguent...@suse.de

[Bug ipa/60973] Invalid propagation of a tail call in devirt pass

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60973 --- Comment #9 from Richard Biener rguenth at gcc dot gnu.org --- Author: rguenth Date: Tue May 13 11:06:00 2014 New Revision: 210365 URL: http://gcc.gnu.org/viewcvs?rev=210365root=gccview=rev Log: 2014-05-13 Richard Biener rguent...@suse.de

[Bug ipa/60973] Invalid propagation of a tail call in devirt pass

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60973 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug middle-end/61141] [4.10 Regression] c-common.c:1502:1: ICE: in reset_insn_used_flags, at emit-rtl.c:2677

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61141 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Target Milestone|--- |4.10.0

[Bug libstdc++/60497] unique_ptrT tries to complete its type T even though it's not required to be a complete type

2014-05-13 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60497 --- Comment #7 from Jonathan Wakely redi at gcc dot gnu.org --- Author: redi Date: Tue May 13 11:18:01 2014 New Revision: 210366 URL: http://gcc.gnu.org/viewcvs?rev=210366root=gccview=rev Log: PR libstdc++/60497 * include/std/tuple (get,

[Bug ipa/61144] [4.9/4.10 Regression] Invalid optimizations for extern vars with local weak definitions

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61144 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW

[Bug target/61154] [4.10 Regression][ARM] wide-int merge introduced regressions in vshuf tests

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61154 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Target Milestone|--- |4.10.0

[Bug c++/61134] [4.7/4.8/4.9/4.10 Regression][C++11] bogus no matching function for call...

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61134 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Known to work||4.6.4

[Bug c/61129] Feature request: integer-overflow-detecting arithmetic intrinsics

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61129 --- Comment #1 from Richard Biener rguenth at gcc dot gnu.org --- There was a recent proof-of-concept patch on the mailinglist to implement that.

[Bug c++/61169] New: [4.6,4.7,4.8,4.9] unnecessarily honors bracket in mathematical statements

2014-05-13 Thread hannesroest at gmx dot ch
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61169 Bug ID: 61169 Summary: [4.6,4.7,4.8,4.9] unnecessarily honors bracket in mathematical statements Product: gcc Version: 4.6.3 Status: UNCONFIRMED Severity:

[Bug target/61170] New: FAIL: libgomp.fortran/declare-simd-[12].f90 on darwin

2014-05-13 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61170 Bug ID: 61170 Summary: FAIL: libgomp.fortran/declare-simd-[12].f90 on darwin Product: gcc Version: 4.10.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug tree-optimization/61171] New: vectorization fails for a reduction in presence of subtraction

2014-05-13 Thread vincenzo.innocente at cern dot ch
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61171 Bug ID: 61171 Summary: vectorization fails for a reduction in presence of subtraction Product: gcc Version: 4.9.0 Status: UNCONFIRMED Severity: normal

[Bug c++/61172] New: C++11: ICE with invalid call to template class

2014-05-13 Thread tobi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61172 Bug ID: 61172 Summary: C++11: ICE with invalid call to template class Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component:

[Bug libfortran/61173] New: [4.9/4.10 Regression] Erroneous end of file with internal read

2014-05-13 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61173 Bug ID: 61173 Summary: [4.9/4.10 Regression] Erroneous end of file with internal read Product: gcc Version: 4.10.0 Status: UNCONFIRMED Severity: normal

[Bug c++/61172] C++11: ICE with invalid call to template class

2014-05-13 Thread tobi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61172 --- Comment #1 from Tobias Schlüter tobi at gcc dot gnu.org --- (I see that it mentions macports. To avoid all confusion: I also see this ICE it with unmodified gcc-4.7.2 on Linux.)

[Bug c++/61172] C++11: ICE with invalid call to template class

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61172 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug c++/57086] Internal compiler error: Error reporting routines re-entered.

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57086 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added CC||tobi at

[Bug tree-optimization/61169] [4.6,4.7,4.8,4.9] unnecessarily honors bracket in mathematical statements

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61169 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Component|c++

[Bug c++/61174] New: [4.9 Regression] Bad resolving of specialized template with const-qualified member function

2014-05-13 Thread nco...@aldebaran-robotics.com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61174 Bug ID: 61174 Summary: [4.9 Regression] Bad resolving of specialized template with const-qualified member function Product: gcc Version: 4.9.0 Status: UNCONFIRMED

[Bug c++/61174] Bad resolving of specialized template with const-qualified member function

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61174 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Summary|[4.9 Regression] Bad|Bad

[Bug tree-optimization/61175] New: failing vectorization

2014-05-13 Thread vincenzo.innocente at cern dot ch
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61175 Bug ID: 61175 Summary: failing vectorization Product: gcc Version: 4.9.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization

[Bug c++/61172] C++11: ICE with invalid call to template class

2014-05-13 Thread tobi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61172 --- Comment #3 from Tobias Schlüter tobi at gcc dot gnu.org --- Thanks! I wonder which option I missed when I was searching for duplicates :(

[Bug tree-optimization/60382] [4.8 Regression] ICE on valid code at -O3 on x86_64-linux-gnu (in vect_create_epilog_for_reduction, at tree-vect-loop.c:4352)

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60382 --- Comment #9 from Richard Biener rguenth at gcc dot gnu.org --- Author: rguenth Date: Tue May 13 13:21:47 2014 New Revision: 210371 URL: http://gcc.gnu.org/viewcvs?rev=210371root=gccview=rev Log: 2014-05-13 Richard Biener rguent...@suse.de

[Bug libfortran/61173] [4.9/4.10 Regression] Erroneous end of file with internal read

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61173 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Priority|P3 |P4 Target

[Bug tree-optimization/61169] [4.6,4.7,4.8,4.9] unnecessarily honors bracket in mathematical statements

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61169 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug libstdc++/61166] overflow when parse number in std::duration operator

2014-05-13 Thread emsr at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61166 --- Comment #2 from emsr at gcc dot gnu.org --- Created attachment 32789 -- https://gcc.gnu.org/bugzilla/attachment.cgi?id=32789action=edit Patch to parse_nmber to make it unsigned long long all over. Works on x86_64-linux.

[Bug libstdc++/61166] overflow when parse number in std::duration operator

2014-05-13 Thread kan.liu.229 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61166 --- Comment #3 from Kan Liu kan.liu.229 at gmail dot com --- (In reply to emsr from comment #2) Created attachment 32789 [details] Patch to parse_nmber to make it unsigned long long all over. Works on x86_64-linux. Yeah, it works. Thank

[Bug libstdc++/61166] overflow when parse number in std::duration operator

2014-05-13 Thread kan.liu.229 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61166 --- Comment #4 from Kan Liu kan.liu.229 at gmail dot com --- btw, is it really necessary to use functionality in parse_number.h to parse manually? What *parse_number* has done is no more than the general *operator(unsigned long long)*, and it

[Bug lto/60981] lto-plugin configuration doesn't test for -static-libgcc (OSX gcc - clang)

2014-05-13 Thread ro at CeBiTec dot Uni-Bielefeld.DE
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60981 --- Comment #4 from ro at CeBiTec dot Uni-Bielefeld.DE ro at CeBiTec dot Uni-Bielefeld.DE --- --- Comment #3 from Tony Theodore tony.theodore at gmail dot com --- I'm building a cross compiler with: Host: x86_64-apple-darwin13.1.0 Targets:

[Bug lto/60981] lto-plugin configuration doesn't test for -static-libgcc (OSX gcc - clang)

2014-05-13 Thread ro at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60981 --- Comment #5 from Rainer Orth ro at gcc dot gnu.org --- Created attachment 32790 -- https://gcc.gnu.org/bugzilla/attachment.cgi?id=32790action=edit proposed patch

[Bug c++/61174] Bad resolving of specialized template with const-qualified member function

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61174 --- Comment #2 from Paolo Carlini paolo.carlini at oracle dot com --- By the way, this does *not* compile with 4.8, neither with 4.7, ...

[Bug plugins/61176] New: [4.9/4.10 Regression] plugin builds including gimple.h not building

2014-05-13 Thread doko at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61176 Bug ID: 61176 Summary: [4.9/4.10 Regression] plugin builds including gimple.h not building Product: gcc Version: 4.9.0 Status: UNCONFIRMED Severity: normal

[Bug c++/57086] Internal compiler error: Error reporting routines re-entered.

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57086 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added CC|

[Bug c++/60081] Internal compiler error: Error reporting routines re-entered.

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60081 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Resolution|FIXED |DUPLICATE

[Bug libfortran/61173] [4.9/4.10 Regression] Erroneous end of file with internal read

2014-05-13 Thread krefson at googlemail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61173 Keith Refson krefson at googlemail dot com changed: What|Removed |Added CC||krefson at

[Bug libfortran/61173] [4.9/4.10 Regression] Erroneous end of file with internal read

2014-05-13 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61173 Dominique d'Humieres dominiq at lps dot ens.fr changed: What|Removed |Added Status|UNCONFIRMED |NEW

[Bug c++/61174] Bad resolving of specialized template with const-qualified member function

2014-05-13 Thread nco...@aldebaran-robotics.com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61174 --- Comment #3 from alkino nco...@aldebaran-robotics.com --- It works with ideone (gcc-4.8.1) https://ideone.com/t8Jww2

[Bug fortran/60928] gfortran issue with allocatable components and OpenMP

2014-05-13 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60928 Dominique d'Humieres dominiq at lps dot ens.fr changed: What|Removed |Added Keywords|

[Bug c++/61174] Bad resolving of specialized template with const-qualified member function

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61174 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug fortran/47054] Compilation error when cray pointers are declared in both host and internal subroutines

2014-05-13 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47054 Dominique d'Humieres dominiq at lps dot ens.fr changed: What|Removed |Added Status|UNCONFIRMED |NEW

[Bug libstdc++/60497] unique_ptrT tries to complete its type T even though it's not required to be a complete type

2014-05-13 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60497 Jonathan Wakely redi at gcc dot gnu.org changed: What|Removed |Added Status|RESOLVED|REOPENED

[Bug fortran/61156] [4.7/4.8/4.9/4.10 Regression] Internal compiler error for Fortran files when specifying a file instead of an include directory with -I

2014-05-13 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61156 Dominique d'Humieres dominiq at lps dot ens.fr changed: What|Removed |Added Status|UNCONFIRMED |NEW

[Bug c++/61174] Bad resolving of specialized template with const-qualified member function

2014-05-13 Thread nco...@aldebaran-robotics.com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61174 --- Comment #5 from alkino nco...@aldebaran-robotics.com --- Can you tell me why, please? Thanks to look at it.

[Bug plugins/61176] [4.9/4.10 Regression] plugin builds including gimple.h not building

2014-05-13 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61176 Richard Biener rguenth at gcc dot gnu.org changed: What|Removed |Added Target Milestone|--- |4.9.1 ---

[Bug c++/61174] Bad resolving of specialized template with const-qualified member function

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61174 --- Comment #6 from Paolo Carlini paolo.carlini at oracle dot com --- Instead of starting from scratch, why don't you use std::is_member_function_pointer? It handles correctly all sorts of member functions. Alternately, study the implementation

[Bug libstdc++/61143] [4.9/4.10 Regression] Arithmetic exception on emplacing into unordered_map moved out

2014-05-13 Thread felix at fontein dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61143 --- Comment #9 from Felix Fontein felix at fontein dot de --- Another workaround is to use reserve(), as in: std::unordered_mapint, int b = std::move(a); a.reserve(1); // any number 0 will do a.emplace(1, 1);

[Bug fortran/60928] gfortran issue with allocatable components and OpenMP

2014-05-13 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60928 Jakub Jelinek jakub at gcc dot gnu.org changed: What|Removed |Added CC||burnus at gcc

[Bug c++/54310] Order of operations during overload resolution

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54310 --- Comment #3 from Paolo Carlini paolo.carlini at oracle dot com --- Current SolarisStudio also accepts it. I guess I'm going to add the testcase and close the bug.

[Bug c/61177] New: armv6zk: gcc

2014-05-13 Thread rion4ik at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61177 Bug ID: 61177 Summary: armv6zk: gcc Product: gcc Version: 4.6.4 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at

[Bug lto/60981] lto-plugin configuration doesn't test for -static-libgcc (OSX gcc - clang)

2014-05-13 Thread tony.theodore at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60981 --- Comment #6 from Tony Theodore tony.theodore at gmail dot com --- (In reply to r...@cebitec.uni-bielefeld.de from comment #4) --- Comment #3 from Tony Theodore tony.theodore at gmail dot com --- I'm building a cross compiler with: It

[Bug c/61165] bad location for conversion in return

2014-05-13 Thread tromey at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61165 Tom Tromey tromey at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED

[Bug c/61177] armv6zk: gcc fails compile one source file with fPIC and mthumb

2014-05-13 Thread rion4ik at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61177 Rion rion4ik at gmail dot com changed: What|Removed |Added CC||rion4ik at gmail dot com

[Bug c/61177] armv6zk: gcc fails compile one source file with fPIC and mthumb

2014-05-13 Thread rion4ik at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61177 --- Comment #2 from Rion rion4ik at gmail dot com --- Created attachment 32791 -- https://gcc.gnu.org/bugzilla/attachment.cgi?id=32791action=edit test.c example code.

[Bug c/61162] possibly bad error location with -Wc++-compat

2014-05-13 Thread tromey at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61162 --- Comment #9 from Tom Tromey tromey at gcc dot gnu.org --- (In reply to Manuel López-Ibáñez from comment #8) If you point to '=', then the macro expansion note will not appear in your other example (PR61165). Yeah, I still think the '=' is

[Bug c++/61178] New: expansion pattern '#'nontype_argument_pack' not supported by dump_expr#

2014-05-13 Thread tower120 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61178 Bug ID: 61178 Summary: expansion pattern '#'nontype_argument_pack' not supported by dump_expr# Product: gcc Version: 4.8.0 Status: UNCONFIRMED Severity: minor

[Bug c++/55252] Caret diagnostic doesn't show useful location when macro clashes with name in system header

2014-05-13 Thread tromey at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55252 Tom Tromey tromey at gcc dot gnu.org changed: What|Removed |Added CC||tromey at gcc dot

[Bug c++/54890] Incorrect SFINAE Rejection

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54890 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added CC||jason at

[Bug c++/60628] [4.7/4.8 Regression] [c++11] ICE initializing array of auto

2014-05-13 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60628 --- Comment #3 from Jason Merrill jason at gcc dot gnu.org --- Author: jason Date: Tue May 13 16:05:07 2014 New Revision: 210382 URL: http://gcc.gnu.org/viewcvs?rev=210382root=gccview=rev Log: PR c++/60628 * decl.c

[Bug c++/60367] Default argument object is not getting constructed

2014-05-13 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60367 --- Comment #10 from Jason Merrill jason at gcc dot gnu.org --- Author: jason Date: Tue May 13 16:05:01 2014 New Revision: 210381 URL: http://gcc.gnu.org/viewcvs?rev=210381root=gccview=rev Log: PR c++/60367 * call.c

  1   2   >