[Bug tree-optimization/115723] [14 Regression] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

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

[Bug tree-optimization/115723] [14 Regression] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-08 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #18 from GCC Commits --- The releases/gcc-14 branch has been updated by Richard Biener : https://gcc.gnu.org/g:64a6c0d594c05f275de91df35047cffb3ccecf2f commit r14-10394-g64a6c0d594c05f275de91df35047cffb3ccecf2f Author: Richard

[Bug tree-optimization/115723] [14 Regression] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-02 Thread edison_chan_gz at hotmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #17 from edison --- (In reply to Richard Biener from comment #16) > Created attachment 58561 [details] > patch > > I have attached it as a patch for your convenience. You can apply it to a > source tree with the 'patch' utility.

[Bug tree-optimization/115723] [14 Regression] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-02 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #16 from Richard Biener --- Created attachment 58561 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=58561=edit patch I have attached it as a patch for your convenience. You can apply it to a source tree with the 'patch'

[Bug tree-optimization/115723] [14 Regression] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-02 Thread edison_chan_gz at hotmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #15 from edison --- (In reply to Richard Biener from comment #14) > (In reply to edison from comment #13) > > (In reply to GCC Commits from comment #11) > > > The master branch has been updated by Richard Biener > > > : > > > > >

[Bug tree-optimization/115723] [14 Regression] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-02 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #14 from Richard Biener --- (In reply to edison from comment #13) > (In reply to GCC Commits from comment #11) > > The master branch has been updated by Richard Biener : > > > >

[Bug tree-optimization/115723] [14 Regression] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-01 Thread edison_chan_gz at hotmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #13 from edison --- (In reply to GCC Commits from comment #11) > The master branch has been updated by Richard Biener : > > https://gcc.gnu.org/g:286cda3461d6f5ce7d911d3f26bd4975ea7ea11d > > commit

[Bug tree-optimization/115723] [14 Regression] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-01 Thread rguenth at gcc dot gnu.org via Gcc-bugs
|CPU2017 521/621 build error |CPU2017 521/621 build error |with -Ofast and AVX512 |with -Ofast and AVX512 |enabled(-ftree-vectorize?) |enabled(-ftree-vectorize?) Known to work||15.0 --- Comment #12 from Richard Biener

[Bug tree-optimization/115723] [14/15 Regression] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-01 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #11 from GCC Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:286cda3461d6f5ce7d911d3f26bd4975ea7ea11d commit r15-1745-g286cda3461d6f5ce7d911d3f26bd4975ea7ea11d Author: Richard Biener Date:

[Bug tree-optimization/115723] [14/15 Regression] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-01 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #10 from Richard Biener --- double foo (double *x, double *y, int n) { double res = 0.; for (int i = 0; i < n; ++i) if (y[i] > 1.) res += x[i]; else res = 1e20; return res; } ICEs with -march=x86-64-v4

[Bug tree-optimization/115723] [14/15 Regression] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-01 Thread rguenth at gcc dot gnu.org via Gcc-bugs
CPU2017 521/621 build |[14/15 Regression] SPEC |error with -Ofast and |CPU2017 521/621 build error |AVX512 |with -Ofast and AVX512 |enabled(-ftree-vectorize?) |enabled(-ftree-vectorize?) Known to fail

[Bug tree-optimization/115723] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-01 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #9 from Richard Biener --- sum_38 = .COND_ADD (_72, _36, sum_53, 1.0e+20); so the else value is not equal to the reduction chain op (sum_53). I'm reducing now.

[Bug tree-optimization/115723] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-01 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 Richard Biener changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |rguenth at gcc dot gnu.org

[Bug target/115723] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-01 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #7 from Andrew Pinski --- The assert that is being hitting: bool cond_fn_p = code.is_internal_fn () && conditional_internal_fn_code (internal_fn (code)) != ERROR_MARK; if (cond_fn_p) { gcc_assert (code ==

