summaryrefslogtreecommitdiff
path: root/newmoon/debian/patches/fix-armhf-FTBFS.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-01-26 20:03:39 -0500
committerB. Stack <bgstack15@gmail.com>2024-01-26 20:03:39 -0500
commit9db68075ad14c28c43e15bd586fde357bd4f83b4 (patch)
treef0923a54424c2c3374fed959212e84a87de23a3c /newmoon/debian/patches/fix-armhf-FTBFS.patch
parentwaterfox obs service file (diff)
downloadstackrpms-9db68075ad14c28c43e15bd586fde357bd4f83b4.tar.gz
stackrpms-9db68075ad14c28c43e15bd586fde357bd4f83b4.tar.bz2
stackrpms-9db68075ad14c28c43e15bd586fde357bd4f83b4.zip
nm 32.5.2 rc1
Diffstat (limited to 'newmoon/debian/patches/fix-armhf-FTBFS.patch')
-rw-r--r--newmoon/debian/patches/fix-armhf-FTBFS.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/newmoon/debian/patches/fix-armhf-FTBFS.patch b/newmoon/debian/patches/fix-armhf-FTBFS.patch
new file mode 100644
index 0000000..e15be32
--- /dev/null
+++ b/newmoon/debian/patches/fix-armhf-FTBFS.patch
@@ -0,0 +1,20 @@
+--- palemoon-32.4.1.orig/platform/js/src/jit/arm/MacroAssembler-arm.cpp
++++ palemoon-32.4.1/platform/js/src/jit/arm/MacroAssembler-arm.cpp
+@@ -3013,7 +3013,7 @@ MacroAssemblerARMCompat::testInt32(Condi
+ return cond;
+ }
+
+-+Assembler::Condition
++Assembler::Condition
+ MacroAssemblerARMCompat::testBigInt(Condition cond,const BaseIndex& src)
+ {
+ MOZ_ASSERT(cond == Equal || cond == NotEqual);
+@@ -3766,7 +3766,7 @@ MacroAssemblerARMCompat::testStringTruth
+ return truthy ? Assembler::NotEqual : Assembler::Equal;
+ }
+
+-+Assembler::Condition
++Assembler::Condition
+ MacroAssemblerARMCompat::testBigIntTruthy(bool truthy, const ValueOperand& value)
+ {
+ Register bi = value.payloadReg();
bgstack15