[Bug debug/112656] btf: function prototypes generated with name

2023-11-21 Thread jemarch at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112656 --- Comment #3 from Jose E. Marchesi --- clang does not emit BTF FUNC nor FUNC_PROTO entries for inlined functions. So the fix is probably to not emit CTF_K_FUNCTION entries that have not been handled in the FOR_EACH_FUNCTION loop.

[Bug middle-end/112653] We should optimize memmove to memcpy using alias oracle

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112653 Andrew Pinski changed: What|Removed |Added CC||pinskia at gcc dot gnu.org Last recon

[Bug middle-end/112653] We should optimize memmove to memcpy using alias oracle

2023-11-21 Thread sjames at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112653 --- Comment #2 from Sam James --- See PR82898 especially...

[Bug tree-optimization/112657] New: missed optimization: cmove not used with multiple returns

2023-11-21 Thread goon.pri.low at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112657 Bug ID: 112657 Summary: missed optimization: cmove not used with multiple returns Product: gcc Version: 13.2.1 Status: UNCONFIRMED Severity: normal P

[Bug middle-end/112653] We should optimize memmove to memcpy using alias oracle

2023-11-21 Thread hubicka at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112653 --- Comment #3 from Jan Hubicka --- PR82898 testcases seems to be about type based alias analysis. However PTA should be useable here.

[Bug c++/112658] New: ICE: finish_expr_stmt , at cp/semantics.cc:892

2023-11-21 Thread julia.desmazes at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112658 Bug ID: 112658 Summary: ICE: finish_expr_stmt , at cp/semantics.cc:892 Product: gcc Version: 13.2.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component:

[Bug target/112657] missed optimization: cmove not used with multiple returns

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112657 --- Comment #1 from Andrew Pinski --- It is converted to a csel on aarch64 so it is either ifcvt.cc rejecting the issue or a tuning issue with the x86_64 backend. x86_64: ``` IF-THEN-JOIN block found, pass 1, test 2, then 3, join 4 ==

[Bug target/112657] missed optimization: cmove not used with multiple returns

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112657 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever confirmed|0

[Bug tree-optimization/112659] New: missed-optimization: if (exp) return exp; else return 0;

2023-11-21 Thread goon.pri.low at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112659 Bug ID: 112659 Summary: missed-optimization: if (exp) return exp; else return 0; Product: gcc Version: 13.2.1 Status: UNCONFIRMED Severity: normal Pr

[Bug rtl-optimization/112657] [13/14 Regression] missed optimization: cmove not used with multiple returns

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112657 Andrew Pinski changed: What|Removed |Added Component|target |rtl-optimization Known to fail|

[Bug middle-end/112660] New: missed-optimization: combine shifts when shifted out bits are known 0

2023-11-21 Thread goon.pri.low at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112660 Bug ID: 112660 Summary: missed-optimization: combine shifts when shifted out bits are known 0 Product: gcc Version: 13.2.1 Status: UNCONFIRMED Severity: normal

[Bug tree-optimization/112659] missed-optimization: if (exp) return exp; else return 0;

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112659 Andrew Pinski changed: What|Removed |Added Ever confirmed|0 |1 Severity|normal

[Bug target/112597] RISC-V regression testsuite errors with rv64gcv_zvl256b

2023-11-21 Thread juzhe.zhong at rivai dot ai via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112597 --- Comment #7 from JuzheZhong --- I think there is middle-end issue here: FAIL: gfortran.dg/maxval_char_3.f90 -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions (internal compiler error: in duplicate_and_interl

[Bug tree-optimization/112659] missed-optimization: if (exp) return exp; else return 0;

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112659 Andrew Pinski changed: What|Removed |Added See Also||https://gcc.gnu.org/bugzill

[Bug tree-optimization/112659] missed-optimization: if (exp) return exp; else return 0;

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112659 --- Comment #3 from Andrew Pinski --- (In reply to Andrew Pinski from comment #1) > So maybe > ``` > (simplify > (cond (eq @0 INTEGER_CST@1) zero_p (plus@3 @0 INTEGER_CST@2)) > @3 > ) > ``` Whoops I forgot the check `wi::to_wide(@1) == -wi::t

[Bug target/112648] RISC-V Vector parameter riscv-autovec-lmul value is ineffective

2023-11-21 Thread juzhe.zhong at rivai dot ai via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112648 JuzheZhong changed: What|Removed |Added CC||juzhe.zhong at rivai dot ai --- Comment #4

[Bug tree-optimization/112659] missed-optimization: if (exp) return exp; else return 0;

2023-11-21 Thread goon.pri.low at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112659 --- Comment #4 from gooncreeper --- (In reply to Andrew Pinski from comment #2) > >Note: this happens for all operators, not just addition! > > Actually it is just addition with a constant on the trunk. > ``` > int g(int v, int b) { > if (v

