[Bug fortran/92184] New: [ASAN] errors in bootstrap

2019-10-22 Thread dcb314 at hotmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92184 Bug ID: 92184 Summary: [ASAN] errors in bootstrap Product: gcc Version: 10.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assig

[Bug c++/68781] [concepts] requires in member function is not unevaluated

2019-10-22 Thread kariya_mitsuru at hotmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68781 Mitsuru Kariya changed: What|Removed |Added CC||kariya_mitsuru at hotmail dot com ---

[Bug c++/92053] Compilation fails or succeeds depending on the optimization flags

2019-10-22 Thread kamleshbhalui at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92053 Kamlesh Kumar changed: What|Removed |Added CC||kamleshbhalui at gmail dot com --- Comme

[Bug c++/87403] [Meta-bug] Issues that suggest a new warning

2019-10-22 Thread egallager at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87403 Bug 87403 depends on bug 49574, which changed state. Bug 49574 Summary: Give a warning for insane overloading https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49574 What|Removed |Added --

[Bug c++/49574] Give a warning for insane overloading

2019-10-22 Thread egallager at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49574 Eric Gallager changed: What|Removed |Added Status|WAITING |RESOLVED Resolution|---

[Bug middle-end/92183] New: gcc tries to create a relocation in a mergeable section

2019-10-22 Thread rafael at espindo dot la
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92183 Bug ID: 92183 Summary: gcc tries to create a relocation in a mergeable section Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Prio

[Bug c/92172] ARM Thumb2 frame pointers inconsistent with clang

2019-10-22 Thread sethml at ofb dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92172 --- Comment #2 from Seth LaForge --- Good point on frame pointers vs a frame chain for unwinding. I'm looking for the unwindable frame chain. Wilco: > Why does this matter? Well as your examples show, if you want to emit a frame > chain using st

[Bug fortran/92178] Segmentation fault after passing allocatable array as intent(out) and its element as value into the same subroutine

2019-10-22 Thread sgk at troutmask dot apl.washington.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92178 --- Comment #7 from Steve Kargl --- On Tue, Oct 22, 2019 at 10:22:42PM +, sgk at troutmask dot apl.washington.edu wrote: > --- Comment #6 from Steve Kargl --- > On Tue, Oct 22, 2019 at 09:30:14PM +, sgk at troutmask dot > apl.washington.

[Bug fortran/92178] Segmentation fault after passing allocatable array as intent(out) and its element as value into the same subroutine

2019-10-22 Thread sgk at troutmask dot apl.washington.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92178 --- Comment #6 from Steve Kargl --- On Tue, Oct 22, 2019 at 09:30:14PM +, sgk at troutmask dot apl.washington.edu wrote: > > Cutting the -ftree-dump-original down to the 'call' statement > gives > > MAIN__ () > { > { > integer(kin

[Bug c++/91548] [10 Regression] Regression in constexpr evaluation of std::array

2019-10-22 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91548 --- Comment #7 from Marek Polacek --- Thanks. Reduced (no templates, no lambda): constexpr int& impl(const int (&array)[10], int index) { return const_cast(array[index]); } struct A { constexpr int& operator[](int i) { return impl(elems, i

[Bug fortran/87851] [8/9/10 Regression] Wrong return type for len_trim

2019-10-22 Thread anlauf at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87851 --- Comment #10 from anlauf at gcc dot gnu.org --- Forget comment#8 and comment#9. The standard declares the default kind of LEN_TRIM to be that of default integer.

[Bug fortran/92178] Segmentation fault after passing allocatable array as intent(out) and its element as value into the same subroutine

2019-10-22 Thread sgk at troutmask dot apl.washington.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92178 --- Comment #5 from Steve Kargl --- On Tue, Oct 22, 2019 at 09:03:42PM +, vladimir.fuka at gmail dot com wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92178 > > --- Comment #4 from Vladimir Fuka --- > It would be really strange if e

[Bug fortran/92178] Segmentation fault after passing allocatable array as intent(out) and its element as value into the same subroutine

