aboutsummaryrefslogtreecommitdiffstats
path: root/community/php7/fix-asm-constraints-in-aarch64-multiply-macro.patch
diff options
context:
space:
mode:
authorAndy Postnikov <apostnikov@gmail.com>2018-01-20 22:05:25 +0200
committerLeonardo Arena <rnalrd@alpinelinux.org>2018-02-06 07:41:35 +0000
commitf72329a49b77be5d910dd4f7e923ea3d0fda939b (patch)
tree6396f7188895f2eb8610bbbaff903bb14bba1baa /community/php7/fix-asm-constraints-in-aarch64-multiply-macro.patch
parent66a2eadbb3975da034843f86d43c2120ec855aeb (diff)
downloadaports-f72329a49b77be5d910dd4f7e923ea3d0fda939b.tar.bz2
aports-f72329a49b77be5d910dd4f7e923ea3d0fda939b.tar.xz
community/php7: security upgrade to 7.1.13
- CVE-2018-5711 - CVE-2018-5712 Ref http://php.net/archive/2018.php#id2018-01-04-3
Diffstat (limited to 'community/php7/fix-asm-constraints-in-aarch64-multiply-macro.patch')
-rw-r--r--community/php7/fix-asm-constraints-in-aarch64-multiply-macro.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/community/php7/fix-asm-constraints-in-aarch64-multiply-macro.patch b/community/php7/fix-asm-constraints-in-aarch64-multiply-macro.patch
deleted file mode 100644
index 7a210b6e11..0000000000
--- a/community/php7/fix-asm-constraints-in-aarch64-multiply-macro.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 6cbb9f4c247c5361b8c165fbb40b4118d5d7c0e5 Mon Sep 17 00:00:00 2001
-From: Andreas Schwab <schwab@linux-m68k.org>
-Date: Mon, 25 Apr 2016 11:59:14 +0200
-Subject: [PATCH] Fix asm constraints in aarch64 multiply macro
-
-All operands must be register operands and the output operands are early
-clobbered.
-
-See https://bugs.php.net/bug.php?id=70015
----
- Zend/zend_multiply.h | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/Zend/zend_multiply.h b/Zend/zend_multiply.h
-index dfd21f7..651dd43 100644
---- a/Zend/zend_multiply.h
-+++ b/Zend/zend_multiply.h
-@@ -53,8 +53,8 @@
- __asm__("mul %0, %2, %3\n" \
- "smulh %1, %2, %3\n" \
- "sub %1, %1, %0, asr #63\n" \
-- : "=X"(__tmpvar), "=X"(usedval) \
-- : "X"(a), "X"(b)); \
-+ : "=&r"(__tmpvar), "=&r"(usedval) \
-+ : "r"(a), "r"(b)); \
- if (usedval) (dval) = (double) (a) * (double) (b); \
- else (lval) = __tmpvar; \
- } while (0)
---
-2.8.0
-