[Bug tree-optimization/92768] [8/9/10 Regression] Maybe a wrong code for vector constants

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92768 Richard Biener changed: What|Removed |Added Keywords||needs-bisection

[Bug tree-optimization/92734] Missing match.pd simplification done by fold_binary_loc on generic

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92734 --- Comment #8 from Jakub Jelinek --- Created attachment 47406 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=47406=edit gcc10-pr92734-2.patch Untested patch that implements that.

[Bug tree-optimization/92768] Maybe a wrong code for vector constants

2019-12-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92768 --- Comment #1 from Martin Liška --- clang seems to be happy with -ffast-math: $ clang -O2 matrix.c -ffast-math && ./a.out matrix.c:17:63: warning: incompatible pointer types passing 'int const[4]' to parameter of type 'const float *'

[Bug c++/91678] [9/10 Regression] decltype returns wrong type under certain conditions

2019-12-03 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91678 --- Comment #5 from Marek Polacek --- Sorry, I'll try to respond to https://gcc.gnu.org/ml/gcc-patches/2019-09/msg01042.html soon. It doesn't seem to fix Comment 4 though, will have to look why :/.

[Bug tree-optimization/92768] New: Maybe a wrong code for vector constants

2019-12-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92768 Bug ID: 92768 Summary: Maybe a wrong code for vector constants Product: gcc Version: 10.0 Status: UNCONFIRMED Keywords: wrong-code Severity: normal Priority:

[Bug target/92767] New: [m68k]: Random ICE: verify_flow_info failed

2019-12-03 Thread glaubitz at physik dot fu-berlin.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92767 Bug ID: 92767 Summary: [m68k]: Random ICE: verify_flow_info failed Product: gcc Version: 10.0 URL: https://buildd.debian.org/status/fetch.php?pkg=gcc-sna

[Bug c/91839] missing error diagnosis for undeclared identifier

2019-12-03 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91839 Jonathan Wakely changed: What|Removed |Added Severity|normal |enhancement

[Bug tree-optimization/92734] Missing match.pd simplification done by fold_binary_loc on generic

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92734 --- Comment #7 from Jakub Jelinek --- I'm wondering if we shouldn't adjust also the /* (A +- B) - A -> +- B */ /* (A +- B) -+ B -> A */ /* A - (A +- B) -> -+ B */ /* A +- (B -+ A) -> +- B */ patterns. Say

[Bug driver/92757] Documentation ambiguous/misleading about interplay of optimization and warning flags

2019-12-03 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92757 --- Comment #9 from Jonathan Wakely --- (In reply to Ricardo Abreu from comment #7) > Usually CLI switches aren't silently inoperative until you provide other > switches. Usually CLI applications don't have as many switches as GCC with as many

[Bug tree-optimization/92645] Hand written vector code is 450 times slower when compiled with GCC compared to Clang

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92645 --- Comment #18 from Richard Biener --- Author: rguenth Date: Tue Dec 3 11:59:13 2019 New Revision: 278934 URL: https://gcc.gnu.org/viewcvs?rev=278934=gcc=rev Log: 2019-12-03 Richard Biener PR tree-optimization/92645 *

[Bug c/91839] missing error diagnosis for undeclared identifier

2019-12-03 Thread tangyixuan at mail dot dlut.edu.cn
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91839 --- Comment #3 from tangyixuan --- (In reply to Jonathan Wakely from comment #2) > I can confirm GCC doesn't suggest l_24, but I'm not sure it's reasonable to > expect it to do so after so many parse errors. > > If you fix the first two errors

[Bug tree-optimization/92765] [10 Regression] Wrong code caused by folding of -Wstring-compare since r276773

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92765 --- Comment #7 from Jakub Jelinek --- Now, determine_min_objsize has been introduced for the strcmp_eq optimization and maybe doing something conservative for the strcmp -> ~[0, 0] or [0, 0] optimization there like get_base_address on the

[Bug tree-optimization/92706] SRA confuses FRE

2019-12-03 Thread jamborm at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92706 Martin Jambor changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|unassigned

[Bug driver/92757] Documentation ambiguous/misleading about interplay of optimization and warning flags

