[Bug gcov-profile/65929] FAIL: gcc.dg/tree-prof/pr34999.c compilation, -fprofile-use -D_PROFILE_USE

2015-04-30 Thread ctice at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65929 --- Comment #4 from ctice at gcc dot gnu.org --- Author: ctice Date: Thu Apr 30 17:49:02 2015 New Revision: 222643 URL: https://gcc.gnu.org/viewcvs?rev=222643root=gccview=rev Log: Define use special macros to record the name size of cold

[Bug c++/65801] [5/6 Regression] Allow -Wno-narrowing to silence stricter C++11 narrowing rules

2015-04-30 Thread paolo at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65801 --- Comment #21 from paolo at gcc dot gnu.org paolo at gcc dot gnu.org --- Author: paolo Date: Thu Apr 30 16:31:36 2015 New Revision: 222636 URL: https://gcc.gnu.org/viewcvs?rev=222636root=gccview=rev Log: /cp 2015-04-30 Paolo Carlini

[Bug lto/65559] [5/6 Regression] lto1.exe: internal compiler error: in read_cgraph_and_symbols, at lto/lto.c:2947

2015-04-30 Thread breedlove.matt at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65559 --- Comment #27 from Matt Breedlove breedlove.matt at gmail dot com --- The primary differences between the 4.9 branch and 5.1.0 are only that the underlying issue now results in a fatal error. In the 4.9 branch, the objects and archives (even

[Bug lto/65950] New: Loop is not vectorized with lto.

2015-04-30 Thread ysrumyan at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65950 Bug ID: 65950 Summary: Loop is not vectorized with lto. Product: gcc Version: 6.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: lto

[Bug target/65951] New: [AArch64] Will not vectorize multiplication by long constant

2015-04-30 Thread alalaw01 at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65951 Bug ID: 65951 Summary: [AArch64] Will not vectorize multiplication by long constant Product: gcc Version: 5.0 Status: UNCONFIRMED Keywords: missed-optimization

[Bug tree-optimization/65953] New: [5/6 Regression] undefined reference to static __thread variable

2015-04-30 Thread trippels at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65953 Bug ID: 65953 Summary: [5/6 Regression] undefined reference to static __thread variable Product: gcc Version: 5.1.1 Status: UNCONFIRMED Severity: normal

[Bug tree-optimization/65953] [5/6 Regression] undefined reference to static __thread variable

2015-04-30 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65953 --- Comment #2 from Andrew Pinski pinskia at gcc dot gnu.org --- (In reply to Jakub Jelinek from comment #1) Looks like a Mono bug to me. mono_jit_tls isn't __attribute__((used)), and the compiler determines it is a write-only variable

[Bug lto/65559] [5/6 Regression] lto1.exe: internal compiler error: in read_cgraph_and_symbols, at lto/lto.c:2947

2015-04-30 Thread breedlove.matt at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65559 --- Comment #28 from Matt Breedlove breedlove.matt at gmail dot com --- (In reply to Rainer Emrich from comment #26) (In reply to Rainer Emrich from comment #25) (In reply to Richard Biener from comment #24) Note that the issue should only

[Bug target/65951] [AArch64] Will not vectorize multiplication by long constant

2015-04-30 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65951 --- Comment #1 from Andrew Pinski pinskia at gcc dot gnu.org --- This is a better example for AARCH64 due to ILP32 using long as 32bits: void foo (long long *arr) { for (int i = 0; i 256; i++) arr[i] *= 19594LL; }

[Bug c++/65945] C++ alignment of nullptr_t is 1 and might cause unaligned stores to the frame

2015-04-30 Thread npl at chello dot at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65945 --- Comment #8 from npl at chello dot at --- @Andrew Pinski: The code in question was compiled for arm4t. The toolchain is not configured for arm7, but has a multilib-configuration for arm4/armv5te/thumb. No defaults where touched in any way,

[Bug target/65952] [AArch64] Will not vectorize storing induction of pointer addresses for LP64

2015-04-30 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65952 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW Last

[Bug target/65952] [AArch64] Will not vectorize storing induction of pointer addresses

2015-04-30 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65952 --- Comment #2 from Andrew Pinski pinskia at gcc dot gnu.org --- if we use -mabi=ilp32, we can see it is vectorized: loop: adrpx0, array adrpx1, ptrs ldr q1, .LC0 add x3, x1, :lo12:ptrs ldr

[Bug target/65951] [AArch64] Will not vectorize 64bit integer multiplication

2015-04-30 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65951 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW Last