[Bug c++/112658] [12/13/14 Regression] ICE: finish_expr_stmt , at cp/semantics.cc:892

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112658 Andrew Pinski changed: What|Removed |Added Keywords||ice-on-valid-code Target Milestone|--

[Bug target/112651] RISC-V Vector new option -mvect-lmul required to force LMUL values (rather than --param=riscv-autovec-lmul to hint at values)

2023-11-21 Thread juzhe.zhong at rivai dot ai via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112651 JuzheZhong changed: What|Removed |Added CC||juzhe.zhong at rivai dot ai --- Comment #3

[Bug c++/112658] [12/13/14 Regression] ICE: finish_expr_stmt with casting an temp array to pointer

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112658 Andrew Pinski changed: What|Removed |Added Summary|[12/13/14 Regression] ICE: |[12/13/14 Regression] ICE:

[Bug tree-optimization/112659] missed-optimization: if (exp) return exp; else return 0;

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112659 --- Comment #5 from Andrew Pinski --- (In reply to gooncreeper from comment #4) > I am not quite testing on the trunk build but I also believe modulo Yes but only powers of 2. Due to the conversions to using &.

[Bug middle-end/112661] New: [14] RISC-V ICE: in duplicate_and_interleave, at tree-vect-slp.cc:8025 with maxval_char_3.f90 vlen256b

2023-11-21 Thread patrick at rivosinc dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112661 Bug ID: 112661 Summary: [14] RISC-V ICE: in duplicate_and_interleave, at tree-vect-slp.cc:8025 with maxval_char_3.f90 vlen256b Product: gcc Version: 14.0 Status: UNCONFI

[Bug c++/112658] [12/13/14 Regression] ICE: finish_expr_stmt with casting an temp array to pointer and constructor call

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112658 --- Comment #3 from Andrew Pinski --- Hmm GCC rejects: ``` struct foo{ foo(const int *new_mac); }; typedef int t[1]; void g(){ foo f(t{ 0xFC}); } ``` While clang, MSVC all accepts it ...

[Bug c++/112658] [12/13/14 Regression] ICE: finish_expr_stmt with casting an temp array to pointer and constructor call

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112658 Andrew Pinski changed: What|Removed |Added See Also||https://gcc.gnu.org/bugzill

[Bug target/112597] RISC-V regression testsuite errors with rv64gcv_zvl256b

2023-11-21 Thread patrick at rivosinc dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112597 --- Comment #8 from Patrick O'Neill --- (In reply to JuzheZhong from comment #7) > I think there is middle-end issue here: > > FAIL: gfortran.dg/maxval_char_3.f90 -O3 -fomit-frame-pointer > -funroll-loops -fpeel-loops -ftracer -finline-functi

[Bug middle-end/112662] New: missed-optimization: loop increment until wrap

2023-11-21 Thread goon.pri.low at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112662 Bug ID: 112662 Summary: missed-optimization: loop increment until wrap Product: gcc Version: 13.2.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component:

[Bug middle-end/112662] missed-optimization: loop increment until wrap

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112662 Andrew Pinski changed: What|Removed |Added Keywords||missed-optimization Ever confirmed|

[Bug sanitizer/112353] asan-enabled, aarch64-gcc cross-compiled elf executables fail ro run in qemu-user on x86

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112353 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug target/112531] [14] RISC-V: gcc.dg/unroll-8.c rtl-dump scan errors with --param=riscv-autovec-preference=scalable

2023-11-21 Thread palmer at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112531 palmer at gcc dot gnu.org changed: What|Removed |Added Last reconfirmed||2023-11-21 Ever confirme

[Bug middle-end/112663] New: missed-optimization: sum of 1 to n

2023-11-21 Thread goon.pri.low at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112663 Bug ID: 112663 Summary: missed-optimization: sum of 1 to n Product: gcc Version: 13.2.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end

[Bug middle-end/112663] missed-optimization: sum of 1 to n

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112663 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Keywords|missed-opti

[Bug middle-end/65855] SCEV / SCCP missing optimization: triangular numbers

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65855 Andrew Pinski changed: What|Removed |Added CC||goon.pri.low at gmail dot com --- Commen

[Bug middle-end/112664] New: missed-optimization: extra comparison when reordering statements

2023-11-21 Thread goon.pri.low at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112664 Bug ID: 112664 Summary: missed-optimization: extra comparison when reordering statements Product: gcc Version: 13.2.1 Status: UNCONFIRMED Severity: normal

[Bug middle-end/112664] missed-optimization: extra comparison when reordering statements

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112664 Andrew Pinski changed: What|Removed |Added Severity|normal |enhancement Keywords|

