[Bug rtl-optimization/61509] GCC miscompilation on ARM during RTL optimization when compiled with -O2

2016-07-29 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61509 Andrew Pinski changed: What|Removed |Added Status|WAITING |RESOLVED Resolution|---

[Bug target/72758] GCC 4.9.2 on Aarch64 missing vreinterpretq_u64_p128 and friends

2016-07-29 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72758 --- Comment #3 from Jeffrey Walton --- (In reply to Andrew Pinski from comment #2) > Note the testcase is wrong (but only slightly). Oh, you're right, thanks. That code was tested on the RPI3 to ensure it compiled as expected under Aarch32. Usi

[Bug target/72758] GCC 4.9.2 on Aarch64 missing vreinterpretq_u64_p128 and friends

2016-07-29 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72758 --- Comment #2 from Andrew Pinski --- Note the testcase is wrong (but only slightly). Also as a workaround you can use a GNU C extension. Something like: int main(int argc, char* argv[]) { poly128_t a = {0}; uint64x2_t b = (uint64x2_t)(a);

[Bug target/72758] GCC 4.9.2 on Aarch64 missing vreinterpretq_u64_p128 and friends

2016-07-29 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72758 Andrew Pinski changed: What|Removed |Added Target||aarch64*-*-* Status|UNCONFIR

[Bug target/72758] New: GCC 4.9.2 on Aarch64 missing vreinterpretq_u64_p128 and friends

2016-07-29 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72758 Bug ID: 72758 Summary: GCC 4.9.2 on Aarch64 missing vreinterpretq_u64_p128 and friends Product: gcc Version: 4.9.2 Status: UNCONFIRMED Severity: normal

[Bug middle-end/71942] [ARM] Zero-extending whats allready zero-extended even when -O3

2016-07-29 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71942 --- Comment #6 from Andrew Pinski --- Take example in comment #1: This is what is produced for AARCH64: (insn 8 6 9 (set (reg:HI 77) (mem/v/c:HI (plus:DI (reg/f:DI 68 virtual-stack-vars) (const_int -2 [0xfffe]

[Bug target/71680] [7 Regression] ICE: Max. number of generated reload insns per insn is achieved (90) w/ -Os -mlra

2016-07-29 Thread amodra at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71680 --- Comment #10 from Alan Modra --- Arseny, I could not reproduce the problem using your testcase, and I tried a dozen or so revisions around 20160626 buiding powerpc-e500v2-linux-gnuspe cross-compilers on an x86_64-linux host. Please specify th

[Bug libstdc++/54924] Warn for std::string constructor with wrong size

2016-07-29 Thread david at doublewise dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54924 --- Comment #3 from David Stone --- Also filed against libc++ here: https://llvm.org/bugs/show_bug.cgi?id=28777

[Bug testsuite/72757] New: atomic test don't run with RUNTESTFLAGS=atomic.exp

2016-07-29 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72757 Bug ID: 72757 Summary: atomic test don't run with RUNTESTFLAGS=atomic.exp Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component:

[Bug fortran/72755] Internal compiler error: in gfc_get_symbol_decl, at fortran/trans-decl.c:1369

2016-07-29 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72755 kargl at gcc dot gnu.org changed: What|Removed |Added CC||kargl at gcc dot gnu.org --- C

[Bug rtl-optimization/69847] Spec 2006 403.gcc slows down with -mlra vs. reload on PowerPC

2016-07-29 Thread meissner at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69847 --- Comment #15 from Michael Meissner --- Thanks for doing this. It looks like Bill will do spec testing, but if he doesn't I will fire off a run early next week.

[Bug c++/68901] UBSan triggers false -Wpadded warning

2016-07-29 Thread vanyacpp at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68901 --- Comment #2 from Ivan Sorokin --- Created attachment 39034 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39034&action=edit bug-68901.cpp

[Bug c++/68901] UBSan triggers false -Wpadded warning

2016-07-29 Thread vanyacpp at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68901 Ivan Sorokin changed: What|Removed |Added CC||vanyacpp at gmail dot com --- Comment #1

[Bug fortran/72755] Internal compiler error: in gfc_get_symbol_decl, at fortran/trans-decl.c:1369

2016-07-29 Thread fmartinez at gmv dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72755 --- Comment #5 from Fran Martinez Fadrique --- Created attachment 39033 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39033&action=edit Dependency

[Bug fortran/72755] Internal compiler error: in gfc_get_symbol_decl, at fortran/trans-decl.c:1369