2019-10-22 Thread vladimir.fuka at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92178 --- Comment #4 from Vladimir Fuka --- It would be really strange if even expressions like below were not possible. implicit none integer, allocatable :: a(:) allocate(a, source=[1]) call assign(a, (min(a(1)**2,0))) print *, alloca

[Bug fortran/87851] [8/9/10 Regression] Wrong return type for len_trim

2019-10-22 Thread anlauf at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87851 --- Comment #9 from anlauf at gcc dot gnu.org --- The following may be necessary in addition to the patch in comment#8: Index: gcc/fortran/simplify.c === --- gcc/fortran/simplify.c

[Bug fortran/92178] Segmentation fault after passing allocatable array as intent(out) and its element as value into the same subroutine

2019-10-22 Thread sgk at troutmask dot apl.washington.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92178 --- Comment #3 from Steve Kargl --- On Tue, Oct 22, 2019 at 07:32:59PM +, kargl at gcc dot gnu.org wrote: > > The effect of the intent(out) in assign is to deallocate the code on entry to > assign. This is done with the if-block. The side-e

[Bug fortran/87851] [8/9/10 Regression] Wrong return type for len_trim

2019-10-22 Thread anlauf at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87851 anlauf at gcc dot gnu.org changed: What|Removed |Added CC||anlauf at gcc dot gnu.org ---

[Bug c++/91826] [8/9/10 Regression] Unexpected behavior when class defined with namespace alias

2019-10-22 Thread nathan at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91826 Nathan Sidwell changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|unassigned

[Bug c++/92182] No way to silence ''A::TKind' is too small to hold all values of 'enum Kind''

2019-10-22 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92182 Marek Polacek changed: What|Removed |Added Keywords||diagnostic Status|UNCONFIRME

[Bug fortran/92178] Segmentation fault after passing allocatable array as intent(out) and its element as value into the same subroutine

2019-10-22 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92178 kargl at gcc dot gnu.org changed: What|Removed |Added Priority|P3 |P4 Status|UNCONFIR

[Bug c++/92182] New: No way to silence ''A::TKind' is too small to hold all values of 'enum Kind''

2019-10-22 Thread david.bolvansky at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92182 Bug ID: 92182 Summary: No way to silence ''A::TKind' is too small to hold all values of 'enum Kind'' Product: gcc Version: 9.1.0 Status: UNCONFIRMED Severity: n

[Bug other/63426] [meta-bug] Issues found with -fsanitize=undefined

2019-10-22 Thread postmas...@trippelsdorf-de.bounceio.net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63426 --- Comment #11 from postmas...@trippelsdorf-de.bounceio.net --- Your email was bounced... - ... because something went wrong between you and your recipient. Ugh! What to do next? Well

[Bug other/63426] [meta-bug] Issues found with -fsanitize=undefined

2019-10-22 Thread postmas...@trippelsdorf-de.bounceio.net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63426 --- Comment #12 from postmas...@trippelsdorf-de.bounceio.net --- Created attachment 47087 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=47087&action=edit attachment-60399-1.eml

[Bug fortran/92174] runtime error: index 15 out of bounds for type 'gfc_expr *[15]

2019-10-22 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 kargl at gcc dot gnu.org changed: What|Removed |Added Priority|P3 |P4 Status|UNCONFIR

[Bug other/63426] [meta-bug] Issues found with -fsanitize=undefined

2019-10-22 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63426 Bug 63426 depends on bug 92174, which changed state. Bug 92174 Summary: runtime error: index 15 out of bounds for type 'gfc_expr *[15] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 What|Removed |Added

[Bug fortran/92174] runtime error: index 15 out of bounds for type 'gfc_expr *[15]

2019-10-22 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 --- Comment #8 from kargl at gcc dot gnu.org --- Author: kargl Date: Tue Oct 22 18:38:30 2019 New Revision: 277298 URL: https://gcc.gnu.org/viewcvs?rev=277298&root=gcc&view=rev Log: 2019-10-22 Steven G. Kargl PR fortran/92174

[Bug c++/91548] [10 Regression] Regression in constexpr evaluation of std::array

