Drop an arm-specific patch

We don't build for 32 bit arm any more now that F36 is EOL.
This commit is contained in:
Kalev Lember 2023-05-16 13:15:02 +02:00
parent fc6d180230
commit 7f69d4c3f0
2 changed files with 0 additions and 16 deletions

View File

@ -246,9 +246,6 @@ Patch412: D178251.diff
Patch600: pgo.patch
Patch602: mozilla-1516803.patch
# a patch for compiling with gcc on arm (from debian)
Patch990: work-around-GCC-ICE-on-arm.patch
# Work around broken moz.build file on ppc64le (mozb#1779545, mozb#1775202)
Patch1100: mozilla-1775202.patch
@ -534,7 +531,6 @@ This package contains results of tests executed during build.
%endif
%endif
%patch990 -p1 -b .work-around-GCC-ICE-on-arm
%patch1100 -p1 -b .ppc-mobzuild
%patch1200 -p1 -b .rustflags-commasplit

View File

@ -1,12 +0,0 @@
diff -ur a/gfx/skia/skia/third_party/skcms/src/Transform_inl.h b/gfx/skia/skia/third_party/skcms/src/Transform_inl.h
--- a/gfx/skia/skia/third_party/skcms/src/Transform_inl.h 2022-05-27 08:37:14.642698922 +0300
+++ b/gfx/skia/skia/third_party/skcms/src/Transform_inl.h 2022-05-27 12:23:43.592185545 +0300
@@ -683,7 +683,7 @@
// GCC 7.2.0 hits an internal compiler error with -finline-functions (or -O3)
// when targeting MIPS 64, i386, or s390x, I think attempting to inline clut() into exec_ops().
#if 1 && defined(__GNUC__) && !defined(__clang__) \
- && (defined(__mips64) || defined(__i386) || defined(__s390x__))
+ && (defined(__arm__) || defined(__mips64) || defined(__i386) || defined(__s390x__))
#define MAYBE_NOINLINE __attribute__((noinline))
#else
#define MAYBE_NOINLINE