summaryrefslogtreecommitdiff
path: root/build-arm-wasm.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2022-02-08 12:42:36 +0100
committerMartin Stransky <stransky@redhat.com>2022-02-08 12:42:36 +0100
commit16e6b6b266d702b31b982c136a365f5f92c9cc1b (patch)
treed24508c37db4d12e4232ccbeb22ba4ee166bf6cf /build-arm-wasm.patch
parentUpdated to 93.0.3 (diff)
downloadlibrewolf-fedora-ff-16e6b6b266d702b31b982c136a365f5f92c9cc1b.tar.gz
librewolf-fedora-ff-16e6b6b266d702b31b982c136a365f5f92c9cc1b.tar.bz2
librewolf-fedora-ff-16e6b6b266d702b31b982c136a365f5f92c9cc1b.zip
-m
Diffstat (limited to 'build-arm-wasm.patch')
-rw-r--r--build-arm-wasm.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/build-arm-wasm.patch b/build-arm-wasm.patch
deleted file mode 100644
index bd841ab..0000000
--- a/build-arm-wasm.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -up firefox-72.0.2/js/src/wasm/WasmSignalHandlers.cpp.old firefox-72.0.2/js/src/wasm/WasmSignalHandlers.cpp
---- firefox-72.0.2/js/src/wasm/WasmSignalHandlers.cpp.old 2020-01-17 23:34:41.000000000 +0200
-+++ firefox-72.0.2/js/src/wasm/WasmSignalHandlers.cpp 2020-02-02 08:07:54.670341986 +0200
-@@ -249,7 +249,16 @@ using mozilla::DebugOnly;
- #endif
-
- #ifdef WASM_EMULATE_ARM_UNALIGNED_FP_ACCESS
--# include <sys/user.h>
-+struct user_vfp {
-+ unsigned long long fpregs[32];
-+ unsigned long fpscr;
-+};
-+
-+struct user_vfp_exc {
-+ unsigned long fpexc;
-+ unsigned long fpinst;
-+ unsigned long fpinst2;
-+};
- #endif
-
- #if defined(ANDROID)
bgstack15