2016-07-29 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72755 --- Comment #4 from kargl at gcc dot gnu.org --- Insufficient has been provided. % grep -E ^module a.f90 b.f90 c.f90 a.f90:module m_messages b.f90:module m_msg c.f90:module m_string % gfc7 -c c.f90 c.f90:13:6: use m_util_convert 1 Fat

[Bug c++/72756] Using an enum as a constant expression via dot operator should not compile.

2016-07-29 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72756 --- Comment #1 from Andrew Pinski --- I suspect it is rejected at instantation time rather than definition time.

[Bug c++/72756] New: Using an enum as a constant expression via dot operator should not compile.

2016-07-29 Thread claas.bontus at web dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72756 Bug ID: 72756 Summary: Using an enum as a constant expression via dot operator should not compile. Product: gcc Version: 6.1.0 Status: UNCONFIRMED Severity: nor

[Bug fortran/72755] Internal compiler error: in gfc_get_symbol_decl, at fortran/trans-decl.c:1369

2016-07-29 Thread fmartinez at gmv dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72755 --- Comment #3 from Fran Martinez Fadrique --- The same problem appears in previous versions (at least 6.1.1 and 5.4)

[Bug fortran/72755] Internal compiler error: in gfc_get_symbol_decl, at fortran/trans-decl.c:1369

2016-07-29 Thread fmartinez at gmv dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72755 --- Comment #1 from Fran Martinez Fadrique --- Created attachment 39031 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39031&action=edit Dependency

[Bug fortran/72755] Internal compiler error: in gfc_get_symbol_decl, at fortran/trans-decl.c:1369

2016-07-29 Thread fmartinez at gmv dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72755 --- Comment #2 from Fran Martinez Fadrique --- Created attachment 39032 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39032&action=edit Dependency

[Bug fortran/72755] New: Internal compiler error: in gfc_get_symbol_decl, at fortran/trans-decl.c:1369

2016-07-29 Thread fmartinez at gmv dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72755 Bug ID: 72755 Summary: Internal compiler error: in gfc_get_symbol_decl, at fortran/trans-decl.c:1369 Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: nor

[Bug c++/72753] sole flexible array member in a typedef rejected

2016-07-29 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72753 --- Comment #1 from Martin Sebor --- Same problem with an unnamed struct defined via an alias-declaration: using S = struct { int a[]; };

[Bug c++/72754] New: pointer to an unnamed struct with a sole flexible array member accepted

2016-07-29 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72754 Bug ID: 72754 Summary: pointer to an unnamed struct with a sole flexible array member accepted Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/72753] New: sole flexible array member in a typedef rejected

2016-07-29 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72753 Bug ID: 72753 Summary: sole flexible array member in a typedef rejected Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c+

[Bug c/72750] Not possible to use -fno-builtin to suppress optimization of some standard functions like atoi

2016-07-29 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72750 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug c++/72752] New: internal compiler error: in retrieve_specialization

2016-07-29 Thread mikeus at hotmail dot ru
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72752 Bug ID: 72752 Summary: internal compiler error: in retrieve_specialization Product: gcc Version: 6.1.0 Status: UNCONFIRMED Severity: normal Priority: P3 Componen

[Bug rtl-optimization/71779] [5/6/7 regression] isl miscompiled with -mabi=ilp32

2016-07-29 Thread bernd.edlinger at hotmail dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71779 --- Comment #17 from Bernd Edlinger --- And here an alternative patch for the other paradoxical subreg bug: Index: cse.c === --- cse.c (revision 238891) +++ cse.c (worki

[Bug c++/72751] New: anonymous union within an anonymous union accepted

2016-07-29 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72751 Bug ID: 72751 Summary: anonymous union within an anonymous union accepted Product: gcc Version: 7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component:

[Bug rtl-optimization/69847] Spec 2006 403.gcc slows down with -mlra vs. reload on PowerPC

2016-07-29 Thread wschmidt at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69847 --- Comment #14 from Bill Schmidt --- Thanks, Vlad! I'll do some benchmarking with this patch in the next few days. Much obliged!

[Bug rtl-optimization/69847] Spec 2006 403.gcc slows down with -mlra vs. reload on PowerPC

2016-07-29 Thread vmakarov at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69847 --- Comment #13 from Vladimir Makarov --- Hi, on the next week I am going to commit the patch I've just attached. The final version of the patch will have more comments. With the patch LRA generates the same code for the test case as reload (th

[Bug rtl-optimization/69847] Spec 2006 403.gcc slows down with -mlra vs. reload on PowerPC