[Bug target/115723] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-01 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #6 from Andrew Pinski --- /home/edison/gcc14/libexec/gcc/x86_64-pc-linux-gnu/14.1.0/f951 module_sf_bep.fppized.f90 -I . -I ./netcdf/include -I ./inc -quiet -dumpbase module_sf_bep.fppized.f90 -dumpbase-ext .f90 -m64

[Bug target/115723] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-01 Thread edison_chan_gz at hotmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #5 from edison --- gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/home/edison/gcc14/libexec/gcc/x86_64-pc-linux-gnu/14.1.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: ../configure

[Bug target/115723] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-01 Thread edison_chan_gz at hotmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #4 from edison --- (In reply to Andrew Pinski from comment #2) > Also what version of binutils are you using? If there is an assembly error. ld -v GNU ld (GNU Binutils for Ubuntu) 2.42

[Bug target/115723] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled(-ftree-vectorize?)

2024-07-01 Thread edison_chan_gz at hotmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 --- Comment #3 from edison --- Created attachment 58547 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=58547=edit the output file which build with -march=x86-64-v4 -v-Ofast

[Bug target/115723] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled.

2024-06-30 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 Andrew Pinski changed: What|Removed |Added Target||x86_64-linux-gnu

[Bug tree-optimization/115723] SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled.

2024-06-30 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 Andrew Pinski changed: What|Removed |Added Ever confirmed|0 |1 Component|fortran

[Bug fortran/115723] New: SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled.

2024-06-30 Thread edison_chan_gz at hotmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115723 Bug ID: 115723 Summary: SPEC CPU2017 521/621 build error with -Ofast and AVX512 enabled. Product: gcc Version: 14.1.0 Status: UNCONFIRMED Severity: normal

[Bug bootstrap/115416] [13/14/15 regression] Setting --includedir to a nonexistent directory causes a build error since r13-5490-g59e4c98173a79f

2024-06-11 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115416 Richard Biener changed: What|Removed |Added Version|unknown |14.1.0 Target Milestone|---

[Bug bootstrap/115416] [13/14/15 regression] Setting --includedir to a nonexistent directory causes a build error since r13-5490-g59e4c98173a79f

2024-06-11 Thread syq at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115416 --- Comment #7 from YunQiang Su --- Maybe this patch is better --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -560,11 +560,7 @@ LINKER_PLUGIN_API_H = $(srcdir)/../include/plugin-api.h # Default native SYSTEM_HEADER_DIR, to be overridden by

[Bug bootstrap/115416] [13/14/15 regression] Setting --includedir to a nonexistent directory causes a build error since r13-5490-g59e4c98173a79f

2024-06-10 Thread syq at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115416 --- Comment #6 from YunQiang Su --- (In reply to Marcus Calhoun-Lopez from comment #5) > (In reply to YunQiang Su from comment #3) > > Since it doesn't exist, why use --includedir with it? > > /opt/local/include/gcc is where the header files

[Bug bootstrap/115416] [13/14/15 regression] Setting --includedir to a nonexistent directory causes a build error since r13-5490-g59e4c98173a79f

2024-06-10 Thread marcuscalhounlopez at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115416 --- Comment #5 from Marcus Calhoun-Lopez --- (In reply to YunQiang Su from comment #3) > Since it doesn't exist, why use --includedir with it? /opt/local/include/gcc is where the header files will be installed after the build, so there is no

[Bug bootstrap/115416] [13/14/15 regression] Setting --includedir to a nonexistent directory causes a build error since r13-5490-g59e4c98173a79f

2024-06-10 Thread marcuscalhounlopez at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115416 --- Comment #4 from Marcus Calhoun-Lopez --- (In reply to YunQiang Su from comment #2) > Can you give me the configure command, so that I can have a test. The pertinent part of the configure command is `configure --prefix=/opt/local

[Bug bootstrap/115416] [13/14/15 regression] Setting --includedir to a nonexistent directory causes a build error since r13-5490-g59e4c98173a79f