2019-10-22 Thread h2+bugs at fsfe dot org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91548 --- Comment #6 from Hannes Hauswedell --- To make the test only complain about the current issue, change line 20 in include/seqan3/std/span to ``` #if 0 ``` Regards, Hannes

[Bug fortran/92174] runtime error: index 15 out of bounds for type 'gfc_expr *[15]

2019-10-22 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 --- Comment #7 from kargl at gcc dot gnu.org --- Author: kargl Date: Tue Oct 22 18:18:59 2019 New Revision: 277297 URL: https://gcc.gnu.org/viewcvs?rev=277297&root=gcc&view=rev Log: 2019-10-22 Steven G. Kargl PR fortran/92174

[Bug c++/91548] [10 Regression] Regression in constexpr evaluation of std::array

2019-10-22 Thread h2+bugs at fsfe dot org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91548 --- Comment #5 from Hannes Hauswedell --- (In reply to Marek Polacek from comment #4) > (In reply to Hannes Hauswedell from comment #2) > > Any news on this issue? We are using this pattern in some rather central > > files in our library and the

[Bug fortran/86248] [7/8/9/10 Regression] LEN_TRIM in specification expression causes link failure

2019-10-22 Thread paul.richard.thomas at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86248 --- Comment #6 from paul.richard.thomas at gmail dot com --- Hi Bill, If you look at pr44265, I took over the patch from Ian Sandoe and fixed one or two of the wrinkles associated with it. I do not seem to have given it as much thought as I shou

[Bug c++/92106] [8 Regression] ICE with structured bindings and -Wreturn-local-addr

2019-10-22 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92106 Marek Polacek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/92106] [8 Regression] ICE with structured bindings and -Wreturn-local-addr

2019-10-22 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92106 --- Comment #9 from Marek Polacek --- Author: mpolacek Date: Tue Oct 22 17:46:12 2019 New Revision: 277296 URL: https://gcc.gnu.org/viewcvs?rev=277296&root=gcc&view=rev Log: PR c++/92106 - ICE with structured bindings and -Wreturn-local-

[Bug c++/91548] [10 Regression] Regression in constexpr evaluation of std::array

2019-10-22 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91548 --- Comment #4 from Marek Polacek --- (In reply to Hannes Hauswedell from comment #2) > Any news on this issue? We are using this pattern in some rather central > files in our library and the bug literally breaks 90% of our unit tests so > we can

[Bug rtl-optimization/92180] Missed optimization on casting __builtin_ia32_rdtsc result to int32

2019-10-22 Thread segher at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92180 --- Comment #4 from Segher Boessenkool --- For x86 it may be because targetm.class_likely_spilled_p is true for ax, and then indeed cant_combine_insn_p is true. See r53531, the mail thread for that patch starts at https://gcc.gnu.org/ml/gcc-patc

[Bug rtl-optimization/92180] Missed optimization on casting __builtin_ia32_rdtsc result to int32

2019-10-22 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92180 --- Comment #3 from Jakub Jelinek --- It is cant_combine_insn_p that returns true on insn 14 (insn 5 2 6 2 (parallel [ (set (reg:DI 84) (unspec_volatile:DI [ (const_int 0 [0])

[Bug rtl-optimization/92180] Missed optimization on casting __builtin_ia32_rdtsc result to int32

2019-10-22 Thread segher at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92180 --- Comment #2 from Segher Boessenkool --- Combine *does* combine setters of hard registers. nonzero_bits is not reliable, it depends on the order things are tried in.

[Bug rtl-optimization/92180] Missed optimization on casting __builtin_ia32_rdtsc result to int32

2019-10-22 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92180 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org,

[Bug c++/92181] initializer_list & string_view result in "modification of '' is not a constant expression

2019-10-22 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92181 Marek Polacek changed: What|Removed |Added CC||mpolacek at gcc dot gnu.org --- Comment

[Bug c++/91979] Incorrect mangling for non-template-argument nullptr expression

2019-10-22 Thread kamleshbhalui at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91979 --- Comment #4 from Kamlesh Kumar --- patch posted at https://gcc.gnu.org/ml/gcc-patches/2019-10/msg01585.html

