summaryrefslogtreecommitdiff
path: root/mozilla-1321521-2.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2017-05-10 14:14:02 +0200
committerMartin Stransky <stransky@redhat.com>2017-05-10 14:14:02 +0200
commit24b809ebca8baa07426f7983d96f7d88b7547144 (patch)
tree3cf38ea05c4a4884c4819990ca8eabf2b6a2ca02 /mozilla-1321521-2.patch
parentenable arm builds (diff)
downloadlibrewolf-fedora-ff-24b809ebca8baa07426f7983d96f7d88b7547144.tar.gz
librewolf-fedora-ff-24b809ebca8baa07426f7983d96f7d88b7547144.tar.bz2
librewolf-fedora-ff-24b809ebca8baa07426f7983d96f7d88b7547144.zip
Added arm patches from mozbz#1321521
Diffstat (limited to 'mozilla-1321521-2.patch')
-rw-r--r--mozilla-1321521-2.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/mozilla-1321521-2.patch b/mozilla-1321521-2.patch
new file mode 100644
index 0000000..8aec21e
--- /dev/null
+++ b/mozilla-1321521-2.patch
@@ -0,0 +1,37 @@
+
+# HG changeset patch
+# User Lars T Hansen <lhansen@mozilla.com>
+# Date 1485506824 -3600
+# Node ID 97c45b13a1654bce114ace1de67c5aacb12a75fd
+# Parent 0fc3d0ffe71e44819c6ffaf3a41b781e50504576
+Bug 1321521 - fix include order. r=me
+
+diff --git a/js/src/jit/none/Architecture-none.h b/js/src/jit/none/Architecture-none.h
+--- a/js/src/jit/none/Architecture-none.h
++++ b/js/src/jit/none/Architecture-none.h
+@@ -2,22 +2,22 @@
+ * vim: set ts=8 sts=4 et sw=4 tw=99:
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+ #ifndef jit_none_Architecture_none_h
+ #define jit_none_Architecture_none_h
+
+-#include "jit/shared/Architecture-shared.h"
+-
+ // JitSpewer.h is included through MacroAssembler implementations for other
+ // platforms, so include it here to avoid inadvertent build bustage.
+ #include "jit/JitSpewer.h"
+
++#include "jit/shared/Architecture-shared.h"
++
+ namespace js {
+ namespace jit {
+
+ static const bool SupportsSimd = false;
+ static const uint32_t SimdMemoryAlignment = 4; // Make it 4 to avoid a bunch of div-by-zero warnings
+ static const uint32_t WasmStackAlignment = 8;
+
+ // Does this architecture support SIMD conversions between Uint32x4 and Float32x4?
+
bgstack15