[Bug target/105496] Comparison optimizations result in unnecessary cmp instructions

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105496 Andrew Pinski changed: What|Removed |Added CC||goon.pri.low at gmail dot com --- Comme

[Bug middle-end/112664] missed-optimization: extra comparison when reordering statements

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112664 Andrew Pinski changed: What|Removed |Added Resolution|--- |DUPLICATE Status|UNCONFIRME

[Bug middle-end/112664] missed-optimization: extra comparison when reordering statements

2023-11-21 Thread goon.pri.low at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112664 --- Comment #2 from gooncreeper --- (In reply to Andrew Pinski from comment #1) > Dup. > > *** This bug has been marked as a duplicate of bug 105496 *** Apologies. Though, how are you so good at finding duplicates? What's the secret?

[Bug c++/112658] [12/13/14 Regression] ICE: finish_expr_stmt with casting an temp array to pointer and constructor call

2023-11-21 Thread ppalka at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112658 Patrick Palka changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |ppalka at gcc dot gnu.org

[Bug middle-end/112664] missed-optimization: extra comparison when reordering statements

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112664 --- Comment #3 from Andrew Pinski --- (In reply to gooncreeper from comment #2) > Though, how are you so good at finding duplicates? What's the secret? Everyone says I have bugzilla memorized but I don't, I am just really code at doing keyword

[Bug c++/110158] Cannot use union with std::string inside in constant expression

2023-11-21 Thread ppalka at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110158 --- Comment #8 from Patrick Palka --- It seems the comment #4 testcase is still rejected on trunk after/despite r14-4334-g28adad7a32ed92?

[Bug middle-end/112664] missed-optimization: extra comparison when reordering statements

2023-11-21 Thread goon.pri.low at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112664 --- Comment #4 from gooncreeper --- (In reply to Andrew Pinski from comment #1) > Dup. > > *** This bug has been marked as a duplicate of bug 105496 *** Apologies. Though, how are you so good at finding duplicates? What's the secret?(In reply

[Bug target/111815] VAX: ICE in 'print_operand_address' while building 'elf_zstd_decompress' from libbacktrace/elf.c

2023-11-21 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111815 --- Comment #2 from CVS Commits --- The master branch has been updated by Maciej W. Rozycki : https://gcc.gnu.org/g:56ff988e6be3fdba70cad86d73ec0038bc3b6b5a commit r14-5745-g56ff988e6be3fdba70cad86d73ec0038bc3b6b5a Author: Maciej W. Rozycki D

[Bug target/111815] VAX: ICE in 'print_operand_address' while building 'elf_zstd_decompress' from libbacktrace/elf.c

2023-11-21 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111815 --- Comment #3 from CVS Commits --- The releases/gcc-13 branch has been updated by Maciej W. Rozycki : https://gcc.gnu.org/g:2c23fa691d23d9f3d57ac7feece6fbbb7236c563 commit r13-8089-g2c23fa691d23d9f3d57ac7feece6fbbb7236c563 Author: Maciej W. R

[Bug target/112643] [14 regression] including x86intrin.h is broken for -march=native (which adds -mno-avx10.1-256 )

2023-11-21 Thread haochen.jiang at intel dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112643 --- Comment #21 from Haochen Jiang --- (In reply to Andrew Pinski from comment #20) > The use of __builtin_ia32_2intersectd128 in avx512vp2intersectvlintrin.h has: > #pragma GCC target("avx512vp2intersect,avx512vl,no-evex512") > > While i386-bu

[Bug c/112647] Inconsistent Comparison Results of Unsigned Bit Fields Across Different Compilers and Architectures

2023-11-21 Thread guminb at ajou dot ac.kr via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112647 --- Comment #2 from gyumin --- Thank you for your kind reply

[Bug target/111815] VAX: ICE in 'print_operand_address' while building 'elf_zstd_decompress' from libbacktrace/elf.c

2023-11-21 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111815 --- Comment #4 from CVS Commits --- The releases/gcc-12 branch has been updated by Maciej W. Rozycki : https://gcc.gnu.org/g:31bc12b6bb3fd56a65d1f73dcc4fcfad6486361c commit r12-9998-g31bc12b6bb3fd56a65d1f73dcc4fcfad6486361c Author: Maciej W. R

[Bug target/111815] VAX: ICE in 'print_operand_address' while building 'elf_zstd_decompress' from libbacktrace/elf.c

2023-11-21 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111815 --- Comment #5 from CVS Commits --- The releases/gcc-11 branch has been updated by Maciej W. Rozycki : https://gcc.gnu.org/g:66a4094112c446ec16733c687e4b3813519da66b commit r11-11108-g66a4094112c446ec16733c687e4b3813519da66b Author: Maciej W.

[Bug target/111815] VAX: ICE in 'print_operand_address' while building 'elf_zstd_decompress' from libbacktrace/elf.c

