[Bug c++/66666] ARM compiled code segmentation fault on multiple inheritance

2015-06-26 Thread antonio.poggiali at datalogic dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=6 --- Comment #2 from Antonio Poggiali --- (In reply to Ramana Radhakrishnan from comment #1) > Obvious "dumb" question given this is a cross-environnment - I'm assuming > that you have the same libstdc++ in both places ? Yes, it is the same. I've

[Bug rtl-optimization/66412] [5/6 Regression] ICE on valid code at -O2 and -O3 with -g enabled in simplify_subreg, at simplify-rtx.c:5748

2015-06-26 Thread uros at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66412 --- Comment #9 from uros at gcc dot gnu.org --- Author: uros Date: Fri Jun 26 07:45:07 2015 New Revision: 224994 URL: https://gcc.gnu.org/viewcvs?rev=224994&root=gcc&view=rev Log: PR target/66412 * config/i386/i386.md (various spl

[Bug target/65711] arm*-linux* "link" spec passes '-dynamic-linker' even for '-shared'

2015-06-26 Thread ramana at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65711 Ramana Radhakrishnan changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug rtl-optimization/65371] arm loop with volatile variable

2015-06-26 Thread ramana at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65371 Ramana Radhakrishnan changed: What|Removed |Added Keywords||missed-optimization S

[Bug fortran/66633] [5/6 regression] ICE on valid "verify_gimple failed" with OpenMP

2015-06-26 Thread ebotcazou at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66633 --- Comment #7 from Eric Botcazou --- The error mark is inserted by omp-low.c:omp_copy_decl for FRAME.1: spl () { static real(kind=8) fli (void); struct FRAME.spl FRAME.1; __builtin_init_trampoline (&FRAME.1.fli, fli, &FRAME.1); #pragma

[Bug fortran/66633] [5/6 regression] ICE on valid "verify_gimple failed" with OpenMP

2015-06-26 Thread ebotcazou at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66633 --- Comment #8 from Eric Botcazou --- The problem is that the FRAME variable is created too late for the GOMP machinery in tree-nested.c to handle it.

[Bug middle-end/66633] [5/6 regression] ICE on valid "verify_gimple failed" with OpenMP

2015-06-26 Thread ebotcazou at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66633 Eric Botcazou changed: What|Removed |Added Component|fortran |middle-end --- Comment #9 from Eric Botc

[Bug rtl-optimization/65371] arm loop with volatile variable

2015-06-26 Thread gcc-bugzilla at enginuities dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65371 --- Comment #4 from Stuart --- The assembly generated from Comment #1 looks good. However, the assembly generated from Comment #3 hasn't improved, it still contains the unnecessary mov instruction on line 2 (mov r2, r3). The first instruction m

[Bug target/66648] [4.9/5/6 regression] incorrect memcpy expansion with unrolled_loop strategy at -O2

2015-06-26 Thread ubizjak at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66648 Uroš Bizjak changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug rtl-optimization/66412] [5/6 Regression] ICE on valid code at -O2 and -O3 with -g enabled in simplify_subreg, at simplify-rtx.c:5748

2015-06-26 Thread uros at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66412 --- Comment #10 from uros at gcc dot gnu.org --- Author: uros Date: Fri Jun 26 10:30:37 2015 New Revision: 225006 URL: https://gcc.gnu.org/viewcvs?rev=225006&root=gcc&view=rev Log: PR target/66412 * config/i386/i386.md (various sp

[Bug tree-optimization/66677] New: [6 Regression] ICE: in vect_transform_stmt, at tree-vect-stmts.c:7626

2015-06-26 Thread trippels at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66677 Bug ID: 66677 Summary: [6 Regression] ICE: in vect_transform_stmt, at tree-vect-stmts.c:7626 Product: gcc Version: 6.0 Status: UNCONFIRMED Severity: normal

[Bug tree-optimization/66677] [6 Regression] ICE: in vect_transform_stmt, at tree-vect-stmts.c:7626

2015-06-26 Thread trippels at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66677 --- Comment #1 from Markus Trippelsdorf --- trippels@gcc2-power8 libyuv_libyuv % cat row_common.ii int *a, *b; void fn1(char *p1) { int x; for (; x; x += 2) { a[x] = p1[0]; a[x + 1] = 0; b[x] = b[x + 1] = p1[1]; p1 += 4; } }

