[Bug tree-optimization/106106] SRA scalarizes structure copies

2022-06-28 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106106 --- Comment #1 from Richard Biener --- SRA is eliding 'v' by doing what it does, so it essentially changes D.22939 = __builtin_aarch64_ld2v2sf (p1_2(D)); v = D.22939; __b = v; D.22937 = __builtin_aarch64_ld2_lanev2sf (p2_3(D), __b, 1);

[Bug fortran/106108] gfortran gives warning about unitilialized variable for string with both allocatable length and size

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106108 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment #2

[Bug tree-optimization/106106] SRA scalarizes structure copies

2022-06-28 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
(const_int 1 [0x1]) ] UNSPEC_LD2_LANE)) "/opt/compiler-explorer/arm64/gcc-trunk-20220628/aarch64-unknown-linux-gnu/lib/gcc/aarch64-unknown-linux-gnu/13.0.0/include/arm_neon.h":17515:10 -1 (nil)) > In any case improving register allocation or massaging the RTL before it > is the way t

[Bug target/106096] [13 regression] ICE building stage 2 libgcc on loongarch64-linux-gnu because stage 2 gcc is miscompiled

2022-06-28 Thread chenglulu at loongson dot cn via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106096 --- Comment #5 from chenglulu --- Created attachment 53213 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=53213&action=edit Modify the allocation order of caller saved registers.

[Bug target/106096] [13 regression] ICE building stage 2 libgcc on loongarch64-linux-gnu because stage 2 gcc is miscompiled

2022-06-28 Thread xry111 at mengyan1223 dot wang via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106096 --- Comment #6 from Xi Ruoyao --- (In reply to chenglulu from comment #5) > Created attachment 53213 [details] > Modify the allocation order of caller saved registers. I think we need to completely prevent LARCH_PROLOGUE_TEMP from being used fo

[Bug target/106053] [13 Regression] wrong code with -O -fno-tree-fre since r13-707-g68e0063397ba820e

2022-06-28 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106053 --- Comment #3 from Richard Biener --- It's fold_sign_changed_comparison (in it's match.pd incarnation) that replaces (uint128) a == (uint128) b with a == (signed-bool:128) b. That's a latent issue exposed by the change as we now fold this comp

[Bug target/106096] [13 regression] ICE building stage 2 libgcc on loongarch64-linux-gnu because stage 2 gcc is miscompiled

2022-06-28 Thread xry111 at mengyan1223 dot wang via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106096 --- Comment #7 from Xi Ruoyao --- (In reply to Xi Ruoyao from comment #6) > (In reply to chenglulu from comment #5) > > Created attachment 53213 [details] > > Modify the allocation order of caller saved registers. > > I think we need to complet

[Bug tree-optimization/106106] SRA scalarizes structure copies

2022-06-28 Thread rguenth at gcc dot gnu.org via Gcc-bugs
(mem:BLK (reg/v/f:DI 100 [ p2 ]) [0 S8 A8]) > (reg/v:V2x2SF 97 [ __b ]) > (const_int 1 [0x1]) > ] UNSPEC_LD2_LANE)) > "/opt/compiler-explorer/arm64/gcc-trunk-20220628/aarch64-unknown-linux-gnu/ > lib/gcc/aarch64-unknown-linux-gnu/13.0.0

[Bug tree-optimization/106106] SRA scalarizes structure copies

2022-06-28 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106106 --- Comment #4 from Tamar Christina --- > > Is the fact that float32x2x2_t is an aggregate with a field named 'val' > part of the neon API? Yeah, it's mandated by ACLE https://arm-software.github.io/acle/main/acle.html#vector-array-data-types-

[Bug target/106096] [13 regression] ICE building stage 2 libgcc on loongarch64-linux-gnu because stage 2 gcc is miscompiled

2022-06-28 Thread chenglulu at loongson dot cn via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106096 --- Comment #8 from chenglulu --- (In reply to Xi Ruoyao from comment #6) > (In reply to chenglulu from comment #5) > > Created attachment 53213 [details] > > Modify the allocation order of caller saved registers. > > I think we need to complet

[Bug tree-optimization/106106] SRA scalarizes structure copies