2016-07-29 Thread vmakarov at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69847 --- Comment #12 from Vladimir Makarov --- Created attachment 39029 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39029&action=edit A patch

[Bug c/72750] Not possible to use -fno-builtin to suppress optimization of some standard functions like atoi

2016-07-29 Thread joseph at codesourcery dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72750 --- Comment #1 from joseph at codesourcery dot com --- This is not a bug. You could make the file using atoi declare it itself rather than including (because the type of atoi doesn't involve any types from standard headers, doing so is valid)

[Bug c/72750] New: Not possible to use -fno-builtin to suppress optimization of some standard functions like atoi

2016-07-29 Thread david.l.kreitzer at intel dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72750 Bug ID: 72750 Summary: Not possible to use -fno-builtin to suppress optimization of some standard functions like atoi Product: gcc Version: unknown Status: UNCONFIRMED

[Bug c++/71165] std::array with aggregate initialization generates huge code

2016-07-29 Thread aleksey.covacevice at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71165 Aleksey Covacevice changed: What|Removed |Added CC||aleksey.covacevice at gmail dot co

[Bug lto/69188] [Regression 5/6/7] ICE when linking objects at different optimization levels with LTO and profile generation enabled. (Works with 4.9.3.)

2016-07-29 Thread anthonyfk at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69188 anthonyfk at gmail dot com changed: What|Removed |Added Version|5.3.0 |5.1.0 --- Comment #17 from a

[Bug lto/69188] [Regression 5/6/7] ICE when linking objects at different optimization levels with LTO and profile generation enabled. (Works with 4.9.3.)

2016-07-29 Thread anthonyfk at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69188 anthonyfk at gmail dot com changed: What|Removed |Added Keywords||ice-on-valid-code,

[Bug rtl-optimization/71779] [5/6/7 regression] isl miscompiled with -mabi=ilp32

2016-07-29 Thread bernd.edlinger at hotmail dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71779 --- Comment #16 from Bernd Edlinger --- Alternative patch, that looks like it fixes this issue (but not the other bug). Note: it generates one instruction more than the first patch, thus paradoxical subregs trigger at least one other bug, and ar

[Bug middle-end/71734] [7 Regression] FAIL: libgomp.fortran/simd4.f90 -O3 -g execution test

2016-07-29 Thread seurer at linux dot vnet.ibm.com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71734 --- Comment #12 from Bill Seurer --- Those fail for power as well: https://gcc.gnu.org/ml/gcc-testresults/2016-07/msg01737.html === libgomp tests === Running target unix FAIL: libgomp.fortran/simd3.f90 -O3 -fomit-frame-point

[Bug c++/68159] Demangler crash (GDB PR 19190)

2016-07-29 Thread clopez at igalia dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68159 Carlos Alberto Lopez Perez changed: What|Removed |Added CC||clopez at igalia dot com --

[Bug c/71926] wrong location for -Wparentheses warning

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71926 Marek Polacek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c/71853] [6/7 regression] ICE on an ill-formed case statement in c_do_switch_warnings

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71853 Marek Polacek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c/71573] ICE on invalid C code on x86_64-linux-gnu (tree check: expected function_decl, have var_decl in implicitly_declare)

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71573 Marek Polacek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c/71926] wrong location for -Wparentheses warning

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71926 --- Comment #3 from Marek Polacek --- Author: mpolacek Date: Fri Jul 29 17:39:39 2016 New Revision: 238886 URL: https://gcc.gnu.org/viewcvs?rev=238886&root=gcc&view=rev Log: PR c/71926 * c-common.c (c_common_truthvalue_conversion

[Bug c/71573] ICE on invalid C code on x86_64-linux-gnu (tree check: expected function_decl, have var_decl in implicitly_declare)

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71573 --- Comment #2 from Marek Polacek --- Author: mpolacek Date: Fri Jul 29 17:36:46 2016 New Revision: 238885 URL: https://gcc.gnu.org/viewcvs?rev=238885&root=gcc&view=rev Log: PR c/71573 * c-decl.c (implicitly_declare): Return decl

[Bug c/71853] [6/7 regression] ICE on an ill-formed case statement in c_do_switch_warnings

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71853 --- Comment #5 from Marek Polacek --- Author: mpolacek Date: Fri Jul 29 17:34:55 2016 New Revision: 238884 URL: https://gcc.gnu.org/viewcvs?rev=238884&root=gcc&view=rev Log: PR c/71853 * c-parser.c (c_parser_switch_statement): In

