msuchy / rpms / firefox

Forked from rpms/firefox 6 years ago
Clone
24b809e
24b809e
# HG changeset patch
24b809e
# User Lars T Hansen <lhansen@mozilla.com>
24b809e
# Date 1485506824 -3600
24b809e
# Node ID 97c45b13a1654bce114ace1de67c5aacb12a75fd
24b809e
# Parent  0fc3d0ffe71e44819c6ffaf3a41b781e50504576
24b809e
Bug 1321521 - fix include order.  r=me
24b809e
24b809e
diff --git a/js/src/jit/none/Architecture-none.h b/js/src/jit/none/Architecture-none.h
24b809e
--- a/js/src/jit/none/Architecture-none.h
24b809e
+++ b/js/src/jit/none/Architecture-none.h
24b809e
@@ -2,22 +2,22 @@
24b809e
  * vim: set ts=8 sts=4 et sw=4 tw=99:
24b809e
  * This Source Code Form is subject to the terms of the Mozilla Public
24b809e
  * License, v. 2.0. If a copy of the MPL was not distributed with this
24b809e
  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
24b809e
 
24b809e
 #ifndef jit_none_Architecture_none_h
24b809e
 #define jit_none_Architecture_none_h
24b809e
 
24b809e
-#include "jit/shared/Architecture-shared.h"
24b809e
-
24b809e
 // JitSpewer.h is included through MacroAssembler implementations for other
24b809e
 // platforms, so include it here to avoid inadvertent build bustage.
24b809e
 #include "jit/JitSpewer.h"
24b809e
 
24b809e
+#include "jit/shared/Architecture-shared.h"
24b809e
+
24b809e
 namespace js {
24b809e
 namespace jit {
24b809e
 
24b809e
 static const bool SupportsSimd = false;
24b809e
 static const uint32_t SimdMemoryAlignment = 4; // Make it 4 to avoid a bunch of div-by-zero warnings
24b809e
 static const uint32_t WasmStackAlignment = 8;
24b809e
 
24b809e
 // Does this architecture support SIMD conversions between Uint32x4 and Float32x4?
24b809e