* grub-core/lib/libgcrypt/mpi/longlong.h: Use C version with mips

clang.
This commit is contained in:
Vladimir Serbinenko 2013-11-23 00:36:13 +01:00
parent 4a23e2fe29
commit a92b5cb8d8
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/lib/libgcrypt/mpi/longlong.h: Use C version with mips
clang.
2013-11-22 Vladimir Serbinenko <phcoder@gmail.com>
Add *-xen to the list of grub-install-common platforms.

View File

@ -749,7 +749,7 @@ 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; \