[Bug target/57949] [powerpc64] Structure parameter alignment issue with vector extensions

2013-07-30 Thread wschmidt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57949 --- Comment #7 from Bill Schmidt --- I rewrote the test case to use the IBM vector extensions and ran it through xlc. The generated code shows that xlc addresses the code as expected by the ABI (and contrary to what's done by gcc). So this adds

[Bug rtl-optimization/58034] New: glibc nptl/tst-cleanup2 fail due to scheduling

2013-07-30 Thread amodra at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58034 Bug ID: 58034 Summary: glibc nptl/tst-cleanup2 fail due to scheduling Product: gcc Version: 4.8.2 Status: UNCONFIRMED Severity: normal Priority: P3 Component: rtl

[Bug rtl-optimization/58033] counterproductive bb-reorder

2013-07-30 Thread tejohnson at google dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58033 --- Comment #4 from Teresa Johnson --- On Tue, Jul 30, 2013 at 2:40 PM, olegendo at gcc dot gnu.org wrote: > http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58033 > > --- Comment #3 from Oleg Endo --- > Created attachment 30574 > --> http://gcc.gn

[Bug c++/58032] Bogus error: declared using local type ..., is used but never defined

2013-07-30 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58032 Paolo Carlini changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug c++/51048] Class template inheritance doesn't work well with function-local types

2013-07-30 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51048 Paolo Carlini changed: What|Removed |Added CC||ppluzhnikov at google dot com --- Comment

[Bug middle-end/57748] [4.8/4.9 Regression] ICE on ARM with -mfloat-abi=softfp -mfpu=neon

2013-07-30 Thread bernd.edlinger at hotmail dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57748 --- Comment #8 from Bernd Edlinger --- (In reply to Martin Jambor from comment #7) > In any event, it is clear that > the code in expand_assignment cannot cope with unaligned tem and non-NULL > offset. So currently I'm considering the following p

[Bug c++/57673] pack sizeof ... groups ellipsis with preceding expression

2013-07-30 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57673 Paolo Carlini changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug rtl-optimization/58033] counterproductive bb-reorder

2013-07-30 Thread olegendo at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58033 --- Comment #3 from Oleg Endo --- Created attachment 30574 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=30574&action=edit bbro dump (In reply to Teresa Johnson from comment #2) > > I assume it is the above branch that is the issue (not th

[Bug rtl-optimization/58033] counterproductive bb-reorder

2013-07-30 Thread tejohnson at google dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58033 --- Comment #2 from Teresa Johnson --- On Tue, Jul 30, 2013 at 2:00 PM, olegendo at gcc dot gnu.org wrote: > http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58033 > > Bug ID: 58033 >Summary: counterproductive bb-reorder >

[Bug rtl-optimization/58033] counterproductive bb-reorder

2013-07-30 Thread olegendo at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58033 --- Comment #1 from Oleg Endo --- ... according to the changelog you've been doing some things on bb-reorder.c, maybe you have an idea?

[Bug rtl-optimization/58033] New: counterproductive bb-reorder

2013-07-30 Thread olegendo at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58033 Bug ID: 58033 Summary: counterproductive bb-reorder Product: gcc Version: 4.9.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: rtl-optimization

[Bug target/54682] [SH] Replace constant loads with reg-reg copies

2013-07-30 Thread olegendo at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54682 --- Comment #2 from Oleg Endo --- A related case, but the other way around: #include std::bitset<32> make_bits (void) { std::bitset<32> r; for (auto&& i : { 4, 5, 6, 10 }) if (i < r.size ()) r.set (i); return r; } results in t

[Bug c++/58032] New: Bogus error: declared using local type ..., is used but never defined