[Bug c++/92181] initializer_list & string_view result in "modification of '' is not a constant expression

2019-10-22 Thread robrecht.dewaele at pegus dot digital
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92181 Robrecht Dewaele changed: What|Removed |Added URL||https://godbolt.org/z/baRg-

[Bug c++/92159] -Wenum-conversion for C++

2019-10-22 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92159 Jonathan Wakely changed: What|Removed |Added Status|WAITING |RESOLVED Resolution|---

[Bug c++/92181] New: initializer_list & string_view result in "modification of '' is not a constant expression

2019-10-22 Thread robrecht.dewaele at pegus dot digital
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92181 Bug ID: 92181 Summary: initializer_list & string_view result in "modification of '' is not a constant expression Product: gcc Version: 9.0 Status: UNCONFIRMED S

[Bug fortran/92174] runtime error: index 15 out of bounds for type 'gfc_expr *[15]

2019-10-22 Thread sgk at troutmask dot apl.washington.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 --- Comment #6 from Steve Kargl --- On Tue, Oct 22, 2019 at 02:56:01PM +, marxin at gcc dot gnu.org wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 > > --- Comment #5 from Martin Liška --- > > Problem is that the compiler invoke

[Bug tree-optimization/92180] New: Missed optimization on casting __builtin_ia32_rdtsc result to int32

2019-10-22 Thread mserdarsanli at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92180 Bug ID: 92180 Summary: Missed optimization on casting __builtin_ia32_rdtsc result to int32 Product: gcc Version: 9.2.0 Status: UNCONFIRMED Severity: normal

[Bug c++/92159] -Wenum-conversion for C++

2019-10-22 Thread jg at jguk dot org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92159 --- Comment #4 from Jonny Grant --- My apologies, I tested with the correct test case and it already does not compile in C++ as desired, so no -Wenum-conversion required. #include typedef enum {brandon, jon, mitch} name_t; typedef enum {fred,

[Bug c++/92062] [9 Regression] ODR-use by static_assert ignored for static member of class template

2019-10-22 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92062 Marek Polacek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/92062] [9 Regression] ODR-use by static_assert ignored for static member of class template

2019-10-22 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92062 --- Comment #7 from Marek Polacek --- Author: mpolacek Date: Tue Oct 22 15:46:47 2019 New Revision: 277295 URL: https://gcc.gnu.org/viewcvs?rev=277295&root=gcc&view=rev Log: PR c++/92062 - ODR-use ignored for static member of class templ

[Bug c++/92158] Enum warning when -1 enum converted to unsigned int or int

2019-10-22 Thread jg at jguk dot org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92158 --- Comment #4 from Jonny Grant --- Hello Implicit conversion can introduce bugs. I would like to detect implicit enum conversions to other types in C and C++. How about just adding the C++ warnings first to match clang in example below? The fo

[Bug c++/91891] [7 Regression] std::function with lambda default initializer in aggregate construction causes ICE

2019-10-22 Thread dascandy at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91891 --- Comment #4 from Peter Bindels --- For posterity, #include #include #include #include #include template std::future make_ready_future(T t); struct y { intv; std::function v2 = [this]() { v; }; };

[Bug tree-optimization/92179] New: [10 regression] r277288 causes ICEs compiling several test cases

2019-10-22 Thread seurer at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92179 Bug ID: 92179 Summary: [10 regression] r277288 causes ICEs compiling several test cases Product: gcc Version: 10.0 Status: UNCONFIRMED Severity: normal

[Bug c++/92106] [8/9 Regression] ICE with structured bindings and -Wreturn-local-addr

2019-10-22 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92106 --- Comment #8 from Marek Polacek --- Author: mpolacek Date: Tue Oct 22 15:21:34 2019 New Revision: 277294 URL: https://gcc.gnu.org/viewcvs?rev=277294&root=gcc&view=rev Log: PR c++/92106 - ICE with structured bindings and -Wreturn-local-

[Bug fortran/92178] Segmentation fault after passing allocatable array as intent(out) and its element as value into the same subroutine