2024-06-10 Thread syq at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115416 --- Comment #3 from YunQiang Su --- Since it doesn't exist, why use --includedir with it? Anyway, so, maybe we should detect the existence of this dir. Can you have a try of this patch? --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -560,10

[Bug bootstrap/115416] [13/14/15 regression] Setting --includedir to a nonexistent directory causes a build error since r13-5490-g59e4c98173a79f

2024-06-10 Thread syq at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115416 --- Comment #2 from YunQiang Su --- Can you give me the configure command, so that I can have a test.

[Bug bootstrap/115416] [13/14/15 regression] Setting --includedir to a nonexistent directory causes a build error since r13-5490-g59e4c98173a79f

2024-06-10 Thread sjames at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115416 Sam James changed: What|Removed |Added Status|UNCONFIRMED |NEW See Also|

[Bug bootstrap/115416] Setting --includedir to a nonexistent directory causes a build error

2024-06-10 Thread sjames at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115416 Sam James changed: What|Removed |Added CC||sjames at gcc dot gnu.org,

[Bug bootstrap/115416] New: Setting --includedir to a nonexistent directory causes a build error

2024-06-10 Thread marcuscalhounlopez at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115416 Bug ID: 115416 Summary: Setting --includedir to a nonexistent directory causes a build error Product: gcc Version: unknown Status: UNCONFIRMED Severity

[COMMITTED] Fix the build: error message `quote`

2024-04-30 Thread Andrew Pinski
The problem here is the quote mark is for English's possessiveness rather than a quote but the error message format detection is too simple so it warns which causes -Werror to fail. Committed as obvious after a quick build. gcc/ChangeLog: * tree-cfg.cc (verify_gimple_assign): Remove

[gcc r15-77] Fix the build: error message `quote`

2024-04-30 Thread Andrew Pinski via Gcc-cvs
https://gcc.gnu.org/g:1ff71f71a13f5ed423389d20ed34f3217e632777 commit r15-77-g1ff71f71a13f5ed423389d20ed34f3217e632777 Author: Andrew Pinski Date: Tue Apr 30 09:44:52 2024 -0700 Fix the build: error message `quote` The problem here is the quote mark is for English's

[11/12/13 only] build error: libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp:180:10: fatal error: crypt.h: No such file or directory

2024-03-11 Thread Chris Packham
Hi from crosstool-ng, I've had a user report a build error for GCC 13.2.0 with and aarch64 config with libsanitizer enabled (https://github.com/crosstool-ng/crosstool-ng/issues/2010). [ERROR] /home/ctng/crosstool-ng/.build/aarch64-unknown-linux-gnu/src/gcc/libsanitizer/sanitizer_common

[Bug sanitizer/111057] [11/12/13 only] build error: libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp:180:10: fatal error: crypt.h: No such file or directory

2024-03-11 Thread romain.geissler at amadeus dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111057 Romain Geissler changed: What|Removed |Added CC||romain.geissler at amadeus dot com

[Bug sanitizer/111057] [11/12/13 only] build error: libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp:180:10: fatal error: crypt.h: No such file or directory

2023-08-17 Thread judge.packham at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111057 --- Comment #5 from Chris Packham --- Created attachment 55751 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=55751=edit Remove crypt and crypt_r interceptors Attached is the patch derived from

[Bug sanitizer/111057] [11/12/13 only] build error: libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp:180:10: fatal error: crypt.h: No such file or directory

2023-08-17 Thread judge.packham at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111057 --- Comment #4 from Chris Packham --- (In reply to Andrew Pinski from comment #1) > What version of glibc is being built with here? glibc-2.38 > Most likely could backport: > >

[Bug sanitizer/111057] [11/12/13 only] build error: libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp:180:10: fatal error: crypt.h: No such file or directory

2023-08-17 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111057 Andrew Pinski changed: What|Removed |Added Last reconfirmed||2023-08-18

[Bug sanitizer/111057] [11/12/13 only] build error: libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp:180:10: fatal error: crypt.h: No such file or directory

