summaryrefslogtreecommitdiff
path: root/build-jit-CodeAlignment.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2018-01-24 20:36:58 +0100
committerMartin Stransky <stransky@redhat.com>2018-01-24 20:36:58 +0100
commiteee7f4b182362090ccd88feb8715b548a42bb2ad (patch)
treea40550c184d592a01e89ee51427a68695935d571 /build-jit-CodeAlignment.patch
parentAdded comment (diff)
downloadlibrewolf-fedora-ff-eee7f4b182362090ccd88feb8715b548a42bb2ad.tar.gz
librewolf-fedora-ff-eee7f4b182362090ccd88feb8715b548a42bb2ad.tar.bz2
librewolf-fedora-ff-eee7f4b182362090ccd88feb8715b548a42bb2ad.zip
Added build patch for jit/CodeAlignment failure
Diffstat (limited to 'build-jit-CodeAlignment.patch')
-rw-r--r--build-jit-CodeAlignment.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/build-jit-CodeAlignment.patch b/build-jit-CodeAlignment.patch
new file mode 100644
index 0000000..0f0b10c
--- /dev/null
+++ b/build-jit-CodeAlignment.patch
@@ -0,0 +1,12 @@
+diff -up firefox-58.0/js/src/jit/none/MacroAssembler-none.h.old firefox-58.0/js/src/jit/none/MacroAssembler-none.h
+--- firefox-58.0/js/src/jit/none/MacroAssembler-none.h.old 2018-01-24 20:33:52.569147937 +0100
++++ firefox-58.0/js/src/jit/none/MacroAssembler-none.h 2018-01-24 20:34:06.985088057 +0100
+@@ -88,7 +88,7 @@ static constexpr Register WasmTableCallI
+ static constexpr Register WasmTlsReg { Registers::invalid_reg };
+
+ static constexpr uint32_t ABIStackAlignment = 4;
+-static constexpr uint32_t CodeAlignment = 4;
++static constexpr uint32_t CodeAlignment = 8;
+ static constexpr uint32_t JitStackAlignment = 8;
+ static constexpr uint32_t JitStackValueAlignment = JitStackAlignment / sizeof(Value);
+
bgstack15