2019-10-22 Thread vladimir.fuka at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92178 --- Comment #1 from Vladimir Fuka --- It also crashes with passing just a(1) instead of (a(1)) and when removing the value attribute.

[Bug fortran/92178] New: Segmentation fault after passing allocatable array as intent(out) and its element as value into the same subroutine

2019-10-22 Thread vladimir.fuka at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92178 Bug ID: 92178 Summary: Segmentation fault after passing allocatable array as intent(out) and its element as value into the same subroutine Product: gcc Version: 9

[Bug c++/91930] [10 Regression] internal compiler error: in lazily_declare_fn, at cp/method.c:2423 with -fconcepts

2019-10-22 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91930 Jason Merrill changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug gcov-profile/91971] Profile directory concatenated with object file path

2019-10-22 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91971 --- Comment #4 from Martin Liška --- (In reply to qinzhao from comment #3) > (In reply to Martin Liška from comment #2) > > Confirmed. Can you please send the patch to mailing list? > > I have sent the patch to gcc-patches several weeks ago, and

[Bug gcov-profile/91971] Profile directory concatenated with object file path

2019-10-22 Thread qinzhao at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91971 --- Comment #3 from qinzhao at gcc dot gnu.org --- (In reply to Martin Liška from comment #2) > Confirmed. Can you please send the patch to mailing list? I have sent the patch to gcc-patches several weeks ago, and pinged twice already: https://g

[Bug fortran/92174] runtime error: index 15 out of bounds for type 'gfc_expr *[15]

2019-10-22 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 --- Comment #5 from Martin Liška --- > Problem is that the compiler invokes an undefined behaviour for the source file. More precisely, it's an out of bounds array access.

[Bug fortran/92174] runtime error: index 15 out of bounds for type 'gfc_expr *[15]

2019-10-22 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 --- Comment #4 from Martin Liška --- (In reply to Steve Kargl from comment #3) > On Tue, Oct 22, 2019 at 02:14:55PM +, marxin at gcc dot gnu.org wrote: > > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 > > > > --- Comment #2 from Martin

[Bug c++/91363] Implement P0960R3: Parenthesized initialization of aggregates

2019-10-22 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91363 Marek Polacek changed: What|Removed |Added Keywords||patch --- Comment #2 from Marek Polacek

[Bug tree-optimization/85887] [7/8/9/10 Regression] Missing DW_TAG_lexical_block PC range

2019-10-22 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85887 --- Comment #5 from Jakub Jelinek --- Author: jakub Date: Tue Oct 22 14:52:52 2019 New Revision: 277293 URL: https://gcc.gnu.org/viewcvs?rev=277293&root=gcc&view=rev Log: PR tree-optimization/85887 * decl.c (expand_static_init):

[Bug c++/90938] [9/10 Regression] Initializing array with {1} works, but not {0}

2019-10-22 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90938 --- Comment #10 from Jakub Jelinek --- There is no cutoff for 9.x (well, in about 2 years from now the branch will be closed), but the branch is used by people in the wild, so especially for regressions from recent releases the sooner it is fixed

[Bug c++/85746] Premature evaluation of __builtin_constant_p?

2019-10-22 Thread glisse at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85746 Marc Glisse changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug preprocessor/90476] prepossessor should error if #line 0

2019-10-22 Thread jg at jguk dot org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90476 --- Comment #9 from Jonny Grant --- Maybe it could say warning: line number out of range 1 - 2147483647

[Bug c++/85746] Premature evaluation of __builtin_constant_p?

2019-10-22 Thread glisse at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85746 --- Comment #9 from Marc Glisse --- Author: glisse Date: Tue Oct 22 14:42:38 2019 New Revision: 277292 URL: https://gcc.gnu.org/viewcvs?rev=277292&root=gcc&view=rev Log: PR c++/85746: Don't fold __builtin_constant_p prematurely 2019-10-22 Marc

[Bug preprocessor/90476] prepossessor should error if #line 0

2019-10-22 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90476 Martin Sebor changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED CC|

[Bug sanitizer/92154] new glibc breaks arm bootstrap due to libsanitizer