[Bug bootstrap/66638] [6 Regression] profiledbootstrap failure on x86-64 with LTO

2015-06-26 Thread amker at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66638 --- Comment #4 from amker at gcc dot gnu.org --- Author: amker Date: Fri Jun 26 11:12:20 2015 New Revision: 225008 URL: https://gcc.gnu.org/viewcvs?rev=225008&root=gcc&view=rev Log: PR bootstrap/66638 * tree-ssa-loop-niter.c (loo

[Bug tree-optimization/66678] New: loop counter not accurately described by vrp

2015-06-26 Thread vries at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66678 Bug ID: 66678 Summary: loop counter not accurately described by vrp Product: gcc Version: 6.0 Status: UNCONFIRMED Severity: minor Priority: P3 Component: tree-op

[Bug c++/66666] ARM compiled code segmentation fault on multiple inheritance

2015-06-26 Thread antonio.poggiali at datalogic dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=6 --- Comment #3 from Antonio Poggiali --- I've understand a little better the problem. The compiler passes to std::list copy constructor a different address respect to the destination variable. This causes size() call to fail (endless loop or seg

[Bug c++/66666] ARM compiled code segmentation fault on multiple inheritance

2015-06-26 Thread antonio.poggiali at datalogic dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=6 --- Comment #4 from Antonio Poggiali --- I've understand a little better the problem. The compiler passes to std::list copy constructor a different address respect to the destination variable. This causes size() call to fail (endless loop or seg

[Bug target/66648] [4.9/5/6 regression] incorrect memcpy expansion with unrolled_loop strategy at -O2

2015-06-26 Thread ubizjak at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66648 --- Comment #3 from Uroš Bizjak --- Untested patch: --cut here-- Index: config/i386/i386.c === --- config/i386/i386.c (revision 224993) +++ config/i386/i386.c (working copy) @@ -2

[Bug tree-optimization/66677] [6 Regression] ICE: in vect_transform_stmt, at tree-vect-stmts.c:7626

2015-06-26 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66677 Richard Biener changed: What|Removed |Added Target|powerpc64le-unknown-linux-g | |nu

[Bug c++/66666] ARM wrong copy constructor address on multiple inheritance

2015-06-26 Thread antonio.poggiali at datalogic dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=6 --- Comment #5 from Antonio Poggiali --- Sorry but this comment is incorrect. See the next one.

[Bug fortran/66679] New: ICE with class(*) and transfer

2015-06-26 Thread polajnar.miha at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66679 Bug ID: 66679 Summary: ICE with class(*) and transfer Product: gcc Version: 5.1.1 Status: UNCONFIRMED Severity: minor Priority: P3 Component: fortran A

[Bug tree-optimization/66678] loop counter not accurately described by vrp

2015-06-26 Thread vries at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66678 --- Comment #1 from vries at gcc dot gnu.org --- I. (In reply to vries from comment #0) > AFAIU: > - the loop iv i_1 has range [0, 4294967294], and This bit is incorrect. i_1 can actually be 4294967295. II. With this demonstrator patch: ...

[Bug fortran/66680] New: ICE with openmp, a loop and a type bound procedure

2015-06-26 Thread polajnar.miha at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66680 Bug ID: 66680 Summary: ICE with openmp, a loop and a type bound procedure Product: gcc Version: 5.1.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component

[Bug fortran/66680] ICE with openmp, a loop and a type bound procedure

2015-06-26 Thread polajnar.miha at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66680 --- Comment #1 from Miha Polajnar --- Created attachment 35856 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=35856&action=edit Source code for the described bug.

[Bug target/64134] (vector float){0, 0, b, a} Uses stores when it does not need to

2015-06-26 Thread alalaw01 at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64134 alalaw01 at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED Resolution

[Bug fortran/66681] New: Wrong result in assigning this_image() to a complex coarray

2015-06-26 Thread damian at sourceryinstitute dot org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66681 Bug ID: 66681 Summary: Wrong result in assigning this_image() to a complex coarray Product: gcc Version: 6.0 Status: UNCONFIRMED Severity: normal Prio