2013-07-30 Thread ppluzhnikov at google dot com
ResultCallback { void Run(T a) { } }; template ResultCallback* NewCallback(void (*function)(T)) { return new FunctionResultCallback; } int main(int argc, char** argv) { struct Bar { static void Do(Bar*) { } }; NewCallback(&Bar::Do)->Run(0); } Using g++ (GCC) 4.9.0 20130730 (exper

[Bug fortran/58001] Make it possible to silence "Extension: Tab character in format" warning

2013-07-30 Thread sgk at troutmask dot apl.washington.edu
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58001 --- Comment #8 from Steve Kargl --- On Tue, Jul 30, 2013 at 06:16:27PM +, dominiq at lps dot ens.fr wrote: > http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58001 > > --- Comment #7 from Dominique d'Humieres --- > > With -Wno-tabs, gfortran shou

[Bug fortran/58001] Make it possible to silence "Extension: Tab character in format" warning

2013-07-30 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58001 --- Comment #7 from Dominique d'Humieres --- > With -Wno-tabs, gfortran should report a warning for the > occurence of every tab used in the context of a character > from the Fortran character set. Taking your code, which I've > deleted here, and

[Bug fortran/58001] Make it possible to silence "Extension: Tab character in format" warning

2013-07-30 Thread sgk at troutmask dot apl.washington.edu
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58001 --- Comment #6 from Steve Kargl --- On Tue, Jul 30, 2013 at 12:59:00PM +, dominiq at lps dot ens.fr wrote: > > If compiled with -Wno-tabs, it gives > > pr58001.f90:2.1: > > print 1894 > 1 > Warning: Nonconforming tab character at (1) > pr

[Bug fortran/58001] Make it possible to silence "Extension: Tab character in format" warning

2013-07-30 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58001 --- Comment #5 from Dominique d'Humieres --- Created attachment 30573 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=30573&action=edit test case with tabs

[Bug fortran/58001] Make it possible to silence "Extension: Tab character in format" warning

2013-07-30 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58001 --- Comment #4 from Dominique d'Humieres --- > According to both vi and nedit, there are no tabs in the > above code. I assume that this is cut-n-paste from an > xterm term. With Safari I see the tabs in comment #2, but not in what has been past

[Bug libfortran/58020] Code for handling IEEE exceptions

2013-07-30 Thread fkrogh#gcc at mathalacarte dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58020 --- Comment #9 from Fred Krogh --- Concering Fortran language standards, our guru is W. Van Snyder a long time member of the Fortran Standards committee. He has said to me in an email: "It's OK not to support stuff, but the inquiry functions have

[Bug fortran/58023] [F03] ICE on invalid with bad PPC declaration

2013-07-30 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58023 --- Comment #5 from janus at gcc dot gnu.org --- Comment 0 can be fixed by the following additional hunk in resolve.c: @@ -12148,7 +12147,7 @@ resolve_fl_derived0 (gfc_symbol *sym) "must have at least one argument",

[Bug fortran/58001] Make it possible to silence "Extension: Tab character in format" warning

2013-07-30 Thread sgk at troutmask dot apl.washington.edu
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58001 --- Comment #3 from Steve Kargl --- On Tue, Jul 30, 2013 at 12:59:00PM +, dominiq at lps dot ens.fr wrote: > > print *, "AstringwithTabsinsteadofspaces" > print 1894 > 1894 format('123') > end >

[Bug libfortran/58020] Code for handling IEEE exceptions

2013-07-30 Thread sgk at troutmask dot apl.washington.edu
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58020 --- Comment #8 from Steve Kargl --- On Tue, Jul 30, 2013 at 05:31:01PM +, dominiq at lps dot ens.fr wrote: > > with -m32. The gfortran rationale is that Z'FF80' is converted to the > highest integer kind (8 with -m32 or 16 with -m64) as 2

[Bug fortran/58023] [F03] ICE on invalid with bad PPC declaration

2013-07-30 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58023 --- Comment #4 from janus at gcc dot gnu.org --- (In reply to janus from comment #2) > Draft patch: Unfortunately, this patch only fixes comment 1, but not comment 0!

[Bug libfortran/58020] Code for handling IEEE exceptions

2013-07-30 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58020 --- Comment #7 from Dominique d'Humieres --- > I see your bug report. There are two matters to track down here. > The first one is the diagnostic of 'PR58027'. This may require you > to report a line number. That would be great. Testing that I h

[Bug c++/55004] [meta-bug] constexpr issues

2013-07-30 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55004 Bug 55004 depends on bug 57901, which changed state. Bug 57901 Summary: [4.8/4.9 Regression] Cannot call-by-value such that class has non-trivial (constexpr) move constructor http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57901 What|

[Bug c++/57901] [4.8/4.9 Regression] Cannot call-by-value such that class has non-trivial (constexpr) move constructor

2013-07-30 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57901 Jason Merrill changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/58022] [4.8 Regression] Compiler rejects abstract class in template class with friend operator<

