- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406

* includes change to adjust gnats idea of the target, fixing
    the build of gprbuild.  [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
  in 0ad on i586.  [bsc#1197065]

OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gcc11?expand=0&rev=385
This commit is contained in:
Richard Biener 2022-03-16 15:18:58 +00:00 committed by Git OBS Bridge
parent 8de3e7910e
commit 80c93343f2
60 changed files with 392 additions and 32 deletions

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -110,7 +110,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -136,6 +136,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -327,6 +328,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -110,7 +110,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -136,6 +136,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -327,6 +328,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -110,7 +110,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -136,6 +136,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -327,6 +328,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -110,7 +110,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -136,6 +136,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -327,6 +328,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -326,6 +327,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0eba34c9161944fe52b565758606a142f522de43d64b35a3419b34e15d4f1c0b
size 80432008

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5bad17fdc2af53ddd140e0e2a873c948436c35b77bb1de1761f31c421d64ab44
size 80276788

View File

@ -190,7 +190,7 @@
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 1 Release: 1
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -364,6 +364,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -1195,6 +1196,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

50
gcc11-pr104931.patch Normal file
View File

@ -0,0 +1,50 @@
From 841a5f32add8d0c9fd33454e89b67b8fa3ded0c3 Mon Sep 17 00:00:00 2001
From: Richard Biener <rguenther@suse.de>
Date: Wed, 16 Mar 2022 14:53:06 +0100
Subject: [PATCH] tree-optimization/104931 - mitigate niter analysis issue
To: gcc-patches@gcc.gnu.org
The following backports a pointer associating pattern from trunk
that mitigates an issue with number_of_iterations_lt_to_ne in
which context we fail to fold a comparison but succeed in folding
a related subtraction. In the failure mode this results in
a loop wrongly assumed looping with a bogus number of iterations,
resulting in crashing of the premake application on start.
With the backported simplification we are able to fold the
comparison and correctly compute the loop as not iterating.
I have failed to create a standalone testcase. I belive part
of the issue is still latent but I have failed to nail down
the issue exactly. Still I believe the backporting of the
mitigation patch is the most sensible and safe thing at this
point.
2022-03-16 Richard Biener <rguenther@suse.de>
PR tree-optimization/104931
* match.pd ((ptr) (x p+ y) p+ z -> (ptr) (x p+ (y + z))): New GENERIC
simplification.
---
gcc/match.pd | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gcc/match.pd b/gcc/match.pd
index 05a08d0f96a..a005dcd42bd 100644
--- a/gcc/match.pd
+++ b/gcc/match.pd
@@ -1997,6 +1997,11 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
(simplify
(pointer_plus (pointer_plus:s @0 @1) @3)
(pointer_plus @0 (plus @1 @3)))
+#if GENERIC
+(simplify
+ (pointer_plus (convert:s (pointer_plus:s @0 @1)) @3)
+ (convert:type (pointer_plus @0 (plus @1 @3))))
+#endif
/* Pattern match
tem1 = (long) ptr1;
--
2.34.1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -207,7 +207,7 @@
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -380,6 +380,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -517,6 +518,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Mar 16 15:10:15 UTC 2022 - Richard Biener <rguenther@suse.com>
- Update to gcc-11 branch head (6a1150d1524aeda3381b21717), git1406
* includes change to adjust gnats idea of the target, fixing
the build of gprbuild. [bsc#1196861]
- Add gcc11-pr104931.patch to fix miscompile of embedded premake
in 0ad on i586. [bsc#1197065]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com> Mon Mar 7 22:43:44 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -186,7 +186,7 @@
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/ URL: https://gcc.gnu.org/
Version: 11.2.1+git1173 Version: 11.2.1+git1406
Release: 0 Release: 0
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
@ -359,6 +359,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc11-pr104931.patch
# A set of patches from the RH srpm # A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch Patch51: gcc41-ppc32-retaddr.patch
Patch52: gcc10-foffload-default.patch Patch52: gcc10-foffload-default.patch
@ -2000,6 +2001,7 @@ cd ..
%patch19 -p1 %patch19 -p1
%endif %endif
%patch20 -p1 %patch20 -p1
%patch21 -p1
%patch51 %patch51
%patch52 -p1 %patch52 -p1
%patch60 -p1 %patch60 -p1