From 73b9476d8c5eedea752d4bbd5dcbdc4a6c3b532d Mon Sep 17 00:00:00 2001 From: Martin Stransky Date: Thu, 3 Mar 2016 13:40:14 +0100 Subject: Run-time jit fix - mozbz#1253216 --- mozilla-1253216.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 mozilla-1253216.patch (limited to 'mozilla-1253216.patch') diff --git a/mozilla-1253216.patch b/mozilla-1253216.patch new file mode 100644 index 0000000..6de0720 --- /dev/null +++ b/mozilla-1253216.patch @@ -0,0 +1,12 @@ +diff -up firefox-45.0/firefox-45.0/js/src/jit/AtomicOperations.h.old firefox-45.0/firefox-45.0/js/src/jit/AtomicOperations.h +--- firefox-45.0/firefox-45.0/js/src/jit/AtomicOperations.h.old 2016-03-01 09:45:01.000000000 +0100 ++++ firefox-45.0/firefox-45.0/js/src/jit/AtomicOperations.h 2016-03-03 13:13:34.915015391 +0100 +@@ -305,7 +305,7 @@ AtomicOperations::isLockfree(int32_t siz + || defined(__ppc__) || defined(__PPC__) + # include "jit/none/AtomicOperations-ppc.h" + #elif defined(JS_CODEGEN_NONE) +-# include "jit/none/AtomicOperations-none.h" ++# include "jit/none/AtomicOperations-ppc.h" + #elif defined(JS_CODEGEN_X86) || defined(JS_CODEGEN_X64) + # include "jit/x86-shared/AtomicOperations-x86-shared.h" + #else -- cgit