2022-06-28 Thread rsandifo at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106106 --- Comment #5 from rsandifo at gcc dot gnu.org --- FWIW, I agree with Richard that this seems like something that should be fixed in RTL. In some ways it's the opposite of what lower-subreg does: whereas lower-subreg is a bit like SRA for RTL

[Bug c++/106111] New: -Wc++20-compat doesn't warn about using `requires` as an identifier

2022-06-28 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106111 Bug ID: 106111 Summary: -Wc++20-compat doesn't warn about using `requires` as an identifier Product: gcc Version: unknown Status: UNCONFIRMED Keywords: diagnos

[Bug c++/106111] -Wc++20-compat doesn't warn about using `requires` as an identifier

2022-06-28 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106111 --- Comment #1 from Jonathan Wakely --- Looks like we don't warn about any keywords with any -Wc++NN-compat options: int decltype, constexpr, consteval, requires, noexcept, alignof, alignas; GCC doesn't warn about any of these, Clang only warn

[Bug target/106097] undefined behaviors regarding integer shifts in loongarch_build_integer

2022-06-28 Thread chenglulu at loongson dot cn via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106097 --- Comment #11 from chenglulu --- > Otherwise LGTM. As the port maintainer you can push it directly into > master. Normally we should bootstrap and regtest before applying a patch, > but currently the bootstrap is blocked by PR106096 :(. Ok,

[Bug c++/106111] -Wc++20-compat doesn't warn about using `requires` as an identifier

2022-06-28 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106111 --- Comment #2 from Jonathan Wakely --- Oh, that's because -Wc++20-compat doesn't include -Wc++17-compat etc. With the right options GCC warns about three: $ g++ -std=c++03 r.C -c -Wc++20-compat -Wc++11-compat -Wc++14-compat -Wc++17-compat r.C

[Bug target/106096] [13 regression] ICE building stage 2 libgcc on loongarch64-linux-gnu because stage 2 gcc is miscompiled

2022-06-28 Thread xry111 at mengyan1223 dot wang via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106096 --- Comment #9 from Xi Ruoyao --- Created attachment 53214 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=53214&action=edit patch removing r13 from SIBCALL_REGS I'm testing this patch now. I suggest to apply this for trunk and gcc-12 bra

[Bug tree-optimization/106112] New: wrong code at -Os and above on x86_64-linux-gnu

2022-06-28 Thread zhendong.su at inf dot ethz.ch via Gcc-bugs
-multilib --with-system-zlib Thread model: posix Supported LTO compression algorithms: zlib gcc version 13.0.0 20220628 (experimental) [master r13-1313-gf9764ea128c] (GCC) [575] % [575] % gcctk -O1 small.c; ./a.out [576] % [576] % gcctk -Os small.c [577] % ./a.out Aborted [578] % [578] % cat small.c

[Bug tree-optimization/106112] wrong code at -Os and above on x86_64-linux-gnu

2022-06-28 Thread zhendong.su at inf dot ethz.ch via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106112 --- Comment #1 from Zhendong Su --- Compiler Explorer: https://godbolt.org/z/v6qY9d6q6

[Bug target/106053] [13 Regression] wrong code with -O -fno-tree-fre since r13-707-g68e0063397ba820e

2022-06-28 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106053 --- Comment #4 from CVS Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:a3ca1fc5f409e257e9fb9a8165bb4a7068ddebbe commit r13-1317-ga3ca1fc5f409e257e9fb9a8165bb4a7068ddebbe Author: Richard Biener Date:

[Bug target/106113] New: wrong codegen for _mm_[u]comineq_{ss,sd} and need to return PF result.

2022-06-28 Thread lingling.kong7 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106113 Bug ID: 106113 Summary: wrong codegen for _mm_[u]comineq_{ss,sd} and need to return PF result. Product: gcc Version: 12.0 Status: UNCONFIRMED Severity: normal

[Bug target/106053] [13 Regression] wrong code with -O -fno-tree-fre since r13-707-g68e0063397ba820e

2022-06-28 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106053 Richard Biener changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug target/106096] [13 regression] ICE building stage 2 libgcc on loongarch64-linux-gnu because stage 2 gcc is miscompiled

2022-06-28 Thread chenglulu at loongson dot cn via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106096 --- Comment #10 from chenglulu --- (In reply to Xi Ruoyao from comment #9) > Created attachment 53214 [details] > patch removing r13 from SIBCALL_REGS > > I'm testing this patch now. > > I suggest to apply this for trunk and gcc-12 branch firs