2013-07-30 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58022 Jason Merrill changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Bug c++/57947] internal compiler error: Segmentation fault using extended initializer lists without -std=c++11 or -std=gnu++11

2013-07-30 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57947 Paolo Carlini changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/57673] pack sizeof ... groups ellipsis with preceding expression

2013-07-30 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57673 Paolo Carlini changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|unassigned at

[Bug c++/58031] New: invalid class template partial specialization accepted where argument list identical to primary template

2013-07-30 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58031 Bug ID: 58031 Summary: invalid class template partial specialization accepted where argument list identical to primary template Product: gcc Version: 4.9.0 Status: UNCONFI

[Bug target/57989] gcc for ARM defines __ARM_FEATURE_SIMD32, but does provide SIMD32 (ARMv6) intrinsics

2013-07-30 Thread rearnsha at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57989 Richard Earnshaw changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/57673] pack sizeof ... groups ellipsis with preceding expression

2013-07-30 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57673 Paolo Carlini changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug rtl-optimization/58029] base_alias_check says pretend-args saves and varargs accesses don't alias

2013-07-30 Thread amylaar at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58029 --- Comment #1 from Jorn Wolfgang Rennecke --- Created attachment 30572 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=30572&action=edit patch This patch fixes the problem for the epiphany, however, it appears to cause 37 guality regressions

[Bug libstdc++/58030] Mismatched tags in std::hash friends

2013-07-30 Thread bluescarni at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58030 --- Comment #3 from Francesco Biscani --- Sorry, I did search for "mismatched tags" but it seemed like nothing came up :/ Thanks for taking the time to reply.

[Bug libstdc++/58030] Mismatched tags in std::hash friends

2013-07-30 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58030 --- Comment #2 from Jonathan Wakely --- There's nothing to "fix", the code is correct, the warning is stupid.

[Bug libstdc++/56627] class hash instead of struct hash

2013-07-30 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56627 Jonathan Wakely changed: What|Removed |Added CC||bluescarni at gmail dot com --- Comment

[Bug libstdc++/58030] Mismatched tags in std::hash friends

2013-07-30 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58030 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug middle-end/57748] [4.8/4.9 Regression] ICE on ARM with -mfloat-abi=softfp -mfpu=neon

2013-07-30 Thread jamborm at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57748 --- Comment #7 from Martin Jambor --- (In reply to Bernd Edlinger from comment #6) > hhmm.. > > set_ptr_info_alignment is always called with align=4, > and by the way, the crash goes away if I change this line > (but I cannot tell if the code is

[Bug libstdc++/58030] New: Mismatched tags in std::hash friends

2013-07-30 Thread bluescarni at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58030 Bug ID: 58030 Summary: Mismatched tags in std::hash friends Product: gcc Version: 4.8.1 Status: UNCONFIRMED Severity: minor Priority: P3 Component: libstdc++

[Bug libfortran/58020] Code for handling IEEE exceptions

2013-07-30 Thread richard.koolhans at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58020 --- Comment #6 from richard.koolhans at gmail dot com --- Bonjour Dominique- Le reste sera l'anglais! Voilà pour mon cours de français. I see your bug report. There are two matters to track down here. The first one is the diagnostic of 'PR58027'.