2023-11-21 Thread macro at orcam dot me.uk via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111815 Maciej W. Rozycki changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug target/112611] LoongArch: Test cases lsx-vshuf.c and lasx-xvshuf_b.c fails on LA664

2023-11-21 Thread xujiahao at loongson dot cn via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112611 --- Comment #3 from Jiahao Xu --- (In reply to Xi Ruoyao from comment #2) > (In reply to Jiahao Xu from comment #1) > > Due to some issues with the implementation of the [x]vshuf instruction in > > LA464, there is a problem where, when the index

[Bug tree-optimization/111796] OMP SIMD call vectorization fails for arguments subject to integer promotion rules

2023-11-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111796 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug target/111488] ICE ion riscv gcc.dg/vect/vect-126.c

2023-11-21 Thread rdapp at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111488 Robin Dapp changed: What|Removed |Added Resolution|--- |FIXED Status|UNCONFIRMED

[Bug tree-optimization/112661] [14] RISC-V ICE: in duplicate_and_interleave, at tree-vect-slp.cc:8025 with maxval_char_3.f90 vlen256b

2023-11-21 Thread rdapp at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112661 --- Comment #1 from Robin Dapp --- Confirmed, smaller example: program main implicit none integer, parameter :: n=5 character(len=6), dimension(n,n) :: a character(len=6), dimension(n) :: r1 integer :: i logical, dimension(n,n) :: m

[Bug c++/86286] Could __attribute__ ((nothrow)) on a noexcept function turn off EH codegen?

2023-11-21 Thread tanksherman27 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86286 Julian Waters changed: What|Removed |Added CC||tanksherman27 at gmail dot com --- Comme

[Bug target/112598] RISC-V regression testsuite errors with rv64gcv_zvl512b

2023-11-21 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112598 --- Comment #5 from CVS Commits --- The trunk branch has been updated by Lehua Ding : https://gcc.gnu.org/g:d13e59b86c5cbeec6135ada3f6dc983289cac610 commit r14-5748-gd13e59b86c5cbeec6135ada3f6dc983289cac610 Author: Juzhe-Zhong Date: Wed Nov

[Bug target/112643] [14 regression] including x86intrin.h is broken for -march=native (which adds -mno-avx10.1-256 )

2023-11-21 Thread haochen.jiang at intel dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112643 --- Comment #22 from Haochen Jiang --- A quick workaround would be not appending -mno-avx10.1-xxx into -march=native. And it should work after my experiment. However, I am finding a better way to do that. The real problem seems like the AVX10 a

[Bug tree-optimization/112661] [14] RISC-V ICE: in duplicate_and_interleave, at tree-vect-slp.cc:8025 with maxval_char_3.f90 vlen256b

2023-11-21 Thread juzhe.zhong at rivai dot ai via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112661 --- Comment #2 from JuzheZhong --- (In reply to Robin Dapp from comment #1) > Confirmed, smaller example: > > program main > implicit none > integer, parameter :: n=5 > character(len=6), dimension(n,n) :: a > character(len=6), dimension

[Bug middle-end/32667] block copy with exact overlap is expanded as memcpy

2023-11-21 Thread rguenther at suse dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=32667 --- Comment #25 from rguenther at suse dot de --- On Tue, 21 Nov 2023, bugdal at aerifal dot cx wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=32667 > > Rich Felker changed: > >What|Removed |Added >

[Bug middle-end/112344] [14 Regression] Wrong code at -O2 on x86_64-pc-linux-gnu

2023-11-21 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112344 --- Comment #7 from Richard Biener --- Ah, it reproduces (a local patch hides the issue, the bisected rev. likely just exposes an existing issue). We're optimizing this to [local count: 16873086]: [local count: 105119324]: # c_31 = PH

[Bug c/112665] New: I am getting incorrect output values at optimization level 2 in GCC for the s390x architecture.

2023-11-21 Thread shinwogud12 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112665 Bug ID: 112665 Summary: I am getting incorrect output values at optimization level 2 in GCC for the s390x architecture. Product: gcc Version: 11.4.0 Status: UNCONFIRMED

[Bug c/112665] I am getting incorrect output values at optimization level 2 in GCC for the s390x architecture.

2023-11-21 Thread shinwogud12 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112665 --- Comment #1 from 신재형 --- (In reply to 신재형 from comment #0) > The provided C code includes a main function and a helper function i(), > along with a struct definition and several global variables. The code > primarily involves conditional logi

[Bug tree-optimization/112661] [14] RISC-V ICE: in duplicate_and_interleave, at tree-vect-slp.cc:8025 with maxval_char_3.f90 vlen256b

2023-11-21 Thread rdapp at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112661 --- Comment #3 from Robin Dapp --- Yes, as agreed. Though today I probably won't be able to do much due to private matters.

<    1   2