[Bug preprocessor/8270] [10/11/12/13 Regression] back-slash white space newline with comments, no warning

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=8270 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #68 from Jakub Jelinek

[Bug c/12245] [10/11/12/13 regression] Uses lots of memory when compiling large initialized arrays

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=12245 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #81 from Jakub Jelinek

[Bug c++/14179] [10/11/12/13 Regression] out of memory while parsing array with many initializers

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=14179 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #88 from Jakub Jelinek

[Bug target/18335] [10/11/12/13 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/debug/debug-1.c and debug-2 xyzzy

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=18335 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #27 from Jakub Jelinek

[Bug target/18346] [10/11/12/13 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/trampoline-1.c

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=18346 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #28 from Jakub Jelinek

[Bug tree-optimization/18501] [10/11/12/13 Regression] Missing 'used uninitialized' warning (CCP)

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=18501 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #100 from Jakub Jelinek

[Bug preprocessor/20285] [10/11/12/13 Regression] gcc -E - < . gives a misleading error message

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=20285 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #22 from Jakub Jelinek

[Bug target/20617] [10/11/12/13 Regression] shared SH libgcc is exporting too many symbols

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=20617 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #45 from Jakub Jelinek

[Bug middle-end/21161] [10/11/12/13 Regression] "clobbered by longjmp" warning ignores the data flow

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=21161 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #24 from Jakub Jelinek

[Bug c/21343] [10/11/12/13 Regression] incompatible internal linkage declarations in different scopes not diagnosed

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=21343 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #24 from Jakub Jelinek

[Bug tree-optimization/21485] [10/11/12/13 Regression] missed load PRE, PRE makes i?88/9/10/11/12 suck

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=21485 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #74 from Jakub Jelinek

[Bug c/23144] [10/11/12/13 Regression] invalid parameter forward declarations not diagnosed

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=23144 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #29 from Jakub Jelinek

[Bug middle-end/23868] [10/11/12/13 regression] builtin_apply uses wrong mode for multi-hard-register return values

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=23868 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #37 from Jakub Jelinek

[Bug target/24012] [10/11/12/13 regression] #define _POSIX_C_SOURCE breaks #include

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24012 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #32 from Jakub Jelinek

[Bug preprocessor/24024] [10/11/12/13 Regression] gcc -E -C processes "\" incorrectly inside C comments

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24024 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #26 from Jakub Jelinek

[Bug middle-end/24434] [10/11/12/13 Regression] get_varargs_alias_set returns 0 always

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24434 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #28 from Jakub Jelinek

[Bug preprocessor/24976] [10/11/12/13 Regression] simple hexadecimal number and plus/minus and no space

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24976 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #26 from Jakub Jelinek

[Bug driver/25208] [10/11/12/13 Regression] two outputs and -MMD

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=25208 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #29 from Jakub Jelinek

[Bug c/26154] [10/11/12/13 Regression] OpenMP extensions to the C language is not documented or doumented in the wrong spot

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=26154 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #33 from Jakub Jelinek

[Bug other/26966] [10/11/12/13 Regression] linking of C++/ObjC app fail on OpenBSD 3.9/10/11/12 due POSIX threading unresolved symbols

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=26966 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #37 from Jakub Jelinek

[Bug middle-end/28831] [10/11/12/13 Regression] Aggregate copy not elided when using a return value as a pass-by-value parameter

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=28831 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #40 from Jakub Jelinek

[Bug target/29256] [10/11/12/13 regression] loop performance regression

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=29256 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #73 from Jakub Jelinek

gcc-bugs@gcc.gnu.org

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=32643 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #34 from Jakub Jelinek

[Bug middle-end/33699] [10/11/12/13 regression] missing optimization on const addr area store

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=33699 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #34 from Jakub Jelinek

[Bug tree-optimization/34723] [10/11/12/13 Regression] Summing variable should be initialized to the first member before the loop

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=34723 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #19 from Jakub Jelinek

[Bug testsuite/36443] [10/11/12/13 Regression]: HOSTCC doesn't work with installed gcc

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36443 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #70 from Jakub Jelinek

[Bug tree-optimization/37916] [10/11/12/13 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #36 from Jakub Jelinek

[Bug middle-end/38059] [10/11/12/13 Regression] Compile time regression for gcc.dg/20020425-1.c

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=38059 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #17 from Jakub Jelinek

[Bug target/38134] [10/11/12/13 Regression] speed regression with many loop invariants

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=38134 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #36 from Jakub Jelinek

[Bug tree-optimization/38785] [10/11/12/13 Regression] huge performance regression on EEMBC bitmnp01

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=38785 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #57 from Jakub Jelinek

[Bug target/39725] [10/11/12/13 Regression][cond-optab] MIPS pessimizations on floating-point

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=39725 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #25 from Jakub Jelinek

[Bug fortran/42954] [10/11/12/13 regression] TARGET_*_CPP_BUILTINS issues with gfortran

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #37 from Jakub Jelinek

[Bug c/43798] [10/11/12/13 Regression] attribute((aligned(x))) not honored for array element types?

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43798 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #23 from Jakub Jelinek

[Bug target/44793] [10/11/12/13 Regression] libgcc does not include t-ppccomm on rtems

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44793 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #24 from Jakub Jelinek

[Bug middle-end/45273] [10/11/12/13 Regression] The compiler depends on the host double (-fprofile-corection only)

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=45273 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #25 from Jakub Jelinek

[Bug target/46393] [10/11/12/13 Regression] m68k code size regression

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=46393 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #9 from Jakub Jelinek

[Bug middle-end/46555] [10/11/12/13 Regression] PHI RTL expansion leads to CSiBE regression

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=46555 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #16 from Jakub Jelinek

[Bug middle-end/47344] [10/11/12/13 Regression][meta-bug] GCC gets slower and uses more memory

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47344 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #25 from Jakub Jelinek

[Bug debug/47471] [10/11/12/13 Regression] stdarg functions extraneous too-early prologue end

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47471 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #23 from Jakub Jelinek

[Bug target/47481] [10/11/12/13 Regression] spill failure with -O2 -msoft-float on Ada RTS

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47481 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #22 from Jakub Jelinek

[Bug tree-optimization/49442] [10/11/12/13 Regression] Misaligned store support pessimization

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49442 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #23 from Jakub Jelinek

[Bug target/49826] [10/11/12/13 Regression] Symbols are not decorated with attribute stdcall and -mrtd

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49826 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #22 from Jakub Jelinek

[Bug bootstrap/50229] [10/11/12/13 Regression] Can't cross compile for i686-apple-darwin10/11/12 from x86_64-redhat_linux

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50229 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #37 from Jakub Jelinek

[Bug tree-optimization/50417] [10/11/12/13 regression]: memcpy with known alignment

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50417 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #36 from Jakub Jelinek

[Bug tree-optimization/51017] [10/11/12/13 Regression] GCC performance regression (vs. 4.4/4.5), PRE/LIM increase register pressure too much

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51017 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #33 from Jakub Jelinek

[Bug testsuite/51097] [10/11/12/13 Regression] a lot of "FAIL: gcc.dg/vect" on i688/9/10/11/12 avx build 181168/9/10/11/12 to 181177

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51097 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #19 from Jakub Jelinek

[Bug middle-end/52285] [10/11/12/13 Regression] libgcrypt _gcry_burn_stack slowdown

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52285 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #29 from Jakub Jelinek

[Bug rtl-optimization/53533] [10/11/12/13 regression] vectorization causes loop unrolling test slowdown as measured by Adobe's C++Benchmark

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53533 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #51 from Jakub Jelinek

[Bug c++/53932] [10/11/12/13 Regression] C++ reference variable to member of anonymous union in global is error

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53932 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #5 from Jakub Jelinek

[Bug target/54063] [10/11/12/13 regression] on powerpc64 gcc 4.9/8 generates larger code for global variable accesses than gcc 4.7

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54063 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #25 from Jakub Jelinek

[Bug target/54699] [10/11/12/13 Regression] [SH] gfortran.dg/class_array_9.f03 ICEs

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54699 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #23 from Jakub Jelinek

[Bug target/55181] [10/11/12/13 Regression] Expensive shift loop where a bit-testing instruction could be used

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55181 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #25 from Jakub Jelinek

[Bug rtl-optimization/55278] [10/11/12/13 Regression] Botan performance regressions, other compilers generate better code than gcc

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55278 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #31 from Jakub Jelinek

[Bug target/55428] [10/11/12/13 Regression] -mms-bitfields hides -mno-align-double option

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55428 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #9 from Jakub Jelinek

[Bug rtl-optimization/56451] [10/11/12/13 regression] Wrong code for gcc.c-torture/execute/941015-1.c on SH

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56451 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #18 from Jakub Jelinek

[Bug ipa/57218] [10/11/12/13 Regression] Excessive inlining even at -Os

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57218 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #20 from Jakub Jelinek

[Bug libgcc/57221] [10/11/12/13 regression] libgcc symbol visibility changes break Android blobs

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57221 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #19 from Jakub Jelinek

[Bug tree-optimization/57534] [10/11/12/13 Regression]: Performance regression versus 4.7.3, 4.8.1 is ~15% slower

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57534 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #40 from Jakub Jelinek

[Bug middle-end/57955] [10/11/12/13 Regression] Uniquization of constants reduces alignment of initializers

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57955 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #28 from Jakub Jelinek

[Bug debug/58479] [10/11/12/13 Regression] slow var-tracking on x86_64-linux at -O1 (and above) with -g, but checking disabled

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58479 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #22 from Jakub Jelinek

[Bug c++/58646] [10/11 Regression] ICE on a multidimensional VLA with an empty initializer list

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58646 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #20 from Jakub Jelinek

[Bug c++/59173] [10/11 Regression] Alias template in partial specialization finds name from primary template

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59173 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #6 from Jakub Jelinek

[Bug libgcc/59305] [10/11/12/13 Regression] gcc.dg/atomic/c11-atomic-exec-5.c fails with WARNING: program timed out on x86_64-apple-darwin13

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59305 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #37 from Jakub Jelinek

[Bug target/59371] [10/11/12/13 Regression] Performance regression in GCC 4.8/9/10/11/12 and later versions.

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59371 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #31 from Jakub Jelinek

[Bug go/59431] [10/11/12/13 regression] runtime FAILs on Solaris

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59431 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #16 from Jakub Jelinek

[Bug c++/59498] [DR 1430][10/11/12/13 Regression] Pack expansion error in template alias

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59498 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #20 from Jakub Jelinek

[Bug tree-optimization/59967] [10/11/12/13 Regression] Performance regression from 4.7.x to 4.8.x (loop not unrolled)

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59967 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #21 from Jakub Jelinek

[Bug fortran/60576] [10/11/12/13 Regression] FAIL: gfortran.dg/assumed_rank_7.f90

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60576 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #37 from Jakub Jelinek

[Bug debug/61014] [10/11/12/13 Regression] gdb can't find symbol of derived data type array in nested subroutine

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61014 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #19 from Jakub Jelinek

[Bug middle-end/61118] [10/11/12/13 Regression] Indirect call generated for pthread_cleanup_push with constant cleanup function

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61118 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #30 from Jakub Jelinek

[Bug c++/61259] [10/11/12/13 Regression] Spurious "ISO C++ forbids zero-size array" warning with -pedantic

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61259 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #8 from Jakub Jelinek

[Bug fortran/61527] [10/11/12/13 Regression] [OOP] class/extends, multiple generic assignment, accept invalid

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61527 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #16 from Jakub Jelinek

[Bug middle-end/61577] [10/11/12/13 Regression] can't compile on hp-ux v3 ia64

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61577 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #278 from Jakub Jelinek

[Bug target/61593] Support '#pragma mark - foo' on non-Darwin targets (by simply ignoring it without warning)

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61593 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #12 from Jakub Jelinek

[Bug tree-optimization/62630] [10/11/12/13 Regression] gcc.dg/graphite/vect-pr43423.c XFAILed

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62630 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #33 from Jakub Jelinek

[Bug middle-end/63311] [10/11/12/13 Regression] -O1 optimization introduces valgrind warning

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63311 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #23 from Jakub Jelinek

[Bug c/63326] whether a #pragma is a statement depends on the type of pragma

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63326 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #33 from Jakub Jelinek

[Bug debug/63572] [10/11/12/13 Regression] ICF breaks user debugging experience

2022-06-28 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63572 Jakub Jelinek changed: What|Removed |Added Target Milestone|10.4|10.5 --- Comment #30 from Jakub Jelinek

  1   2   3   4   5   6   7   8   9   >