[Bug c++/50929] [C++0x] Wrong function selected for overload with template and rvalue reference

2011-10-31 Thread daniel.kruegler at googlemail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50929 Daniel Krügler daniel.kruegler at googlemail dot com changed: What|Removed |Added CC|

[Bug c/50922] infinite loop when optimized

2011-10-31 Thread pfister at pci dot uzh.ch
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50922 --- Comment #4 from Rolf Pfister pfister at pci dot uzh.ch 2011-10-31 07:38:01 UTC --- Am 30.10.11 20:14, schrieb pinskia at gcc dot gnu.org: --- Comment #3 from Andrew Pinskipinskia at gcc dot gnu.org 2011-10-30 19:14:49 UTC --- Signed

[Bug c++/50929] [C++0x] Wrong function selected for overload with template and rvalue reference

2011-10-31 Thread jarrydb at cse dot unsw.edu.au
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50929 --- Comment #2 from Jarryd Beck jarrydb at cse dot unsw.edu.au 2011-10-31 07:42:54 UTC --- That's a shame, and rather annoying. I read pages and pages of the standard to try to understand this one. Do you know where this is explained? I added a

[Bug c++/50930] New: [C++0x] Valid brace-or-equal-initializer of non-static data member rejected

2011-10-31 Thread daniel.kruegler at googlemail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50930 Bug #: 50930 Summary: [C++0x] Valid brace-or-equal-initializer of non-static data member rejected Classification: Unclassified Product: gcc Version: 4.7.0 Status:

[Bug rtl-optimization/38644] [4.4/4.5/4.6/4.7 Regression] Optimization flag -O1 -fschedule-insns2 causes wrong code

2011-10-31 Thread jiangning.liu at arm dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38644 --- Comment #56 from Jiangning Liu jiangning.liu at arm dot com 2011-10-31 07:48:25 UTC --- (In reply to comment #54) I tested with GCC 4.6.2 and the patch provided by Mikael Pettersson. It works for -march=armv4t and -march=armv5t, but not

[Bug c++/50930] [C++0x] Valid brace-or-equal-initializer of non-static data member rejected

2011-10-31 Thread daniel.kruegler at googlemail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50930 Daniel Krügler daniel.kruegler at googlemail dot com changed: What|Removed |Added Keywords|

[Bug fortran/50926] Output to 'fort.6 file instead of console

2011-10-31 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50926 Tobias Burnus burnus at gcc dot gnu.org changed: What|Removed |Added CC||burnus at gcc

[Bug c++/50929] [C++0x] Wrong function selected for overload with template and rvalue reference

2011-10-31 Thread daniel.kruegler at googlemail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50929 --- Comment #3 from Daniel Krügler daniel.kruegler at googlemail dot com 2011-10-31 08:24:58 UTC --- (In reply to comment #2) That's a shame, and rather annoying. I read pages and pages of the standard to try to understand this one. Do you know

[Bug rtl-optimization/38644] [4.4/4.5/4.6/4.7 Regression] Optimization flag -O1 -fschedule-insns2 causes wrong code

2011-10-31 Thread mikpe at it dot uu.se
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38644 --- Comment #57 from Mikael Pettersson mikpe at it dot uu.se 2011-10-31 08:32:09 UTC --- (In reply to comment #56) (In reply to comment #54) I tested with GCC 4.6.2 and the patch provided by Mikael Pettersson. It works for -march=armv4t

[Bug fortran/50924] Attempt to allocate negative amount of memory. Possible integer overflow

2011-10-31 Thread fwi at inducks dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50924 --- Comment #4 from fwi at inducks dot org 2011-10-31 08:43:23 UTC --- Actually contrary to what I wrote my system is 64 bit (I clicked on edit on the top right and somehow the system sent a message that I was starting to write). Still when I

[Bug tree-optimization/50908] [4.7 Regression] building emacs-23.3; gives msg: indent.c:1140:1: internal compiler error: in verify_dominators, at dominance.c:1041