[Bug target/65955] [arm] ICE during movcond_addsi split

2015-04-30 Thread vries at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65955 --- Comment #2 from vries at gcc dot gnu.org --- $ build/./prev-gcc/xgcc -v Using built-in specs. COLLECT_GCC=build/./prev-gcc/xgcc Target: arm-linux-gnueabihf Configured with: src/configure --prefix=install --with-cloog=infra --with-ppl=infra

[Bug tree-optimization/63551] [4.9/5 Regression] wrong code (segfaults) at -Os on x86_64-linux-gnu

2015-04-30 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63551 --- Comment #17 from Marek Polacek mpolacek at gcc dot gnu.org --- Author: mpolacek Date: Thu Apr 30 18:41:33 2015 New Revision: 222653 URL: https://gcc.gnu.org/viewcvs?rev=222653root=gccview=rev Log: * g++.dg/ipa/pr63551.C: New test.

[Bug target/65955] [arm] ICE during movcond_addsi split

2015-04-30 Thread vries at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65955 vries at gcc dot gnu.org changed: What|Removed |Added CC||davidxl at google dot com ---

[Bug target/65952] [AArch64] Will not vectorize storing induction of pointer addresses

2015-04-30 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65952 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Depends on||65951 ---

[Bug rtl-optimization/65932] [5 Regression] Linux-3.10.75 on arm926ej-s does not boot due to wrong code generation

2015-04-30 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65932 Jakub Jelinek jakub at gcc dot gnu.org changed: What|Removed |Added CC||jakub at gcc dot

[Bug target/65955] New: [arm] ICE during movcond_addsi split

2015-04-30 Thread vries at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65955 Bug ID: 65955 Summary: [arm] ICE during movcond_addsi split Product: gcc Version: 6.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: target

[Bug target/65956] [5/6 Regression] Another ARM overaligned arg passing issue

2015-04-30 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65956 Jakub Jelinek jakub at gcc dot gnu.org changed: What|Removed |Added Target Milestone|--- |5.2

[Bug target/65956] New: [5/6 Regression] Another ARM overaligned arg passing issue

2015-04-30 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65956 Bug ID: 65956 Summary: [5/6 Regression] Another ARM overaligned arg passing issue Product: gcc Version: 5.1.0 Status: UNCONFIRMED Severity: normal

[Bug ipa/64153] [5.0 regression] r218205 miscompiles libgomp

2015-04-30 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64153 --- Comment #8 from Marek Polacek mpolacek at gcc dot gnu.org --- Author: mpolacek Date: Thu Apr 30 18:41:33 2015 New Revision: 222653 URL: https://gcc.gnu.org/viewcvs?rev=222653root=gccview=rev Log: * g++.dg/ipa/pr63551.C: New test.

[Bug c++/65858] [5/6 Regression] ICE in varpool_node::get_constructor during chromium build on arm-linux-gnueabihf with LTO during LINK chrome

2015-04-30 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65858 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED

[Bug web/64968] Upgrade GCC Bugzilla to 5.0

2015-04-30 Thread LpSolit at netscape dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64968 --- Comment #29 from Frédéric Buclin LpSolit at netscape dot net --- One more, at :45: Matt Breedlove 2015-04-30 20:45:32 UTC I now have no doubt that this is not a coincidence.

[Bug target/65955] [arm] ICE during movcond_addsi split

2015-04-30 Thread vries at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65955 --- Comment #1 from vries at gcc dot gnu.org --- Created attachment 35433 -- https://gcc.gnu.org/bugzilla/attachment.cgi?id=35433action=edit Sources in tgz Using these sources, I can reproduce using just this command line: ...

[Bug lto/65950] Loop is not vectorized with lto.

2015-04-30 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65950 --- Comment #2 from Andrew Pinski pinskia at gcc dot gnu.org --- This vectorized for me with GCC 5.1.0 on aarch64-linux-gnu.

[Bug target/65955] [arm] ICE during movcond_addsi split

2015-04-30 Thread ktkachov at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65955 ktkachov at gcc dot gnu.org changed: What|Removed |Added CC||ktkachov at gcc dot gnu.org

[Bug inline-asm/65898] GCC puts auto generated code between two asm volatile(.intel_syntax); and asm volatile(.att_syntax); globally syntaxed rather than not put or change it's syntax

2015-04-30 Thread sstsoft at wp dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65898 stanley sstsoft at wp dot pl changed: What|Removed |Added Status|RESOLVED|UNCONFIRMED