[Bug c/71742] Wrong formulation of "error: flexible array member in otherwise empty struct"

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71742 Marek Polacek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c/71742] Wrong formulation of "error: flexible array member in otherwise empty struct"

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71742 --- Comment #3 from Marek Polacek --- Author: mpolacek Date: Fri Jul 29 17:32:27 2016 New Revision: 238883 URL: https://gcc.gnu.org/viewcvs?rev=238883&root=gcc&view=rev Log: PR c/71742 * c-decl.c (finish_struct): Rephrase an erro

[Bug libgcc/71614] ppc __gcc_qmul is mis-optimized not to be commutative

2016-07-29 Thread dje at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71614 David Edelsohn changed: What|Removed |Added CC||dje at gcc dot gnu.org --- Comment #6 f

[Bug middle-end/71734] [7 Regression] FAIL: libgomp.fortran/simd4.f90 -O3 -g execution test

2016-07-29 Thread sch...@linux-m68k.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71734 --- Comment #11 from Andreas Schwab --- http://gcc.gnu.org/ml/gcc-testresults/2016-07/msg01768.html FAIL: libgomp.fortran/simd3.f90 -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions execution test FAIL: libgomp.

[Bug c++/72708] error on anonymous union in an unnamed namespace

2016-07-29 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72708 Martin Sebor changed: What|Removed |Added Last reconfirmed||2016-7-29 --- Comment #3 from Martin Sebo

[Bug c/68473] ICE: in contains_point, at diagnostic-show-locus.c:340 after error

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68473 Marek Polacek changed: What|Removed |Added CC||mpolacek at gcc dot gnu.org --- Comment

[Bug c++/62096] unexpected warning overflow in implicit constant conversion

2016-07-29 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62096 --- Comment #5 from Jason Merrill --- 7.2/8: For an enumeration whose underlying type is fixed, the values of the enumeration are the values of the underlying type. Otherwise, for an enumeration where emin is the smallest enumerator and emax is t

[Bug tree-optimization/57558] Loop not vectorized if iteration count could be infinite

2016-07-29 Thread amker at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57558 --- Comment #5 from amker at gcc dot gnu.org --- Author: amker Date: Fri Jul 29 15:48:25 2016 New Revision: 238877 URL: https://gcc.gnu.org/viewcvs?rev=238877&root=gcc&view=rev Log: PR tree-optimization/57558 * tree-vect-loop-mani

[Bug fortran/69964] ICE on misspelled end block data, in gfc_ascii_statement

2016-07-29 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69964 --- Comment #5 from Dominique d'Humieres --- > > This appears to be fixed on trunk. > > Confirmed. I get an ICE with revision r238821, but not with r238824. > Likely fall out of r238822 (pr71883). For the record, it is also fixed on the gcc-5 an

[Bug c/71939] sole flexible array member in an anonymous structure rejected

2016-07-29 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71939 --- Comment #3 from Martin Sebor --- For the record, I brought this up on the C committee's mailing list for discussion. Since the standard can be read (at least) two different ways here I'll submit a proposal into the next mailing to clarify th

[Bug c++/71662] [4.9/5/6/7 Regression][DR 1485] ICE on invalid C++11 code with unqualified name look up: in tsubst_copy, at cp/pt.c:14010

2016-07-29 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71662 Jason Merrill changed: What|Removed |Added Summary|[4.9/5/6/7 Regression] ICE |[4.9/5/6/7 Regression][DR

[Bug c++/71747] [4.9/5/6/7 Regression] ICE on invalid C++11 code with misuse of overloaded operator '()': Segmentation fault (program cc1plus)

2016-07-29 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71747 Jason Merrill changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|unassigned a

[Bug target/72748] [7 Regression] ICE on valid code at -O2 and -O3 with -g enabled in 64-bit mode on x86_64-linux-gnu: in simplify_subreg, at simplify-rtx.c:5952

2016-07-29 Thread hjl.tools at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72748 --- Comment #2 from H.J. Lu --- I am testing this: diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 7c8bb17..918c505 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -3858,6 +3858,10 @@ timode_scalar_chain::c

[Bug c++/58059] g++: internal compiler error: Segmentation fault (program cc1plus)

2016-07-29 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58059 Paolo Carlini changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug c++/51488] ICE on infinite template recursion

2016-07-29 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51488 Paolo Carlini changed: What|Removed |Added CC||nacitar at ubercpp dot com --- Comment #

[Bug c++/56163] Template instantiation limit not kicking in