2011-10-31 Thread vries at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50908 --- Comment #3 from vries at gcc dot gnu.org 2011-10-31 09:42:11 UTC --- Created attachment 25671 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=25671 tentative patch 2011-10-31 Tom de Vries t...@codesourcery.com PR

[Bug bootstrap/50878] [4.7 Regression] ARM bootstrap failure on insn-preds.c with error: dominator of 12 should be 6, not 5

2011-10-31 Thread vries at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50878 --- Comment #11 from vries at gcc dot gnu.org 2011-10-31 10:02:38 UTC --- Posted fix: http://gcc.gnu.org/ml/gcc-patches/2011-10/msg02782.html Posted fix has been approved: http://gcc.gnu.org/ml/gcc-patches/2011-10/msg02787.html, but the patch

[Bug c++/50929] [C++0x] Wrong function selected for overload with template and rvalue reference

2011-10-31 Thread jarrydb at cse dot unsw.edu.au
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50929 --- Comment #4 from Jarryd Beck jarrydb at cse dot unsw.edu.au 2011-10-31 10:07:04 UTC --- I didn't realise that A(A) was a better match. I was thinking of C++ code where you might write: template typename T A(const T t); A(const A rhs);

[Bug c++/50929] [C++0x] Wrong function selected for overload with template and rvalue reference

2011-10-31 Thread daniel.kruegler at googlemail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50929 --- Comment #5 from Daniel Krügler daniel.kruegler at googlemail dot com 2011-10-31 10:18:04 UTC --- (In reply to comment #4) I didn't realise that A(A) was a better match. I was thinking of C++ code where you might write: template

[Bug c/50922] infinite loop when optimized

2011-10-31 Thread manu at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50922 Manuel López-Ibáñez manu at gcc dot gnu.org changed: What|Removed |Added CC||manu at gcc

[Bug c++/50929] [C++0x] Wrong function selected for overload with template and rvalue reference

2011-10-31 Thread jarrydb at cse dot unsw.edu.au
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50929 --- Comment #6 from Jarryd Beck jarrydb at cse dot unsw.edu.au 2011-10-31 10:34:16 UTC --- Yeah I understand now. Basically having a perfect forwarding constructor means that I need a non-const constructor if I want my example to work as I

[Bug c++/50929] [C++0x] Wrong function selected for overload with template and rvalue reference

2011-10-31 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50929 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug rtl-optimization/38644] [4.4/4.5/4.6/4.7 Regression] Optimization flag -O1 -fschedule-insns2 causes wrong code

2011-10-31 Thread sebastian.hu...@embedded-brains.de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38644 --- Comment #58 from Sebastian Huber sebastian.hu...@embedded-brains.de 2011-10-31 10:45:43 UTC --- I tested Jiangning Liu's latest patch. With it GCC 4.6.2 produces valid code for -march=armv4t, -march=armv5t, -march=armv5te, -march=armv6, and

[Bug c/50922] infinite loop when optimized

2011-10-31 Thread pfister at pci dot uzh.ch
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50922 --- Comment #6 from Rolf Pfister pfister at pci dot uzh.ch 2011-10-31 11:01:33 UTC --- Am 31.10.11 11:18, schrieb manu at gcc dot gnu.org: http://gcc.gnu.org/wiki/FAQ#signed_overflow Im not really convinced that the reason is the overflow.

[Bug c++/50929] [C++0x] Wrong function selected for overload with template and rvalue reference

2011-10-31 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50929 --- Comment #8 from Jonathan Wakely redi at gcc dot gnu.org 2011-10-31 11:45:32 UTC --- this is a duplicate of PR 46004

[Bug fortran/50919] [OOP] Don't use vtable for NON_OVERRIDABLE TBP

2011-10-31 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50919 janus at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/50929] [C++0x] Wrong function selected for overload with template and rvalue reference

2011-10-31 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50929 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Resolution|INVALID |DUPLICATE

