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