2023-08-17 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111057 Andrew Pinski changed: What|Removed |Added Summary|build error:|[11/12/13 only] build

[Bug sanitizer/111057] build error: libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp:180:10: fatal error: crypt.h: No such file or directory

2023-08-17 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111057 --- Comment #2 from Andrew Pinski --- Most likely could backport: https://github.com/llvm/llvm-project/commit/d7bead833631486e337e541e692d9b4a1ca14edd

[Bug sanitizer/111057] build error: libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp:180:10: fatal error: crypt.h: No such file or directory

2023-08-17 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111057 --- Comment #1 from Andrew Pinski --- What version of glibc is being built with here?

[Bug sanitizer/111057] New: build error: libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp:180:10: fatal error: crypt.h: No such file or directory

2023-08-17 Thread judge.packham at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111057 Bug ID: 111057 Summary: build error: libsanitizer/sanitizer_common/sanitizer_platform_limit s_posix.cpp:180:10: fatal error: crypt.h: No such file or directory

RE: [PATCH v1] RISC-V: Fix one build error for template default arg

2023-08-16 Thread Li, Pan2 via Gcc-patches
Committed, thanks Kito. Pan -Original Message- From: Kito Cheng Sent: Wednesday, August 16, 2023 5:49 PM To: Li, Pan2 Cc: gcc-patches@gcc.gnu.org; juzhe.zh...@rivai.ai; kito.ch...@sifive.com; Wang, Yanzhang Subject: Re: [PATCH v1] RISC-V: Fix one build error for template default arg

Re: [PATCH v1] RISC-V: Fix one build error for template default arg

2023-08-16 Thread Kito Cheng via Gcc-patches
ok On Wed, Aug 16, 2023 at 5:44 PM Pan Li via Gcc-patches wrote: > > From: Pan Li > > In some build option combination, the default value may result in > below error. This patch would like to fix it by passing a explict > argument. > > riscv-vector-builtins-bases.cc:2495:24: error: invalid use

[PATCH v1] RISC-V: Fix one build error for template default arg

2023-08-16 Thread Pan Li via Gcc-patches
From: Pan Li In some build option combination, the default value may result in below error. This patch would like to fix it by passing a explict argument. riscv-vector-builtins-bases.cc:2495:24: error: invalid use of template-name \ ‘riscv_vector::vfcvt_f’ without an argument list

[Bug c++/103871] [11 Regression] coroutines: co_await causes build error

2023-07-07 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 Bug 103871 depends on bug 98056, which changed state. Bug 98056 Summary: coroutines: ICE tree check: expected record_type or union_type or qual_union_type, have array_type since r11-2183-g0f66b8486cea8668

[Bug c++/103871] [11 Regression] coroutines: co_await causes build error

2023-04-29 Thread iains at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 Iain Sandoe changed: What|Removed |Added Resolution|--- |FIXED Status|ASSIGNED

[Bug c++/103871] [11 Regression] coroutines: co_await causes build error

2023-04-21 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 --- Comment #21 from CVS Commits --- The releases/gcc-11 branch has been updated by Jason Merrill : https://gcc.gnu.org/g:998e77e55126269b3e67b2f05f0f27a421839673 commit r11-10641-g998e77e55126269b3e67b2f05f0f27a421839673 Author: Jason

[Bug c++/103871] [11/12 Regression] coroutines: co_await causes build error

2023-04-18 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 --- Comment #20 from CVS Commits --- The releases/gcc-12 branch has been updated by Jason Merrill : https://gcc.gnu.org/g:1da2d99c632a90e5af55c8f8db1c11af587bb0a0 commit r12-9434-g1da2d99c632a90e5af55c8f8db1c11af587bb0a0 Author: Jason Merrill

Re: gcc 13 Build error

2023-04-02 Thread Jonathan Wakely via Gcc
, because it should build without errors. > On Sun, Apr 2, 2023 at 7:13 PM Damian Tometzki > wrote: > > > > Hello together, > > > > i have the following build error gcc 13 current git: > > > > /home/damian/data/gcc13built/./prev-gcc/xg++ > > -B/home/dam