[Bug fortran/58026] [4.9 Regression] [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1521

2013-07-30 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58026 --- Comment #5 from janus at gcc dot gnu.org --- (In reply to janus from comment #4) > Draft patch: ... seems to regtest cleanly.

[Bug libfortran/58020] Code for handling IEEE exceptions

2013-07-30 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58020 --- Comment #5 from Tobias Burnus --- Cross-ref: See also PR29383. (In reply to Fred Krogh from comment #0) > Dr. Richard Hanson has written code to provide IEEE exception handling to > gfortran. Cool! I think it should be linked from the Wiki a

[Bug rtl-optimization/58029] New: base_alias_check says pretend-args saves and varargs accesses don't alias

2013-07-30 Thread amylaar at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58029 Bug ID: 58029 Summary: base_alias_check says pretend-args saves and varargs accesses don't alias Product: gcc Version: 4.9.0 Status: UNCONFIRMED Keywords: wrong-

[Bug rtl-optimization/53705] wrong code with custom flags - stores to memory are lost

2013-07-30 Thread amylaar at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53705 Jorn Wolfgang Rennecke changed: What|Removed |Added CC||amylaar at gcc dot gnu.org --- C

[Bug tree-optimization/58028] New: [4.9 Regression] Several failures in libgomp.graphite after revision 200946

2013-07-30 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58028 Bug ID: 58028 Summary: [4.9 Regression] Several failures in libgomp.graphite after revision 200946 Product: gcc Version: 4.9.0 Status: UNCONFIRMED Severity: norm

[Bug fortran/58023] [F03] ICE on invalid with bad PPC declaration

2013-07-30 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58023 --- Comment #3 from janus at gcc dot gnu.org --- (In reply to janus from comment #2) > Draft patch: Regtests cleanly. Will commit as obvious.

[Bug fortran/58001] Make it possible to silence "Extension: Tab character in format" warning

2013-07-30 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58001 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug libfortran/58020] Code for handling IEEE exceptions

2013-07-30 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58020 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/58027] New: "Arithmetic overflow converting ..." in PARAMETER triggers an ICE

2013-07-30 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58027 Bug ID: 58027 Summary: "Arithmetic overflow converting ..." in PARAMETER triggers an ICE Product: gcc Version: 4.9.0 Status: UNCONFIRMED Severity: normal

[Bug c++/57947] internal compiler error: Segmentation fault using extended initializer lists without -std=c++11 or -std=gnu++11

2013-07-30 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57947 Paolo Carlini changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|unassigned at

[Bug fortran/58026] [4.9 Regression] [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1521

2013-07-30 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58026 --- Comment #4 from janus at gcc dot gnu.org --- Draft patch: Index: gcc/fortran/decl.c === --- gcc/fortran/decl.c(revision 201331) +++ gcc/fortran/decl.c(working copy) @@ -42

[Bug fortran/58026] [4.9 Regression] [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1521

2013-07-30 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58026 janus at gcc dot gnu.org changed: What|Removed |Added CC||janus at gcc dot gnu.org

[Bug fortran/57987] Fortran finalizers considered extern-inline by middle-end

2013-07-30 Thread hubicka at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57987 Jan Hubicka changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug testsuite/57413] FAIL: gcc.dg/debug/dwarf2/discriminator.c scan-assembler on x86_64-apple-darwin10, Solaris/x86

2013-07-30 Thread ro at CeBiTec dot Uni-Bielefeld.DE
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57413 --- Comment #5 from ro at CeBiTec dot Uni-Bielefeld.DE --- > --- Comment #4 from Dominique d'Humieres --- >> Closing this bug was premature: as I've mentioned before, I've been >> working on a patch to detect if the necessary support is present.

[Bug fortran/58026] [4.9 Regression] internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521

2013-07-30 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58026 Tobias Burnus changed: What|Removed |Added Keywords||error-recovery, |

[Bug testsuite/57413] FAIL: gcc.dg/debug/dwarf2/discriminator.c scan-assembler on x86_64-apple-darwin10, Solaris/x86

2013-07-30 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57413 --- Comment #4 from Dominique d'Humieres --- > Closing this bug was premature: as I've mentioned before, I've been > working on a patch to detect if the necessary support is present. Sorry, but the "mentioned before" is not part of the audit tra

[Bug testsuite/57413] FAIL: gcc.dg/debug/dwarf2/discriminator.c scan-assembler on x86_64-apple-darwin10, Solaris/x86

2013-07-30 Thread ro at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57413 Rainer Orth changed: What|Removed |Added Status|RESOLVED|ASSIGNED Resolution|WONTFIX

[Bug c++/57947] internal compiler error: Segmentation fault using extended initializer lists without -std=c++11 or -std=gnu++11

2013-07-30 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57947 Paolo Carlini changed: What|Removed |Added Status|ASSIGNED|NEW Assignee|paolo.carlini at o

[Bug tree-optimization/52402] IPA-SRA creates aligned loads from unaligned memory

2013-07-30 Thread amylaar at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52402 Jorn Wolfgang Rennecke changed: What|Removed |Added CC||amylaar at gcc dot gnu.org

[Bug c++/58014] vshuf-v2si.C fails at -O3 on hppa64

2013-07-30 Thread ramana at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58014 --- Comment #1 from Ramana Radhakrishnan --- No access to any hppa machine for me to consider reproducing the issue and the compile farm machines are down. I did do some work in this area a year ago but I don't have any commits in the range men

[Bug rtl-optimization/57968] MODE_EXIT switches inserted too early

2013-07-30 Thread chrbr at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57968 chrbr at gcc dot gnu.org changed: What|Removed |Added CC||chrbr at gcc dot gnu.org --- Co

[Bug c++/57947] internal compiler error: Segmentation fault using extended initializer lists without -std=c++11 or -std=gnu++11

2013-07-30 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57947 Paolo Carlini changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|unassigned at

[Bug rtl-optimization/57637] [4.9 regression] Miscompare on 178.galgel in SPEC2000 on arm

2013-07-30 Thread ktkachov at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57637 ktkachov at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug rtl-optimization/57637] [4.9 regression] Miscompare on 178.galgel in SPEC2000 on arm