2019-12-03 Thread ricardolafabreu at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92757 --- Comment #8 from Ricardo Abreu --- Don't get me wrong, I have a lot of admiration for GCC and the people behind! It approaches perfection to a level that is very unusual in software. Still, that does not amount to saying it is perfect. There

[Bug libgomp/91938] libgomp (and libitm) DSOs are incorrectly built with initial-exec tls-model

2019-12-03 Thread nsz at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91938 --- Comment #5 from nsz at gcc dot gnu.org --- Author: nsz Date: Tue Dec 3 11:13:38 2019 New Revision: 278932 URL: https://gcc.gnu.org/viewcvs?rev=278932=gcc=rev Log: musl: Fix invalid tls model in libgomp and libitm PR91938 Musl does not

[Bug driver/92757] Documentation ambiguous/misleading about interplay of optimization and warning flags

2019-12-03 Thread ricardolafabreu at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92757 --- Comment #7 from Ricardo Abreu --- Yes, the very next paragraph directs to tens of other paragraphs that mention other switches. One has to read them SFINAE mode to discover the special meaning of the general text. That may be considered

[Bug tree-optimization/92765] [10 Regression] Wrong code caused by folding of -Wstring-compare since r276773

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92765 --- Comment #6 from Jakub Jelinek --- (In reply to Andrew Pinski from comment #3) > But isn't the case magic could be considered a variable length field since > it is st the end of the struct? At end of struct or not doesn't really matter.

[Bug tree-optimization/92645] Hand written vector code is 450 times slower when compiled with GCC compared to Clang

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92645 Bug 92645 depends on bug 92751, which changed state. Bug 92751 Summary: VN partial def support confused about clobbers https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92751 What|Removed |Added

[Bug tree-optimization/92751] VN partial def support confused about clobbers

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92751 Richard Biener changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug tree-optimization/92751] VN partial def support confused about clobbers

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92751 --- Comment #2 from Richard Biener --- Author: rguenth Date: Tue Dec 3 10:46:52 2019 New Revision: 278931 URL: https://gcc.gnu.org/viewcvs?rev=278931=gcc=rev Log: 2019-12-03 Richard Biener PR tree-optimization/92751 *

[Bug tree-optimization/92765] [10 Regression] Wrong code caused by folding of -Wstring-compare since r276773

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92765 --- Comment #5 from Jakub Jelinek --- Note, determine_min_objsize calls compute_builtin_object_size with 2 rather than 3, which means it is in this regard conservative and uses whole object size rather than just subobject, we've been there in

[Bug tree-optimization/92765] [10 Regression] Wrong code caused by folding of -Wstring-compare since r276773

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92765 --- Comment #4 from Richard Biener --- (In reply to Jakub Jelinek from comment #2) > I'd say the bug is in determine_min_objsize, which makes assumption that are > simply not valid in GIMPLE after optimizations. > Before fre3 we have: > _2 =

[Bug tree-optimization/92765] [10 Regression] Wrong code caused by folding of -Wstring-compare since r276773

2019-12-03 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92765 --- Comment #3 from Andrew Pinski --- But isn't the case magic could be considered a variable length field since it is st the end of the struct?

[Bug rtl-optimization/92591] ICE in optimize_sc, at modulo-sched.c:1063

2019-12-03 Thread asolokha at gmx dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92591 --- Comment #5 from Arseny Solokha --- Roman, are you going to submit these patches to the mailing list?

[Bug tree-optimization/92765] [10 Regression] Wrong code caused by folding of -Wstring-compare since r276773

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92765 --- Comment #2 from Jakub Jelinek --- I'd say the bug is in determine_min_objsize, which makes assumption that are simply not valid in GIMPLE after optimizations. Before fre3 we have: _2 = _1->header.magic; _3 = __builtin_strcmp (_2, "x");

[Bug tree-optimization/92734] Missing match.pd simplification done by fold_binary_loc on generic

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92734 Richard Biener changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug debug/92763] [8/9/10 Regression] ICE in dwarf2out_abstract_function, at dwarf2out.c:22659, or in force_type_die, at dwarf2out.c:26224

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92763 Richard Biener changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|unassigned

[Bug target/92760] [10 regression] several vector test cases fail on power 7 after r278800

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92760 Richard Biener changed: What|Removed |Added Target Milestone|--- |10.0