2016-07-29 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56163 Paolo Carlini changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug c++/51488] ICE on infinite template recursion

2016-07-29 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51488 Paolo Carlini changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment #13

[Bug c++/51488] ICE on infinite template recursion

2016-07-29 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51488 Paolo Carlini changed: What|Removed |Added CC||potswa at mac dot com --- Comment #12 fr

[Bug c++/53618] segfault on self-referential class partial specialization argument

2016-07-29 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53618 Paolo Carlini changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug c++/51488] ICE on infinite template recursion

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

[Bug c++/51488] ICE on infinite template recursion

2016-07-29 Thread paolo at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51488 --- Comment #10 from paolo at gcc dot gnu.org --- Author: paolo Date: Fri Jul 29 14:49:03 2016 New Revision: 238870 URL: https://gcc.gnu.org/viewcvs?rev=238870&root=gcc&view=rev Log: 2016-07-29 Paolo Carlini PR c++/51488 * g+

[Bug c++/51488] ICE on infinite template recursion

2016-07-29 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51488 --- Comment #9 from Paolo Carlini --- Fixed by the patch which fixed c++/71747. I'm adding a testcase and closing the bug.

[Bug c/71742] Wrong formulation of "error: flexible array member in otherwise empty struct"

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71742 Marek Polacek changed: What|Removed |Added Status|NEW |ASSIGNED CC|

[Bug c++/72457] [6/7 Regression] ICE: Segmentation fault

2016-07-29 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72457 Jason Merrill changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/72457] [6/7 Regression] ICE: Segmentation fault

2016-07-29 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72457 --- Comment #9 from Jason Merrill --- Author: jason Date: Fri Jul 29 14:08:03 2016 New Revision: 238868 URL: https://gcc.gnu.org/viewcvs?rev=238868&root=gcc&view=rev Log: PR c++/72457 - ICE with list-value-initialized base. * in

[Bug c++/72457] [6/7 Regression] ICE: Segmentation fault

2016-07-29 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72457 --- Comment #8 from Jason Merrill --- Author: jason Date: Fri Jul 29 14:03:26 2016 New Revision: 238867 URL: https://gcc.gnu.org/viewcvs?rev=238867&root=gcc&view=rev Log: PR c++/72457 - ICE with list-value-initialized base. * in

[Bug c/71986] Bug bug when compiling gammu-1.37.3

2016-07-29 Thread trippels at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71986 Markus Trippelsdorf changed: What|Removed |Added Status|WAITING |RESOLVED Resolution|---

[Bug c/71926] wrong location for -Wparentheses warning

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71926 Marek Polacek changed: What|Removed |Added Status|NEW |ASSIGNED CC|

[Bug c/7652] -Wswitch-break : Warn if a switch case falls through

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=7652 --- Comment #52 from Marek Polacek --- Author: mpolacek Date: Fri Jul 29 12:39:25 2016 New Revision: 238864 URL: https://gcc.gnu.org/viewcvs?rev=238864&root=gcc&view=rev Log: PR c/7652 * config/i386/i386.c (ix86_expand_args_builti

[Bug rtl-optimization/71976] insn-combiner deletes a live 64-bit shift

2016-07-29 Thread gjl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71976 --- Comment #8 from Georg-Johann Lay --- Author: gjl Date: Fri Jul 29 12:34:21 2016 New Revision: 238863 URL: https://gcc.gnu.org/viewcvs?rev=238863&root=gcc&view=rev Log: gcc/ PR rtl-optimization/71976 * combine.c (get_last_valu

[Bug c/71969] Wrong setting of DECL_DISREGARD_INLINE_LIMITS in the C FE

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71969 Marek Polacek changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED CC|

[Bug c/71969] Wrong setting of DECL_DISREGARD_INLINE_LIMITS in the C FE

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71969 --- Comment #2 from Marek Polacek --- Author: mpolacek Date: Fri Jul 29 12:00:43 2016 New Revision: 238862 URL: https://gcc.gnu.org/viewcvs?rev=238862&root=gcc&view=rev Log: PR c/71969 * c-decl.c (finish_function): Only set DECL_

[Bug c/71583] ICE on invalid code on x86_64-linux-gnu (in c_parser_postfix_expression_after_paren_type, at c/c-parser.c:8192)

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71583 Marek Polacek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c/71583] ICE on invalid code on x86_64-linux-gnu (in c_parser_postfix_expression_after_paren_type, at c/c-parser.c:8192)

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71583 --- Comment #4 from Marek Polacek --- Author: mpolacek Date: Fri Jul 29 11:48:36 2016 New Revision: 238861 URL: https://gcc.gnu.org/viewcvs?rev=238861&root=gcc&view=rev Log: PR c/71583 * c-parser.c (c_parser_postfix_expression_af