[Bug c++/46004] [C++0x] template constructor used to copy object

2011-10-31 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46004 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added CC||jarrydb at

[Bug fortran/50919] [OOP] Don't use vtable for NON_OVERRIDABLE TBP

2011-10-31 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50919 janus at gcc dot gnu.org changed: What|Removed |Added Status|NEW |ASSIGNED

[Bug target/50931] New: [avr] Support a 24-bit scalar integer mode

2011-10-31 Thread gjl at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50931 Bug #: 50931 Summary: [avr] Support a 24-bit scalar integer mode Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: enhancement

[Bug target/50931] [avr] Support a 24-bit scalar integer mode

2011-10-31 Thread gjl at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50931 Georg-Johann Lay gjl at gcc dot gnu.org changed: What|Removed |Added Priority|P3 |P4

[Bug tree-optimization/50644] ICE in set_is_used added today

2011-10-31 Thread matz at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50644 --- Comment #17 from Michael Matz matz at gcc dot gnu.org 2011-10-31 13:16:49 UTC --- Thank you very much! This really helps and at least reveals something quite strange with LTO. It falls over the __func__ member of one of the two static

[Bug tree-optimization/50644] ICE in set_is_used added today

2011-10-31 Thread matz at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50644 --- Comment #18 from Michael Matz matz at gcc dot gnu.org 2011-10-31 13:37:33 UTC --- Ah, wrong, native_cpu_up of course calls check_tsc_sync_source, which under LTO can be inlined. So it's the same issues as PR50741, the patch from there works

[Bug tree-optimization/50644] ICE in set_is_used added today

2011-10-31 Thread matz at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50644 --- Comment #19 from Michael Matz matz at gcc dot gnu.org 2011-10-31 13:41:59 UTC --- Bah, I checked against the patched compiler. Nope, with the unpatched compiler both descriptor variables stay in the local_decls of native_cpu_up after

[Bug tree-optimization/50932] New: inserting a gimple_call with gsi_insert_after creates error in remove_unreachable_handler

2011-10-31 Thread leppkes at stce dot rwth-aachen.de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50932 Bug #: 50932 Summary: inserting a gimple_call with gsi_insert_after creates error in remove_unreachable_handler Classification: Unclassified Product: gcc Version: 4.5.2

[Bug tree-optimization/50908] [4.7 Regression] building emacs-23.3; gives msg: indent.c:1140:1: internal compiler error: in verify_dominators, at dominance.c:1041

2011-10-31 Thread joel at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50908 Joel Sherrill joel at gcc dot gnu.org changed: What|Removed |Added CC||joel at gcc dot

[Bug fortran/50919] [OOP] Don't use vtable for NON_OVERRIDABLE TBP

2011-10-31 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50919 --- Comment #3 from janus at gcc dot gnu.org 2011-10-31 13:55:55 UTC --- (In reply to comment #2) Created attachment 25672 [details] patch ... regtests cleanly!

[Bug tree-optimization/50908] [4.7 Regression] building emacs-23.3; gives msg: indent.c:1140:1: internal compiler error: in verify_dominators, at dominance.c:1041

2011-10-31 Thread vries at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50908 --- Comment #5 from vries at gcc dot gnu.org 2011-10-31 14:03:56 UTC --- Are these also the same bug? http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50878 Yes, see PR50878 comment 11 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50886 Probably,

[Bug libstdc++/50915] gcc fails at run time due to undefined libintl_textdomain

2011-10-31 Thread titu_senapati at yahoo dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50915 --- Comment #3 from Titu titu_senapati at yahoo dot com 2011-10-31 14:07:19 UTC --- (In reply to comment #2) You used --with-included-gettext, that's probably breaking things for you (together with -nodefaultlibs I guess). Anyway, 3.4.3 is

[Bug fortran/50933] New: Wrongly regards BIND(C) types as incompatible

2011-10-31 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50933 Bug #: 50933 Summary: Wrongly regards BIND(C) types as incompatible Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Keywords: rejects-valid