Re: gcc 13 Build error

2023-04-02 Thread Damian Tometzki
s conflict with \float extensions", arch); return subset_list; On Sun, Apr 2, 2023 at 7:13 PM Damian Tometzki wrote: > > Hello together, > > i have the following build error gcc 13 current git: > > /home/damian/data/gcc13built/./prev-gcc/xg++ > -B/home/damian/d

gcc 13 Build error

2023-04-02 Thread Damian Tometzki
Hello together, i have the following build error gcc 13 current git: /home/damian/data/gcc13built/./prev-gcc/xg++ -B/home/damian/data/gcc13built/./prev-gcc/ -B/usr/riscv64-linux-gnu/bin/ -nostdinc++ -B/home/damian/data/gcc13built/prev-riscv64-linux-gnu/libstdc++-v3/src/.libs -B/home/damian/data

[Bug c++/103871] [11/12 Regression] co_await causes build error

2023-03-15 Thread jason at gcc dot gnu.org via Gcc-bugs
|co_await causes build error |causes build error --- Comment #19 from Jason Merrill --- Fixed for GCC 13 so far.

[Bug c++/103871] [11/12/13 Regression] co_await causes build error

2023-03-15 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 --- Comment #18 from CVS Commits --- The trunk branch has been updated by Jason Merrill : https://gcc.gnu.org/g:ea4dd8f512979db247c54d6b41377bb73699bcd7 commit r13-6702-gea4dd8f512979db247c54d6b41377bb73699bcd7 Author: Jason Merrill Date:

[Bug c++/103871] [11/12/13 Regression] co_await causes build error

2023-03-15 Thread jason at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 --- Comment #17 from Jason Merrill --- Iain, do you want to attach your WIP here so someone else can finish it up? Or do you expect to finish it within the next month?

[Bug c++/103871] [11/12/13 Regression] co_await causes build error

2023-01-04 Thread kiwixz at outlook dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 --- Comment #16 from kiwixz at outlook dot com --- Hi, I wonder if there is any update on this ? It's still present in trunk, and I would like to upgrade from GCC 10 to latest. Is it worth just applying the workaround for now or does it have a

[Bug libstdc++/107883] c++17/memory_resource.cc build error for H8/300 target

2022-11-26 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107883 Andrew Pinski changed: What|Removed |Added Resolution|--- |DUPLICATE

[Bug libstdc++/107883] New: c++17/memory_resource.cc build error for H8/300 target

2022-11-26 Thread uaa at mx5 dot nisiq.net via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107883 Bug ID: 107883 Summary: c++17/memory_resource.cc build error for H8/300 target Product: gcc Version: 12.2.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-10-31 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 Andrew Pinski changed: What|Removed |Added Target Milestone|--- |13.0

[Bug bootstrap/107042] GCC build error after today's change

2022-09-26 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107042 --- Comment #8 from Jonathan Wakely --- Because incremental rebuilds for trunk are not supported. If it works, that's nice, if it doesn't, it's not a bug. Do a clean build.

[Bug bootstrap/107042] GCC build error after today's change

2022-09-26 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107042 --- Comment #7 from Jonathan Wakely --- If you get a bootstrap error like this, always try a clean build before reporting a bug.

[Bug bootstrap/107042] GCC build error after today's change

2022-09-26 Thread unlvsur at live dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107042 cqwrteur changed: What|Removed |Added Resolution|--- |INVALID Status|ASSIGNED

[Bug bootstrap/107042] GCC build error after today's change

2022-09-26 Thread marxin at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107042 --- Comment #5 from Martin Liška --- Hm, you have | #define HAVE_AS_COMPRESS_DEBUG 2 which is an invalid value. Please remove the build directory and reconfigure it. Does it help?

[Bug bootstrap/107042] GCC build error after today's change

