[git] GCRYPT - branch, master, updated. libgcrypt-1.5.0-406-g3b1cc9e
by Vladimir 'Ï-coder/phcoder' Serbinenko
cvs at cvs.gnupg.org
Fri Nov 29 12:07:36 CET 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU crypto library".
The branch, master has been updated
via 3b1cc9e6c357574f54160298d731c18f3d717b6c (commit)
via 1ecbd0bca31d462719a2a6590c1d03244e76ef89 (commit)
from 3ef21e7e1b8003db9792155044db95f9d9ced184 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3b1cc9e6c357574f54160298d731c18f3d717b6c
Author: Vladimir 'φ-coder/phcoder' Serbinenko <phcoder at gmail.com>
Date: Fri Nov 29 08:56:43 2013 +0100
Fix armv3 compile error
* mpi/longlong.h [__arm__ && __ARM_ARCH < 4] (umul_ppmm): Use
__AND_CLOBBER_CC instead of __CLOBBER_CC.
--
ARMv3 code uses __CLOBBER_CC at the end of clobber list while it should have
been __AND_CLOBBER_CC.
[jk: add changelog, rebase on libgcrypt repository]
Signed-off-by: Jussi Kivilinna <jussi.kivilinna at iki.fi>
diff --git a/mpi/longlong.h b/mpi/longlong.h
index 90b0fd5..146830b 100644
--- a/mpi/longlong.h
+++ b/mpi/longlong.h
@@ -247,7 +247,7 @@ extern UDItype __udiv_qrnnd ();
"=r" ((xl)) \
: "r" ((USItype)(a)), \
"r" ((USItype)(b)) \
- : "r0", "r1", "r2" __CLOBBER_CC)
+ : "r0", "r1", "r2" __AND_CLOBBER_CC)
#else /* __ARM_ARCH >= 4 */
#define umul_ppmm(xh, xl, a, b) \
__asm__ ("@ Inlined umul_ppmm\n" \
commit 1ecbd0bca31d462719a2a6590c1d03244e76ef89
Author: Vladimir 'φ-coder/phcoder' Serbinenko <phcoder at gmail.com>
Date: Fri Nov 22 05:24:44 2013 +0100
longlong.h on mips with clang
* mpi/longlong.h [__mips__]: Use C-language version with clang.
--
clang doesn't recognise =l / =h assembly operand specifiers but apparently
handles C version well.
[jk: add changelog, rebase on libgcrypt repository, reformat changed line so it
does not go over 80 characters]
Signed-off-by: Jussi Kivilinna <jussi.kivilinna at iki.fi>
diff --git a/mpi/longlong.h b/mpi/longlong.h
index 8c8260e..90b0fd5 100644
--- a/mpi/longlong.h
+++ b/mpi/longlong.h
@@ -749,7 +749,8 @@ extern USItype __udiv_qrnnd ();
************** MIPS *****************
***************************************/
#if defined (__mips__) && W_TYPE_SIZE == 32
-#if (__GNUC__ >= 5) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
+#if defined (__clang__) || (__GNUC__ >= 5) || (__GNUC__ == 4 && \
+ __GNUC_MINOR__ >= 4)
#define umul_ppmm(w1, w0, u, v) \
do { \
UDItype _r; \
-----------------------------------------------------------------------
Summary of changes:
mpi/longlong.h | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive
--
The GNU crypto library
http://git.gnupg.org
More information about the Gnupg-commits
mailing list