summaryrefslogtreecommitdiff
path: root/build-arm-wasm.patch
diff options
context:
space:
mode:
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