summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2017-08-08 14:38:08 +0200
committerMartin Stransky <stransky@redhat.com>2017-08-08 14:38:08 +0200
commit34de61f86dfa9e02d123dc82ce7572cd6982c897 (patch)
treec4bf63124429cc9164d6827fe39cfd2433abb44e
parentMerge branch 'master' into f26 (diff)
parentAdded missing patch (diff)
downloadlibrewolf-fedora-ff-34de61f86dfa9e02d123dc82ce7572cd6982c897.tar.gz
librewolf-fedora-ff-34de61f86dfa9e02d123dc82ce7572cd6982c897.tar.bz2
librewolf-fedora-ff-34de61f86dfa9e02d123dc82ce7572cd6982c897.zip
Merge branch 'master' into f26
-rw-r--r--build-ppc-jit.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/build-ppc-jit.patch b/build-ppc-jit.patch
new file mode 100644
index 0000000..9cf7a86
--- /dev/null
+++ b/build-ppc-jit.patch
@@ -0,0 +1,12 @@
+diff -up firefox-55.0/js/src/jit/MIR.h.old firefox-55.0/js/src/jit/MIR.h
+--- firefox-55.0/js/src/jit/MIR.h.old 2017-08-08 14:04:44.528460099 +0200
++++ firefox-55.0/js/src/jit/MIR.h 2017-08-08 14:05:11.045364831 +0200
+@@ -12434,7 +12434,7 @@ class MNearbyInt
+ TRIVIAL_NEW_WRAPPERS
+
+ static bool HasAssemblerSupport(RoundingMode mode) {
+- return Assembler::HasRoundInstruction(mode);
++ return false;
+ }
+
+ RoundingMode roundingMode() const { return roundingMode_; }
bgstack15