[Bug fortran/37131] inline matmul for small matrix sizes

2015-04-30 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37131 --- Comment #21 from Thomas Koenig tkoenig at gcc dot gnu.org --- Author: tkoenig Date: Thu Apr 30 22:12:31 2015 New Revision: 222661 URL: https://gcc.gnu.org/viewcvs?rev=222661root=gccview=rev Log: 2015-04-30 Thomas Koenig tkoe...@gcc.gnu.org

[Bug lto/65559] [5/6 Regression] lto1.exe: internal compiler error: in read_cgraph_and_symbols, at lto/lto.c:2947

2015-04-30 Thread rai...@emrich-ebersheim.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65559 --- Comment #29 from Rainer Emrich rai...@emrich-ebersheim.de --- (In reply to Matt Breedlove from comment #28) If you don't mind, what were the failures you were getting on this one or did the original reported errors simply return? The

[Bug target/65956] [5/6 Regression] Another ARM overaligned arg passing issue

2015-04-30 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65956 --- Comment #1 from Jakub Jelinek jakub at gcc dot gnu.org --- Untested fix: --- gcc/tree-sra.c.jj 2015-04-20 14:35:47.0 +0200 +++ gcc/tree-sra.c 2015-05-01 01:08:34.092636496 +0200 @@ -4427,7 +4427,11 @@

[Bug testsuite/65939] gcc.dg/torture/tls/run-ld.c execution failures with -pie

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

[Bug tree-optimization/65935] [6 Regression] 433.milc in SPEC CPU 2006 is miscompiled

2015-04-30 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65935 --- Comment #7 from Richard Biener rguenth at gcc dot gnu.org --- Building rephase.c:rephase with -fno-tree-slp-vectorize makes it succeed. The loop is basically register int i,j,k,dir; register site *s;

[Bug ipa/65873] [5/6 Regression] Failure to inline always_inline memcpy

2015-04-30 Thread hubicka at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65873 --- Comment #4 from Jan Hubicka hubicka at gcc dot gnu.org --- Author: hubicka Date: Thu Apr 30 15:09:19 2015 New Revision: 222634 URL: https://gcc.gnu.org/viewcvs?rev=222634root=gccview=rev Log: PR ipa/65873 * ipa-inline.c

[Bug rtl-optimization/65932] [5 Regression] Linux-3.10.75 on arm926ej-s does not boot due to wrong code generation

2015-04-30 Thread rearnsha at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65932 Richard Earnshaw rearnsha at gcc dot gnu.org changed: What|Removed |Added Component|target

[Bug c++/65936] [6 Regression] ICE building libboost_log.so.1.58.0

2015-04-30 Thread trippels at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65936 Markus Trippelsdorf trippels at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW

[Bug tree-optimization/65935] [6 Regression] 433.milc in SPEC CPU 2006 is miscompiled

2015-04-30 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65935 --- Comment #6 from Richard Biener rguenth at gcc dot gnu.org --- Also fails with the test input.

[Bug c++/65936] [6 Regression] ICE building libboost_log.so.1.58.0

2015-04-30 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65936 Marek Polacek mpolacek at gcc dot gnu.org changed: What|Removed |Added CC||mpolacek at

[Bug middle-end/64729] gcc.dg/stackprotectexplicit1.c FAILs

2015-04-30 Thread ro at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64729 --- Comment #3 from Rainer Orth ro at gcc dot gnu.org --- Author: ro Date: Thu Apr 30 14:59:21 2015 New Revision: 222632 URL: https://gcc.gnu.org/viewcvs?rev=222632root=gccview=rev Log: Add missing PR middle-end/64729 reference. Modified:

[Bug middle-end/64729] gcc.dg/stackprotectexplicit1.c FAILs

2015-04-30 Thread ro at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64729 Rainer Orth ro at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug target/65931] [5/6 regression] dsymutil assertion failure building libgnat-5.dylib

2015-04-30 Thread egall at gwmail dot gwu.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65931 Eric Gallager egall at gwmail dot gwu.edu changed: What|Removed |Added CC||egall at

[Bug ipa/65858] ICE in varpool_node::get_constructor during chromium build on arm-linux-gnueabihf with LTO during LINK chrome

2015-04-30 Thread prathamesh3492 at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65858 --- Comment #3 from prathamesh3492 at gcc dot gnu.org --- (In reply to prathamesh3492 from comment #2) Hi, Sorry for late response, I applied your patch and got the following ICE: -std=gnu++11 -flto --param lto-partitions=1 Full command line

<    1   2