2022-09-26 Thread unlvsur at live dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107042 --- Comment #4 from cqwrteur --- Created attachment 53629 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=53629=edit cfg

[Bug bootstrap/107042] GCC build error after today's change

2022-09-26 Thread marxin at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107042 --- Comment #3 from Martin Liška --- It must be toplev config.log file, I will need the one under 'gcc' folder, thanks.

[Bug bootstrap/107042] GCC build error after today's change

2022-09-26 Thread unlvsur at live dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107042 --- Comment #2 from cqwrteur --- Created attachment 53628 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=53628=edit config

[Bug bootstrap/107042] GCC build error after today's change

2022-09-26 Thread marxin at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107042 Martin Liška changed: What|Removed |Added Ever confirmed|0 |1 Assignee|unassigned at gcc

[Bug bootstrap/107042] New: GCC build error after today's change

2022-09-26 Thread unlvsur at live dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107042 Bug ID: 107042 Summary: GCC build error after today's change Product: gcc Version: 13.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: bootstrap

[Bug c++/103871] [11/12/13 Regression] co_await causes build error

2022-05-23 Thread blubban at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 Alfred Agrell changed: What|Removed |Added CC||blubban at gmail dot com --- Comment

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-05-01 Thread aldyh at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 Aldy Hernandez changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-05-01 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 --- Comment #11 from CVS Commits --- The trunk branch has been updated by Aldy Hernandez : https://gcc.gnu.org/g:75bbc3da3e5f75f683fa33e309045c582efd20eb commit r13-60-g75bbc3da3e5f75f683fa33e309045c582efd20eb Author: Aldy Hernandez Date:

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-05-01 Thread iains at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 --- Comment #10 from Iain Sandoe --- (In reply to Aldy Hernandez from comment #6) > Created attachment 52910 [details] > untested patch FWIW, patch fixes bootstrap for {powerpc,i686,x86_64}-apple-darwin.

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-05-01 Thread unlvsur at live dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 --- Comment #9 from cqwrteur --- (In reply to Aldy Hernandez from comment #6) > Created attachment 52910 [details] > untested patch when will this patch be applied to the main? I am working on building a new series of canadian toolchains.

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-04-30 Thread iains at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 Iain Sandoe changed: What|Removed |Added CC||zsojka at seznam dot cz --- Comment #8

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-04-30 Thread iains at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 Iain Sandoe changed: What|Removed |Added CC||unlvsur at live dot com --- Comment #7

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-04-29 Thread aldyh at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 --- Comment #6 from Aldy Hernandez --- Created attachment 52910 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52910=edit untested patch

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-04-29 Thread aldyh at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 Aldy Hernandez changed: What|Removed |Added Status|UNCONFIRMED |NEW Assignee|unassigned at

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-04-29 Thread seurer at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 --- Comment #4 from seurer at gcc dot gnu.org --- configure was: configure --enable-languages=c,fortran,c++ --with-cpu=power10 --enable-bootstrap though note it also failed for power9, power8, and power7 and on both LE and BE.

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-04-29 Thread seurer at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 --- Comment #3 from seurer at gcc dot gnu.org --- Created attachment 52909 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52909=edit atan.i

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-04-29 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment

[Bug tree-optimization/105432] [13 regression] bootstrap build error in mpfr in stage2

2022-04-29 Thread seurer at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 seurer at gcc dot gnu.org changed: What|Removed |Added CC||aldyh at gcc dot gnu.org,

[Bug tree-optimization/105432] New: [12 regression] bootstrap build error in mpc in stage2

2022-04-29 Thread seurer at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105432 Bug ID: 105432 Summary: [12 regression] bootstrap build error in mpc in stage2 Product: gcc Version: 12.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug c++/103871] [11/12 Regression] co_await causes build error

2022-04-13 Thread iains at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 --- Comment #14 from Iain Sandoe --- (In reply to Iain Sandoe from comment #13) > (In reply to Jason Merrill from comment #12) > > Should we revert the backport for 11.3? > > I think that will regress other tests (but admit I did not have time