2019-10-22 Thread tnfchris at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92154 --- Comment #2 from Tamar Christina --- Author: tnfchris Date: Tue Oct 22 14:25:38 2019 New Revision: 277291 URL: https://gcc.gnu.org/viewcvs?rev=277291&root=gcc&view=rev Log: Arm: Fix arm libsanitizer bootstrap failure Glibc has recently intr

[Bug fortran/92174] runtime error: index 15 out of bounds for type 'gfc_expr *[15]

2019-10-22 Thread sgk at troutmask dot apl.washington.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 --- Comment #3 from Steve Kargl --- On Tue, Oct 22, 2019 at 02:14:55PM +, marxin at gcc dot gnu.org wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 > > --- Comment #2 from Martin Liška --- > (In reply to kargl from comment #1) >

[Bug c++/90938] [9/10 Regression] Initializing array with {1} works, but not {0}

2019-10-22 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90938 --- Comment #9 from Martin Sebor --- I plan to submit a patch for GCC 10 and (hopefully) also GCC 9.x. What's the cutoff for 9?

[Bug fortran/92174] runtime error: index 15 out of bounds for type 'gfc_expr *[15]

2019-10-22 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 --- Comment #2 from Martin Liška --- (In reply to kargl from comment #1) > (In reply to Martin Liška from comment #0) > > Happens with UBSAN build in: > > > > $ ./xgcc -B. > > /home/marxin/Programming/gcc/gcc/testsuite/gfortran.dg/pr91802.f90 >

[Bug fortran/92174] runtime error: index 15 out of bounds for type 'gfc_expr *[15]

2019-10-22 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92174 kargl at gcc dot gnu.org changed: What|Removed |Added CC||kargl at gcc dot gnu.org --- C

[Bug tree-optimization/92177] [10 regression] gcc.dg/vect/bb-slp-22.c FAILs

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92177 Richard Biener changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED Last reconfirmed|

[Bug ipa/92109] [10 Regression] ICE in modify_call_stmt, at ipa-param-manipulation.c:1586

2019-10-22 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92109 Martin Liška changed: What|Removed |Added CC||jamborm at gcc dot gnu.org Known to

[Bug tree-optimization/92166] [10 regression] ICE compiling gcc.dg/vshift-5.c starting with r277241

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

[Bug tree-optimization/92173] [10 Regression] ICE in optab_for_tree_code, at optabs-tree.c:81

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92173 --- Comment #4 from Richard Biener --- Author: rguenth Date: Tue Oct 22 13:08:53 2019 New Revision: 277288 URL: https://gcc.gnu.org/viewcvs?rev=277288&root=gcc&view=rev Log: 2019-10-22 Richard Biener PR tree-optimization/92173

[Bug c++/91826] [8/9/10 Regression] Unexpected behavior when class defined with namespace alias

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91826 Richard Biener changed: What|Removed |Added Target Milestone|--- |8.4

[Bug lto/89075] [9/10 Regression] error: type variant has different TREE_TYPE

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89075 Richard Biener changed: What|Removed |Added Target Milestone|--- |9.3

[Bug c++/91607] [9 regression] internal compiler error: in equal, at cp/constexpr.c:1088

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91607 Richard Biener changed: What|Removed |Added Target Milestone|--- |9.3

[Bug libstdc++/90415] [9/10 Regression] std::is_copy_constructible> is incomplete

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90415 Richard Biener changed: What|Removed |Added Target Milestone|--- |9.3

[Bug rtl-optimization/90706] [9 Regression] Useless code generated for stack / register operations on AVR

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90706 Richard Biener changed: What|Removed |Added Target Milestone|--- |9.3

[Bug ipa/91969] Compiling testsuite/g++.dg/ipa/pr85421.C with -fdump-ipa-inline ICEs

2019-10-22 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91969 Martin Liška changed: What|Removed |Added Keywords||patch --- Comment #3 from Martin Liška -

[Bug target/87833] [9/10 Regression] -fPIC isn't used to create offload shared library

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87833 Richard Biener changed: What|Removed |Added Target Milestone|--- |9.3

