diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-12-05 11:29:40 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-12-05 11:30:26 +0100 |
commit | 7a88e3b0fcebf3c39a88158236c1382538478008 (patch) | |
tree | cf6d1c79c7c9f2653d414cf2c0f1f254a8e1f5bb /depends/patches/gmp/arm_gmp_build_fix.patch | |
parent | 7d42644dda33c1e1ab0c63730517f4005742f0e1 (diff) | |
parent | 0dcfb91d5603f2212536d78260a3f2b16cb05a34 (diff) |
Merge pull request #5425
87bddb7 Squashed 'src/secp256k1/' changes from ad2028f..b0210a9 (Pieter Wuille)
ffe3291 Remove gmp dependency and doc mentions (Pieter Wuille)
Diffstat (limited to 'depends/patches/gmp/arm_gmp_build_fix.patch')
-rw-r--r-- | depends/patches/gmp/arm_gmp_build_fix.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/depends/patches/gmp/arm_gmp_build_fix.patch b/depends/patches/gmp/arm_gmp_build_fix.patch deleted file mode 100644 index 666cf58cf6..0000000000 --- a/depends/patches/gmp/arm_gmp_build_fix.patch +++ /dev/null @@ -1,21 +0,0 @@ - -# HG changeset patch -# User Torbjorn Granlund <tege@gmplib.org> -# Date 1396602422 -7200 -# Node ID 676e2d0f0e4dd301a7066079d2c9326c25c34a40 -# Parent 0194a75b56b21a9196626430af86c5bd9110c42d -Conditionalise ARM asm on !__thumb__. - -diff -r 0194a75b56b2 -r 676e2d0f0e4d mpn/generic/div_qr_1n_pi1.c ---- a/mpn/generic/div_qr_1n_pi1.c Thu Apr 03 23:58:51 2014 +0200 -+++ b/mpn/generic/div_qr_1n_pi1.c Fri Apr 04 11:07:02 2014 +0200 -@@ -130,7 +130,7 @@ - "%2" ((UDItype)(a0)), "r" ((UDItype)(b0)) __CLOBBER_CC) - #endif - --#if defined (__arm__) && W_TYPE_SIZE == 32 -+#if defined (__arm__) && !defined (__thumb__) && W_TYPE_SIZE == 32 - #define add_mssaaaa(m, sh, sl, ah, al, bh, bl) \ - __asm__ ( "adds %2, %5, %6\n\t" \ - "adcs %1, %3, %4\n\t" \ - |