[Bug bootstrap/66638] [6 Regression] profiledbootstrap failure on x86-64 with LTO

2015-06-26 Thread hjl.tools at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66638 --- Comment #5 from H.J. Lu --- r225008 gave me: ../../src-trunk/gcc/../libcpp/include/line-map.h: In function ‘linemap_check_ordinary’: ../../src-trunk/gcc/../libcpp/include/line-map.h:325:10: internal compiler error: in check_die, at dwarf2out

[Bug c/66682] New: Lots of macro expansion, very slow compilation

2015-06-26 Thread cr88192 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66682 Bug ID: 66682 Summary: Lots of macro expansion, very slow compilation Product: gcc Version: unknown Status: UNCONFIRMED Severity: minor Priority: P3 Component: c

[Bug c/66682] Lots of macro expansion, very slow compilation

2015-06-26 Thread manu at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66682 Manuel López-Ibáñez changed: What|Removed |Added CC||manu at gcc dot gnu.org --- Commen

[Bug debug/66301] internal compiler error when using -fopt-info

2015-06-26 Thread jamborm at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66301 --- Comment #6 from Martin Jambor --- Author: jamborm Date: Fri Jun 26 14:59:11 2015 New Revision: 225019 URL: https://gcc.gnu.org/viewcvs?rev=225019&root=gcc&view=rev Log: Fix PR 66301 - check for dump_file in eliminate_dom_walker::before_dom_c

[Bug c/66682] Lots of macro expansion, very slow compilation

2015-06-26 Thread manu at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66682 --- Comment #2 from Manuel López-Ibáñez --- Note that this code is not really "stand-alone": See https://gcc.gnu.org/bugs/#need

[Bug bootstrap/66638] [6 Regression] profiledbootstrap failure on x86-64 with LTO

2015-06-26 Thread trippels at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66638 Markus Trippelsdorf changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Bug c/66682] Lots of macro expansion, very slow compilation

2015-06-26 Thread cr88192 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66682 cr88192 at gmail dot com changed: What|Removed |Added Version|unknown |4.8.2 --- Comment #3 from cr88

[Bug c/66683] New: Large macro with float multiplications fails

2015-06-26 Thread morphex at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66683 Bug ID: 66683 Summary: Large macro with float multiplications fails Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: c

[Bug c/66682] Lots of macro expansion, very slow compilation

2015-06-26 Thread manu at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66682 Manuel López-Ibáñez changed: What|Removed |Added Keywords||compile-time-hog Statu

[Bug fortran/66680] [Regression 5] ICE with openmp, a loop and a type bound procedure

2015-06-26 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66680 kargl at gcc dot gnu.org changed: What|Removed |Added CC||kargl at gcc dot gnu.org

[Bug fortran/66680] [5 Regression] ICE with openmp, a loop and a type bound procedure

2015-06-26 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66680 kargl at gcc dot gnu.org changed: What|Removed |Added Summary|[Regression 5] ICE with |[5 Regression] ICE with

[Bug fortran/66605] -Wunused-parameter causes internal compiler error with gfortran 5.1.0

2015-06-26 Thread manu at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66605 Manuel López-Ibáñez changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |manu at gcc dot gnu.org ---

[Bug debug/66301] internal compiler error when using -fopt-info

2015-06-26 Thread jamborm at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66301 --- Comment #7 from Martin Jambor --- Author: jamborm Date: Fri Jun 26 17:13:51 2015 New Revision: 225023 URL: https://gcc.gnu.org/viewcvs?rev=225023&root=gcc&view=rev Log: Fix PR 66301. 2015-06-26 Martin Jambor PR debug/66301

[Bug debug/66301] internal compiler error when using -fopt-info

2015-06-26 Thread jamborm at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66301 Martin Jambor changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug c++/66684] New: [6 Regression] ICE in merge_exception_specifiers, at cp/typeck2.c:2114

2015-06-26 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66684 Bug ID: 66684 Summary: [6 Regression] ICE in merge_exception_specifiers, at cp/typeck2.c:2114 Product: gcc Version: 6.0 Status: UNCONFIRMED Keywords: ice-on-inv