2013-07-30 Thread ktkachov at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57637 ktkachov at gcc dot gnu.org changed: What|Removed |Added Target Milestone|--- |4.9.0

[Bug fortran/58023] [F03] ICE on invalid with bad PPC declaration

2013-07-30 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58023 janus at gcc dot gnu.org changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|una

[Bug fortran/58023] [F03] ICE on invalid with bad PPC declaration

2013-07-30 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58023 janus at gcc dot gnu.org changed: What|Removed |Added Keywords||ice-on-invalid-code

[Bug libstdc++/56627] class hash instead of struct hash

2013-07-30 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56627 --- Comment #11 from Jonathan Wakely --- I'm think I'm just going to change the code to shut everyone up, despite it being a nonsense warning about a non-issue, because I'm sick of these discussions. Fine, you win, we'll silence the stupid warnin

[Bug fortran/58026] [4.9 Regression] internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521

2013-07-30 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58026 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug bootstrap/39968] Should plugins use shared library?

2013-07-30 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39968 Dominique d'Humieres changed: What|Removed |Added Status|NEW |WAITING CC|

[Bug fortran/57530] [OOP] Wrongly rejects type_pointer => class_target (which have identical declared type)

2013-07-30 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57530 --- Comment #8 from Tobias Burnus --- The original test case (cf. comment 0) is now solved. However, only "type => class" is handled. Still missing is "type = class", where CLASS is a (coarray) scalar or (coarray) array variable, function or an a

[Bug fortran/57530] [OOP] Wrongly rejects type_pointer => class_target (which have identical declared type)

2013-07-30 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57530 --- Comment #6 from Tobias Burnus --- Author: burnus Date: Tue Jul 30 07:18:54 2013 New Revision: 201328 URL: http://gcc.gnu.org/viewcvs?rev=201328&root=gcc&view=rev Log: 2013-07-30 Tobias Burnus PR fortran/57530 * trans-expr.

[Bug fortran/57530] [OOP] Wrongly rejects type_pointer => class_target (which have identical declared type)

2013-07-30 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57530 --- Comment #7 from Tobias Burnus --- Author: burnus Date: Tue Jul 30 07:20:43 2013 New Revision: 201329 URL: http://gcc.gnu.org/viewcvs?rev=201329&root=gcc&view=rev Log: 2013-07-30 Tobias Burnus PR fortran/57530 * symbol.c (g