[Bug target/92758] [10 regression] r278833 breaks gcc.target/powerpc/fold-vec-splat-floatdouble.c

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92758 Richard Biener changed: What|Removed |Added Target||powerpc Status|UNCONFIRMED

[Bug c++/92735] unused member variable causes code to compile for member to function for undefined function

2019-12-03 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92735 --- Comment #2 from Jonathan Wakely --- For the case reported here, Clang and EDG do reject it, but I'm not yet convinced GCC is wrong to accept it. The implicit instantiation of is_Foo causes: "the implicit instantiation of the declarations,

[Bug tree-optimization/92765] [10 Regression] Wrong code caused by folding of -Wstring-compare since r276773

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92765 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment #1

[Bug fortran/92753] [9/10 Regression] ICE in gfc_trans_call, at fortran/trans-stmt.c:392

2019-12-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92753 Martin Liška changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/92735] unused member variable causes code to compile for member to function for undefined function

2019-12-03 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92735 --- Comment #1 from Jonathan Wakely --- (In reply to Marc Pawlowsky from comment #0) > on a related not I sent to clang bug report where if value is not static the > code will compile. https://bugs.llvm.org/show_bug.cgi?id=44175 (I think that's

[Bug c/92748] Two different -Wreturn-type diagnostics for essentially same code

2019-12-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92748 Martin Liška changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug ipa/92749] [10 Regression] warning: inlining failed in call to ‘salsa20’: --param max-inline-insns-single limit reached after r276516

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92749 Richard Biener changed: What|Removed |Added Keywords||missed-optimization

[Bug fortran/92755] [10 Regression] ICE in gfc_dep_resolver, at fortran/dependency.c:2123

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92755 Richard Biener changed: What|Removed |Added Priority|P3 |P4

[Bug fortran/92754] ICE in gfc_finish_var_decl, at fortran/trans-decl.c:693

2019-12-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92754 Martin Liška changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/92755] [10 Regression] ICE in gfc_dep_resolver, at fortran/dependency.c:2123

2019-12-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92755 Martin Liška changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/92756] [9/10 Regression] ICE in lower_omp, at omp-low.c:12988

2019-12-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92756 Martin Liška changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/91678] [9/10 Regression] decltype returns wrong type under certain conditions

2019-12-03 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91678 --- Comment #4 from Jonathan Wakely --- Marek, are you still working on the patch? Does it also fix the testcase from PR 92766? template void foo(T&& begin, T&& end); void test() { unsigned char buffer[16];

[Bug fortran/92764] ICE in gfc_procedure_use

2019-12-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92764 --- Comment #3 from Martin Liška --- (In reply to Arseny Solokha from comment #2) > Not a [10 Regression], then, although I could not reproduce it w/ 8.2.0. 8.2.0 fails as well for me.

[Bug c++/92766] [9/10 Regression] pointer+0 erroneously treated as lvalue

2019-12-03 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92766 Jonathan Wakely changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug c++/91678] [9/10 Regression] decltype returns wrong type under certain conditions

2019-12-03 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91678 Jonathan Wakely changed: What|Removed |Added CC||bisqwit at iki dot fi --- Comment #3

[Bug preprocessor/91025] cpp man page incorrectly describes -MD option

2019-12-03 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91025 --- Comment #3 from Jonathan Wakely --- Thanks! As per https://gcc.gnu.org/contribute.html#patches patches should be sent to the mailing list for review. They get missed/ignored when attached to bugzilla. If this is your first patch for GCC it's

[Bug debug/92763] [8/9/10 Regression] ICE in dwarf2out_abstract_function, at dwarf2out.c:22659, or in force_type_die, at dwarf2out.c:26224

2019-12-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92763 Martin Liška changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/92764] ICE in gfc_procedure_use

2019-12-03 Thread asolokha at gmx dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92764 Arseny Solokha changed: What|Removed |Added Summary|[10 Regression] ICE in |ICE in gfc_procedure_use

[Bug c++/92766] [9/10 Regression] pointer+0 erroneously treated as lvalue

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92766 Jakub Jelinek changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/92764] [10 Regression] ICE in gfc_procedure_use

2019-12-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92764 Martin Liška changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug preprocessor/91025] cpp man page incorrectly describes -MD option