[Bug fortran/50919] [OOP] Don't use vtable for NON_OVERRIDABLE TBP

2011-10-31 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50919 --- Comment #4 from Tobias Burnus burnus at gcc dot gnu.org 2011-10-31 14:41:19 UTC --- (In reply to comment #2) Created attachment 25672 [details] patch Thanks for the patch! The second one breaks the ABI, while the first one does not. So,

[Bug bootstrap/50882] [4.6 Regression] internal compiler error: in extract_insn, at recog.c:2109 on powerpc-ibm-aix5.3.0.0

2011-10-31 Thread greed at pobox dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50882 Graham Reed greed at pobox dot com changed: What|Removed |Added CC||greed at pobox dot

[Bug ada/50934] New: Allocated address for new controlled object is offset by 16 bytes

2011-10-31 Thread simon at pushface dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50934 Bug #: 50934 Summary: Allocated address for new controlled object is offset by 16 bytes Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug lto/50935] New: All slim LTO tests FAIL on 32-bit Solaris

2011-10-31 Thread ro at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50935 Bug #: 50935 Summary: All slim LTO tests FAIL on 32-bit Solaris Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/45114] implement C++0x alias-declaration

2011-10-31 Thread vincenzo.innocente at cern dot ch
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #10 from vincenzo Innocente vincenzo.innocente at cern dot ch 2011-10-31 16:06:41 UTC --- using the patch of comment 8 in the example below I get $ c++ -std=gnu++0x -c talias.cc $ c++ -std=gnu++0x -c talias.cc -DALIAS talias.cc: In

[Bug c++/45114] implement C++0x alias-declaration

2011-10-31 Thread vincenzo.innocente at cern dot ch
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #11 from vincenzo Innocente vincenzo.innocente at cern dot ch 2011-10-31 16:16:54 UTC --- the example in comment 10 compiles fine if I add a move constructor D(ATia) : a(ia) {} or a by value constructor D(AT ia) : a(ia) {}

[Bug fortran/50926] Output to 'fort.6 file instead of console

2011-10-31 Thread dm.vl.ivanov at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50926 Dmitry dm.vl.ivanov at gmail dot com changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug java/50936] New: Warnung: abstract method in non-abstract class

2011-10-31 Thread Bernhard.Fastenrath at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50936 Bug #: 50936 Summary: Warnung: abstract method in non-abstract class Classification: Unclassified Product: gcc Version: 4.5.3 Status: UNCONFIRMED Severity: normal

[Bug fortran/50937] New: STAT option with ALLOCATE statement on large arrays

2011-10-31 Thread fwi at inducks dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50937 Bug #: 50937 Summary: STAT option with ALLOCATE statement on large arrays Classification: Unclassified Product: gcc Version: 4.4.3 Status: UNCONFIRMED Severity: minor

[Bug rtl-optimization/50938] New: x86 alloca adds 15 twice

2011-10-31 Thread ian at airs dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50938 Bug #: 50938 Summary: x86 alloca adds 15 twice Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug rtl-optimization/50938] x86 alloca adds 15 twice

2011-10-31 Thread ppluzhnikov at google dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50938 Paul Pluzhnikov ppluzhnikov at google dot com changed: What|Removed |Added CC|

[Bug bootstrap/50882] [4.6 Regression] internal compiler error: in extract_insn, at recog.c:2109 on powerpc-ibm-aix5.3.0.0

2011-10-31 Thread greed at pobox dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50882 --- Comment #6 from Graham Reed greed at pobox dot com 2011-10-31 17:53:18 UTC --- This seems to be enough to trigger the ICE: int _Unwind_RaiseException(void) { int code; int (*personality) (void); code=(*personality) (); } No flags

[Bug fortran/50937] STAT option with ALLOCATE statement on large arrays

2011-10-31 Thread kargl at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50937 kargl at gcc dot gnu.org changed: What|Removed |Added CC||kargl at gcc dot gnu.org ---