[Bug preprocessor/8270] [4.9/5/6 Regression] back-slash white space newline with comments, no warning

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=8270 --- Comment #59 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug bootstrap/61763] [4.9 Regression] bootstrap with -O3 gives comparison failure

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61763 --- Comment #10 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug preprocessor/58893] [4.9 Regression] :0:0: internal compiler error: Segmentation fault

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58893 --- Comment #16 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug tree-optimization/42108] [4.9 Regression] 50% performance regression

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42108 --- Comment #71 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug rtl-optimization/55943] [4.9/5/6 Regression] ICE in gen_reg_rtx

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55943 --- Comment #13 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug c/12245] [4.9/5/6 regression] Uses lots of memory when compiling large initialized arrays

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=12245 --- Comment #58 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug target/47481] [4.9/5/6 Regression] spill failure with -O2 -msoft-float on Ada RTS

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47481 --- Comment #14 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug fortran/60500] [4.9/5/6 Regression] Spurious warning on derived type initialization

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60500 --- Comment #7 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug middle-end/66178] [4.9/5/6 Regression] Another label as values ICE in gen_reg_rtx, at emit-rtl.c:1059

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66178 --- Comment #6 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug bootstrap/33781] [4.9/5/6 Regression] "Arg list too long" building libgcc.a

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=33781 --- Comment #36 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug target/37633] [4.9/5/6 Regression] wrong register use on sh64

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37633 --- Comment #16 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug fortran/56852] [4.9/5/6 Regression] ICE on invalid: "Bad array reference" for an undeclared loop variable

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56852 --- Comment #10 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug middle-end/57955] [4.9/5/6 Regression] Uniquization of constants reduces alignment of initializers

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57955 --- Comment #12 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug tree-optimization/56049] [4.9/5/6 Regression] Simplification to constants not done

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56049 --- Comment #14 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug target/62231] [4.9 regression] Exception handling broken on powerpc-e500v2-linux-gnuspe

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62231 --- Comment #18 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug testsuite/36443] [4.9/5/6 Regression]: HOSTCC doesn't work with installed gcc

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36443 --- Comment #62 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug middle-end/50210] [4.9/5/6 Regression] ICE: in create_linear_expr_from_tree, at graphite-sese-to-poly.c:1137 with fgraphite-identity -ffast-math -fno-tree-scev-cprop -fstrict-overflow

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50210 --- Comment #9 from Jakub Jelinek --- GCC 4.9.3 has been released.

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

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57413 --- Comment #10 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug preprocessor/24976] [4.9/5/6 Regression] simple hexadecimal number and plus/minus and no space

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24976 --- Comment #18 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug target/66137] [4.9/5/6 Regression] ICE with -ffixed-ebp

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66137 --- Comment #2 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug libgcj/50421] [4.9/5/6 Regression] GC Warning: Out of Memory! Returning NIL!

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50421 --- Comment #8 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug target/54063] [4.9/5/6 regression] on powerpc64 gcc 4.9/5/6 generates larger code for global variable accesses than gcc 4.7

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54063 --- Comment #12 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug debug/54114] VTA compile-time performance could be improved

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54114 --- Comment #15 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug target/63347] [4.9 regression] m68k misoptimisation with -fschedule-insns

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63347 --- Comment #18 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug middle-end/28831] [4.9/5/6 Regression] Aggregate copy not elided when using a return value as a pass-by-value parameter

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=28831 --- Comment #27 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug rtl-optimization/56069] [4.9/5/6 Regression] RA pessimization

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56069 --- Comment #10 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug tree-optimization/59124] [4.9/5/6 Regression] Wrong warnings "array subscript is above array bounds"

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59124 --- Comment #17 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug tree-optimization/56145] [4.9 Regression] Use of too much optimizations -O2 -ffast-math -floop-parallelize-all

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56145 --- Comment #18 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug rtl-optimization/64172] [4.9 Regression] Wrong code with GCC vector extensions on ARM when compiled without NEON

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64172 --- Comment #18 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug fortran/54070] [4.9/5/6 Regression] Wrong code with allocatable deferred-length (array) function results

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54070 --- Comment #16 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug middle-end/40060] [4.9 Regression] casts loose alignment info

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=40060 --- Comment #22 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug tree-optimization/57218] [4.9/5/6 Regression] Excessive inlining even at -Os

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57218 --- Comment #8 from Jakub Jelinek --- GCC 4.9.3 has been released.

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

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65355 --- Comment #6 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug tree-optimization/59586] [4.9 Regression] [graphite] Segmentation fault with -Ofast -floop-parallelize-all -ftree-parallelize-loops

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59586 --- Comment #10 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug middle-end/39838] [4.9/5/6 regression] unoptimal code for two simple loops

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=39838 --- Comment #20 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug fortran/59781] [4.9/5/6 Regression] [F03] Incorrect initialisation of derived type

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59781 --- Comment #10 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug other/59490] cilk-plus failure

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59490 --- Comment #8 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug c++/65061] [4.9 Regression] Issue with using declaration and member class template

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65061 --- Comment #7 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug fortran/60795] [4.9/5/6 Regression] Wrong length when allocating character array

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60795 --- Comment #9 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug fortran/60576] [4.9/5/6 Regression] FAIL: gfortran.dg/assumed_rank_7.f90

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60576 --- Comment #21 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug middle-end/64928] [4.9/5/6 Regression] Inordinate cpu time and memory usage in "phase opt and generate" with -ftest-coverage -fprofile-arcs

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64928 --- Comment #21 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug fortran/61908] load of invalid value for 'expr_t' in interface.c compare_actual_formal

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61908 --- Comment #5 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug debug/49775] [4.9/5/6 Regression on AVR] ICE in based_loc_descr

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49775 --- Comment #13 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug tree-optimization/46639] [4.9/5/6 Regression] Missing optimization due to function splitting and redundant conditionals

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=46639 --- Comment #17 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug ipa/62016] [4.9 Regression] very slow compilation at -O3 on x86_64-linux-gnu

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62016 --- Comment #12 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug middle-end/58981] movmem/setmem use mode wider than Pmode for size

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58981 --- Comment #12 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug fortran/60526] [4.9/5/6 Regression] Accepts-invalid: Variable name same as type name

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60526 --- Comment #7 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug fortran/65542] [4.9/5/6 Regression] SPREAD intrinsic incorrectly accepted in initialization expressions with -std=f95

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65542 --- Comment #3 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug rtl-optimization/63191] [4.9/5/6 Regression] 32-bit gcc uses excessive memory during dead store elimination with -fPIC

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63191 --- Comment #9 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug tree-optimization/47679] [4.9/5/6 Regression] Strange uninitialized warning after SRA

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47679 --- Comment #21 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug debug/65821] [4.9/5/6 regression] incorrect debug line # info for main

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65821 --- Comment #7 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug target/61578] [4.9 regression] Code size increase for ARM thumb compared to 4.8.x when compiling with -Os

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61578 --- Comment #16 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug middle-end/59507] ICE: in mark_reachable_handlers, at tree-eh.c:3833 with -O -fnon-call-exceptions -fvtable-verify=preinit

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59507 --- Comment #6 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug tree-optimization/59908] Incorrect uninit warning with -fsanitize=address caused by LIM

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59908 --- Comment #8 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug rtl-optimization/55278] [4.9/5/6 Regression] Botan performance regressions, other compilers generate better code than gcc

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55278 --- Comment #20 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug target/55181] [4.9/5/6 Regression] Expensive shift loop where a bit-testing instruction could be used

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55181 --- Comment #14 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug target/20617] [4.9/5/6 Regression] shared SH libgcc is exporting too many symbols

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=20617 --- Comment #37 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug preprocessor/20285] [4.9/5/6 Regression] gcc -E - < . gives a misleading error message

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=20285 --- Comment #14 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug preprocessor/60736] [4.9/5/6 Regression] Crash in preprocessor including stdc-predef.h when it does not exist on glibc-based systems

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60736 --- Comment #12 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug target/54699] [4.9/5/6 Regression] [SH] gfortran.dg/class_array_9.f03 ICEs

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54699 --- Comment #15 from Jakub Jelinek --- GCC 4.9.3 has been released.

  1   2   3   4   5   6   7   >