[Bug c/71574] ICE on code with alloc_align attribute on x86_64-linux-gnu: in default_conversion, at c/c-typeck.c:2126

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71574 Marek Polacek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c/71574] ICE on code with alloc_align attribute on x86_64-linux-gnu: in default_conversion, at c/c-typeck.c:2126

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71574 --- Comment #2 from Marek Polacek --- Author: mpolacek Date: Fri Jul 29 11:28:57 2016 New Revision: 238859 URL: https://gcc.gnu.org/viewcvs?rev=238859&root=gcc&view=rev Log: PR c/71574 * c-common.c (handle_alloc_align_attribute):

[Bug c/7652] -Wswitch-break : Warn if a switch case falls through

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=7652 --- Comment #51 from Marek Polacek --- Author: mpolacek Date: Fri Jul 29 11:26:46 2016 New Revision: 238858 URL: https://gcc.gnu.org/viewcvs?rev=238858&root=gcc&view=rev Log: PR c/7652 * config/rs6000/rs6000.c (altivec_expand_ld_b

[Bug c/7652] -Wswitch-break : Warn if a switch case falls through

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=7652 --- Comment #50 from Marek Polacek --- Author: mpolacek Date: Fri Jul 29 11:22:42 2016 New Revision: 238857 URL: https://gcc.gnu.org/viewcvs?rev=238857&root=gcc&view=rev Log: PR c/7652 * config/rs6000/rs6000.c (altivec_expand_ld_b

[Bug c/7652] -Wswitch-break : Warn if a switch case falls through

2016-07-29 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=7652 --- Comment #49 from Marek Polacek --- Author: mpolacek Date: Fri Jul 29 11:16:20 2016 New Revision: 238856 URL: https://gcc.gnu.org/viewcvs?rev=238856&root=gcc&view=rev Log: PR c/7652 * config/rs6000/rs6000.c (altivec_expand_ld_b

[Bug fortran/69964] ICE on misspelled end block data, in gfc_ascii_statement

2016-07-29 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69964 Dominique d'Humieres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug middle-end/71942] [ARM] Zero-extending whats allready zero-extended even when -O3

2016-07-29 Thread albrecht.guendel at web dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71942 --- Comment #5 from Albi --- OK ok, i see. Its a missed optimization due to volatile-problems.. I got a workaround however: #define IO_READ(x) ( static_cast( *const_cast< typename std::remove_volatile::type* >(&(x)) )) The volatile is taken

[Bug target/72748] [7 Regression] ICE on valid code at -O2 and -O3 with -g enabled in 64-bit mode on x86_64-linux-gnu: in simplify_subreg, at simplify-rtx.c:5952

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

[Bug tree-optimization/70965] [7 Regression] ICE on released SSA name during IPA SRA

2016-07-29 Thread dcb314 at hotmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70965 David Binderman changed: What|Removed |Added CC||amacleod at redhat dot com --- Comment

[Bug tree-optimization/72746] [7 Regression] gcc ICE at -O2 and above on valid code on x86_64-linux-gnu with “seg fault”

2016-07-29 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72746 Richard Biener changed: What|Removed |Added Target Milestone|--- |7.0 Summary|gcc ICE at -O2 a

[Bug target/72749] [7 Regression] ICE: verify_flow_info failed (error: wrong amount of branch edges after conditional jump in bb 5) w/ -O2 -fsched2-use-superblocks

2016-07-29 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72749 Richard Biener changed: What|Removed |Added Target Milestone|--- |7.0

[Bug target/72748] [7 Regression] ICE on valid code at -O2 and -O3 with -g enabled in 64-bit mode on x86_64-linux-gnu: in simplify_subreg, at simplify-rtx.c:5952

2016-07-29 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72748 Richard Biener changed: What|Removed |Added Target||x86_64-*-* Target Milestone|---

[Bug fortran/72743] ICE in get_constraint_for_ssa_var, at tree-ssa-structalias.c:2958

2016-07-29 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72743 Richard Biener changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug target/72742] [7 Regression] ICE in extract_insn, at recog.c:2309 (error: unrecognizable insn) w/ -Os -mlra

2016-07-29 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72742 Richard Biener changed: What|Removed |Added Target Milestone|--- |7.0