2019-12-03 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91025 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug tree-optimization/92734] Missing match.pd simplification done by fold_binary_loc on generic

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92734 --- Comment #5 from Jakub Jelinek --- Author: jakub Date: Tue Dec 3 09:20:43 2019 New Revision: 278925 URL: https://gcc.gnu.org/viewcvs?rev=278925=gcc=rev Log: PR tree-optimization/92734 * match.pd ((CST1 - A) +- CST2 -> CST3 -

[Bug c++/92766] New: [Rejects valid] pointer+0 erroneously treated as rvalue

2019-12-03 Thread bisqwit at iki dot fi
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92766 Bug ID: 92766 Summary: [Rejects valid] pointer+0 erroneously treated as rvalue Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal

[Bug tree-optimization/92765] [10 Regression] Wrong code caused by folding of -Wstring-compare since r276773

2019-12-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92765 Martin Liška changed: What|Removed |Added Priority|P3 |P1 Status|UNCONFIRMED

[Bug tree-optimization/92765] New: [10 Regression] Wrong code caused by folding of -Wstring-compare since r276773

2019-12-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92765 Bug ID: 92765 Summary: [10 Regression] Wrong code caused by folding of -Wstring-compare since r276773 Product: gcc Version: 10.0 Status: UNCONFIRMED Keywords:

[Bug c++/92695] P1064R0 - virtual constexpr fails if object taken from array

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92695 --- Comment #17 from Jakub Jelinek --- (In reply to Toni Neubert from comment #15) > I really cannot help you with this. I am sorry. I don't understand the > compilers source code/internals at all. I just can thank you guys for your > ongoing

[Bug c++/92695] P1064R0 - virtual constexpr fails if object taken from array

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92695 Jakub Jelinek changed: What|Removed |Added Status|ASSIGNED|NEW Assignee|jakub at gcc dot

[Bug c++/92705] [10 Regression] ICE: Segmentation fault (in build_new_op_1)

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92705 Jakub Jelinek changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug c++/92732] Bit-field of scoped enumeration type cannot be initialized

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92732 --- Comment #4 from Jakub Jelinek --- Should be fixed on the trunk now, queued for backporting to 9 and 8 branches.

[Bug target/92744] [10 Regression] error: insn does not satisfy its constraints since r278439

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92744 Jakub Jelinek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug tree-optimization/92750] DSE fails to remove all dead clobbers

2019-12-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92750 --- Comment #2 from Richard Biener --- But these are offsetted/partial clobbers, and we can't track address-taken on parts...

[Bug target/92744] [10 Regression] error: insn does not satisfy its constraints since r278439

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92744 --- Comment #2 from Jakub Jelinek --- Author: jakub Date: Tue Dec 3 08:23:06 2019 New Revision: 278924 URL: https://gcc.gnu.org/viewcvs?rev=278924=gcc=rev Log: PR target/92744 * config/i386/i386.md (peephole2 for *swap): Use

[Bug c++/92732] Bit-field of scoped enumeration type cannot be initialized

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92732 --- Comment #3 from Jakub Jelinek --- Author: jakub Date: Tue Dec 3 08:21:29 2019 New Revision: 278923 URL: https://gcc.gnu.org/viewcvs?rev=278923=gcc=rev Log: PR c++/92732 * typeck2.c (digest_nsdmi_init): For bitfields, use

[Bug c++/92705] [10 Regression] ICE: Segmentation fault (in build_new_op_1)

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92705 --- Comment #4 from Jakub Jelinek --- Author: jakub Date: Tue Dec 3 08:20:18 2019 New Revision: 278922 URL: https://gcc.gnu.org/viewcvs?rev=278922=gcc=rev Log: PR c++/92705 * call.c (strip_standard_conversion): New function.

[Bug c++/92695] P1064R0 - virtual constexpr fails if object taken from array

2019-12-03 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92695 --- Comment #16 from Jakub Jelinek --- Author: jakub Date: Tue Dec 3 08:19:04 2019 New Revision: 278921 URL: https://gcc.gnu.org/viewcvs?rev=278921=gcc=rev Log: PR c++/92695 * constexpr.c (cxx_bind_parameters_in_call): For

<    1   2