d31eb5
From fd6847c9416f9eebde636e21d794d25d1be8791d Mon Sep 17 00:00:00 2001
d31eb5
From: Mike Hommey <mh@glandium.org>
d31eb5
Date: Sat, 1 Jun 2019 09:06:01 +0900
d31eb5
Subject: [PATCH] Bug 1526653 - Include struct definitions for user_vfp and
d31eb5
 user_vfp_exc.
d31eb5
d31eb5
---
d31eb5
 js/src/wasm/WasmSignalHandlers.cpp | 11 ++++++++++-
d31eb5
 1 file changed, 10 insertions(+), 1 deletion(-)
d31eb5
d31eb5
diff --git a/js/src/wasm/WasmSignalHandlers.cpp b/js/src/wasm/WasmSignalHandlers.cpp
d31eb5
index 636537f8478..383c380f04c 100644
d31eb5
--- a/js/src/wasm/WasmSignalHandlers.cpp
d31eb5
+++ b/js/src/wasm/WasmSignalHandlers.cpp
d31eb5
@@ -248,7 +248,16 @@ using mozilla::DebugOnly;
d31eb5
 #endif
d31eb5
 
d31eb5
 #ifdef WASM_EMULATE_ARM_UNALIGNED_FP_ACCESS
d31eb5
-#  include <sys/user.h>
d31eb5
+struct user_vfp {
d31eb5
+  unsigned long long fpregs[32];
d31eb5
+  unsigned long fpscr;
d31eb5
+};
d31eb5
+
d31eb5
+struct user_vfp_exc {
d31eb5
+  unsigned long fpexc;
d31eb5
+  unsigned long fpinst;
d31eb5
+  unsigned long fpinst2;
d31eb5
+};
d31eb5
 #endif
d31eb5
 
d31eb5
 #if defined(ANDROID)
d31eb5
-- 
d31eb5
2.20.1
d31eb5