[Bug fortran/50937] STAT option with ALLOCATE statement on large arrays

2011-10-31 Thread fwi at inducks dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50937 --- Comment #2 from fwi at inducks dot org 2011-10-31 18:15:57 UTC --- With E=1.0D0 instead of E(N,N,N,N)=1.0D0 $ gfortran test.f90; for i in `seq -w 10 10 400`; do LANG=C ./a.out $i; done Sucesfully allocated array of size 10 **4

[Bug fortran/50937] STAT option with ALLOCATE statement on large arrays

2011-10-31 Thread jb at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50937 --- Comment #3 from Janne Blomqvist jb at gcc dot gnu.org 2011-10-31 18:24:14 UTC --- From the metadata, it seems you're using version 4.4.3, where the overflow check when calculating the size to allocate was a bit stupid. Basically it did the

[Bug fortran/50937] STAT option with ALLOCATE statement on large arrays

2011-10-31 Thread fwi at inducks dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50937 --- Comment #4 from fwi at inducks dot org 2011-10-31 18:29:27 UTC --- I'm using: $ gfortran --version GNU Fortran (Ubuntu 4.4.3-4ubuntu5) 4.4.3 I've now tested the same program on a 64-bit CentOs machine with 16-Gb RAM, but

[Bug target/45650] [4.4/4.5/4.6/4.7 regression] FreeBSD/ia64 builds fails: hidden symbol `_Unwind_FindTableEntry' isn't defined

2011-10-31 Thread mexas at bristol dot ac.uk
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45650 --- Comment #7 from Anton Shterenlikht mexas at bristol dot ac.uk 2011-10-31 18:32:07 UTC --- Yes, *without* files/patch-unwind-ia64.h. I've built and installed gcc-4.7.0.20111029

[Bug tree-optimization/50932] inserting a gimple_call with gsi_insert_after creates error in remove_unreachable_handler

2011-10-31 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50932 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug fortran/50937] STAT option with ALLOCATE statement on large arrays

2011-10-31 Thread jb at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50937 Janne Blomqvist jb at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug fortran/50937] STAT option with ALLOCATE statement on large arrays

2011-10-31 Thread fwi at inducks dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50937 --- Comment #6 from fwi at inducks dot org 2011-10-31 19:25:38 UTC --- Has the bug been corrected in recent versions of gfortran, or do you really mean it's OK that gfortran claims an array has been allocated when it really has not been?

[Bug libstdc++/1773] __cplusplus defined to 1, should be 199711L

2011-10-31 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=1773 --- Comment #123 from Jason Merrill jason at gcc dot gnu.org 2011-10-31 19:34:32 UTC --- Author: jason Date: Mon Oct 31 19:34:26 2011 New Revision: 180708 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=180708 Log: PR libstdc++/1773 *

[Bug c++/50917] [4.7 Regression] Mozilla build fails because of C++11 user-defined literals

2011-10-31 Thread markus at trippelsdorf dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50917 Markus Trippelsdorf markus at trippelsdorf dot de changed: What|Removed |Added Status|UNCONFIRMED

[Bug c++/50920] add a -std=c++11 option to the driver

2011-10-31 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50920 --- Comment #1 from Jason Merrill jason at gcc dot gnu.org 2011-10-31 19:34:22 UTC --- Author: jason Date: Mon Oct 31 19:34:14 2011 New Revision: 180707 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=180707 Log: PR c++/50920

[Bug fortran/50937] STAT option with ALLOCATE statement on large arrays

2011-10-31 Thread sgk at troutmask dot apl.washington.edu
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50937 --- Comment #7 from Steve Kargl sgk at troutmask dot apl.washington.edu 2011-10-31 19:50:41 UTC --- On Mon, Oct 31, 2011 at 07:25:38PM +, fwi at inducks dot org wrote: Has the bug been corrected in recent versions of gfortran, or do you

[Bug c/50922] infinite loop when optimized

2011-10-31 Thread pfister at pci dot uzh.ch
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50922 --- Comment #7 from Rolf Pfister pfister at pci dot uzh.ch 2011-10-31 19:58:07 UTC --- I wrote: long x=2147483647; ulong c; for(c=0;c2147483648UL;c++) { lcdSendData(x--); } I tried this new variant with gcc (Ubuntu

[Bug fortran/50937] STAT option with ALLOCATE statement on large arrays

2011-10-31 Thread fwi at inducks dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50937 --- Comment #8 from fwi at inducks dot org 2011-10-31 20:17:51 UTC --- I do not(In reply to comment #7) On Mon, Oct 31, 2011 at 07:25:38PM +, fwi at inducks dot org wrote: Yes, the problem of integer overflow that Janne mentioned has been

[Bug c/50922] infinite loop when optimized

2011-10-31 Thread manu at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50922 --- Comment #8 from Manuel López-Ibáñez manu at gcc dot gnu.org 2011-10-31 20:38:17 UTC --- (In reply to comment #7) I tried this new variant with gcc (Ubuntu 4.4.1-4ubuntu9) 4.4.1 With this version it works correctly. Also with avr-gcc this

[Bug rtl-optimization/50938] x86 alloca adds 15 twice

2011-10-31 Thread ebotcazou at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50938 Eric Botcazou ebotcazou at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW Last

[Bug fortran/50937] STAT option with ALLOCATE statement on large arrays

2011-10-31 Thread sgk at troutmask dot apl.washington.edu
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50937 --- Comment #9 from Steve Kargl sgk at troutmask dot apl.washington.edu 2011-10-31 21:02:52 UTC --- On Mon, Oct 31, 2011 at 08:17:51PM +, fwi at inducks dot org wrote: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50937 --- Comment #8 from

[Bug fortran/46328] [OOP] type-bound operator call with non-trivial polymorphic operand

2011-10-31 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46328 --- Comment #5 from janus at gcc dot gnu.org 2011-10-31 21:03:49 UTC --- For the code in comment #2, there is actually a problem with the 'class_ok' attribute, which can be fixed with the following patchlet: Index: gcc/fortran/resolve.c

[Bug fortran/46328] [OOP] type-bound operator call with non-trivial polymorphic operand

2011-10-31 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46328 --- Comment #6 from janus at gcc dot gnu.org 2011-10-31 21:51:22 UTC --- One other thing that just occurred to me is that one might consider cleaning up 'gfc_extend_expr' by removing the 'real_error' argument and returning {MATCH_YES, MATCH_NO,

[Bug ada/50503] GNAT fails to compile a modification of B433001 ACATS test

2011-10-31 Thread simon at pushface dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50503 simon at pushface dot org changed: What|Removed |Added CC||simon at pushface dot org ---

[Bug target/45650] [4.4/4.5/4.6 regression] FreeBSD/ia64 builds fails: hidden symbol `_Unwind_FindTableEntry' isn't defined

2011-10-31 Thread gerald at pfeifer dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45650 Gerald Pfeifer gerald at pfeifer dot com changed: What|Removed |Added Status|UNCONFIRMED |NEW Last

[Bug c++/50920] add a -std=c++11 option to the driver

2011-10-31 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50920 Jason Merrill jason at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug debug/50869] [4.7 Regression] ice in vt_expand_var_loc_chain

2011-10-31 Thread aoliva at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50869 --- Comment #4 from Alexandre Oliva aoliva at gcc dot gnu.org 2011-11-01 02:09:04 UTC --- Author: aoliva Date: Tue Nov 1 02:09:00 2011 New Revision: 180725 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=180725 Log: PR debug/50869 *

[Bug c++/50939] New: [C++0x] lambda expression causes ICE when lambda captures const variable and odr-uses the variable in function templates

2011-10-31 Thread gwtnb0 at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50939 Bug #: 50939 Summary: [C++0x] lambda expression causes ICE when lambda captures const variable and odr-uses the variable in function templates Classification: Unclassified