[Bug c++/103871] [11/12 Regression] co_await causes build error

2022-04-13 Thread iains at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 --- Comment #13 from Iain Sandoe --- (In reply to Jason Merrill from comment #12) > Should we revert the backport for 11.3? I think that will regress other tests (but admit I did not have time to try it).

[Bug c++/103871] [11/12 Regression] co_await causes build error

2022-04-13 Thread jason at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 --- Comment #12 from Jason Merrill --- Should we revert the backport for 11.3?

[Bug c++/103871] [11/12 Regression] co_await causes build error

2022-04-13 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 Richard Biener changed: What|Removed |Added Target Milestone|11.3|11.4 Priority|P1

[Bug c++/103871] [11/12 Regression] co_await causes build error

2022-04-12 Thread iains at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 --- Comment #10 from Iain Sandoe --- Despite investing some time in this, it seems that I cannot get a patch ready for master / reviewed and back-ported in time (although I am hopeful to get the fix sorted out in time for GCC-12) (I can

[Bug bootstrap/105218] [12 regression] bootstrap build error in mpc in stage3

2022-04-11 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105218 Jakub Jelinek changed: What|Removed |Added Resolution|--- |FIXED Status|ASSIGNED

[Bug bootstrap/105218] [12 regression] bootstrap build error in mpc in stage3

2022-04-11 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105218 --- Comment #5 from CVS Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:1774ab84863202f5db694914b67e3aef8c6dd807 commit r12-8090-g1774ab84863202f5db694914b67e3aef8c6dd807 Author: Jakub Jelinek Date:

[Bug bootstrap/105218] [12 regression] bootstrap build error in mpc in stage3

2022-04-11 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105218 --- Comment #4 from Jakub Jelinek --- Created attachment 52783 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52783=edit gcc12-pr105218.patch Untested fix.

[Bug bootstrap/105218] [12 regression] bootstrap build error in mpc in stage3

2022-04-11 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105218 Jakub Jelinek changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED Ever confirmed|0

[Bug bootstrap/105218] [12 regression] bootstrap build error in mpc in stage3

2022-04-11 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105218 --- Comment #2 from Jakub Jelinek --- Actually, I've managed to reproduce even on x86_64-linux.

[Bug bootstrap/105218] [12 regression] bootstrap build error in mpc in stage3

2022-04-11 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105218 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment

[Bug bootstrap/105218] New: [12 regression] bootstrap build error in mpc in stage3

2022-04-11 Thread seurer at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105218 Bug ID: 105218 Summary: [12 regression] bootstrap build error in mpc in stage3 Product: gcc Version: 12.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug c++/103871] [11/12 Regression] co_await causes build error

2022-04-06 Thread iains at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 --- Comment #9 from Iain Sandoe --- (In reply to Jason Merrill from comment #8) > Any update? I have a fix (for a number of the coroutine issues, including this one) - it needs tidying for posting .. will try to do that over the weekend.

[Bug c++/103871] [11/12 Regression] co_await causes build error

2022-04-06 Thread jason at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 --- Comment #8 from Jason Merrill --- Any update?

[Bug c++/103871] [11/12 Regression] co_await causes build error

2022-03-20 Thread sks_f at mail dot ru via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 Konstantin changed: What|Removed |Added CC||sks_f at mail dot ru --- Comment #7 from

[Bug c++/103871] [11/12 Regression] co_await causes build error

2022-03-02 Thread mpolacek at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 Marek Polacek changed: What|Removed |Added Status|NEW |ASSIGNED

[Bug c++/103871] [11/12 Regression] co_await causes build error

2022-03-02 Thread iains at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 Iain Sandoe changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |iains at gcc dot gnu.org ---

[Bug c++/103871] [11/12 Regression] co_await causes build error

2022-03-02 Thread mpolacek at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103871 Marek Polacek changed: What|Removed |Added CC||mpolacek at gcc dot gnu.org ---

  1   2   3   4   5   6   >