[Bug ada/91100] [9,10 Regression] FAIL: gnat.dg/socket1.adb execution test

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91100 Richard Biener changed: What|Removed |Added Target Milestone|--- |9.3

[Bug tree-optimization/90264] [9/10 Regression] -Wnull-dereference QoI issue

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90264 Richard Biener changed: What|Removed |Added Target Milestone|--- |9.3

[Bug c++/90291] [8/9/10 Regression] Inline namespace erroneously extends another namespace

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90291 Richard Biener changed: What|Removed |Added Target Milestone|--- |8.4

[Bug c++/67960] [8/9/10 Regression] Prefixing a function with [[deprecated]] produces multiple warnings

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67960 Richard Biener changed: What|Removed |Added Target Milestone|--- |8.4

[Bug bootstrap/87338] [8/9 Regression] gcc 8.2 fails to bootstrap on ia64

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87338 Richard Biener changed: What|Removed |Added Target Milestone|--- |8.4

[Bug c/88660] [8/9/10 Regression] Invalid report of "set but used variable" with -O

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88660 Richard Biener changed: What|Removed |Added Target Milestone|--- |8.4

[Bug c++/91891] [7 Regression] std::function with lambda default initializer in aggregate construction causes ICE

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91891 Richard Biener changed: What|Removed |Added Priority|P3 |P2

[Bug c++/92105] [7/8/9/10 Regression] decltype(decltype(decltype)) prints exponential number of repeated errors

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92105 Richard Biener changed: What|Removed |Added Priority|P3 |P2

[Bug debug/91887] [7/8/9 Regression] -fdebug-types-section ICE building chromium

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91887 Richard Biener changed: What|Removed |Added Priority|P3 |P2

[Bug tree-optimization/92177] [10 regression] gcc.dg/vect/bb-slp-22.c FAILs

2019-10-22 Thread ro at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92177 Rainer Orth changed: What|Removed |Added Target Milestone|--- |10.0

[Bug target/91816] [7/8/9/10 Regression] Arm generates out of range conditional branches in Thumb2

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91816 Richard Biener changed: What|Removed |Added Priority|P3 |P2

[Bug tree-optimization/92177] New: [10 regression] gcc.dg/vect/bb-slp-22.c FAILs

2019-10-22 Thread ro at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92177 Bug ID: 92177 Summary: [10 regression] gcc.dg/vect/bb-slp-22.c FAILs Product: gcc Version: 10.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree

[Bug middle-end/91623] [7/8 Regression] -msse4.1 -O3 segfault in /usr/lib/gcc/x86_64-pc-linux-gnu/8.3.0/include/smmintrin.h:270:10

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91623 Richard Biener changed: What|Removed |Added Target||x86_64-*-*, i?86-*-* Priority

[Bug tree-optimization/91812] [7/8 Regression] GCC ignores volatile modifier

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91812 Richard Biener changed: What|Removed |Added Priority|P3 |P2

[Bug preprocessor/90476] prepossessor should error if #line 0

2019-10-22 Thread jg at jguk dot org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90476 --- Comment #7 from Jonny Grant --- Could someone confirm this please.

[Bug tree-optimization/91384] [7/8/9/10 Regression] Compare with negation is not eliminated

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

[Bug lto/91273] [7/8/9/10 Regression] ICE in warn_types_mismatch at ipa-devirt.c:995

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91273 Richard Biener changed: What|Removed |Added Priority|P3 |P2

[Bug c++/91241] [7/8/9/10 Regression] internal compiler error: symtab_node::verify failed

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91241 Richard Biener changed: What|Removed |Added Keywords||ice-checking Priority|P3

[Bug tree-optimization/91201] [7/8/9/10 Regression] SIMD not generated for horizontal sum of bytes in array

2019-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91201 Richard Biener changed: What|Removed |Added Priority|P3 |P2 --- Comment #25 from Richard Biener

[Bug middle-end/90796] [8/9 Regression] GCC: O2 vs O3 output differs on simple test

2019-10-22 Thread matz at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90796 Michael Matz changed: What|Removed |Added Summary|[8/9/10 Regression] GCC: O2 |[8/9 Regression] GCC: O2 vs

  1   2   >