summaryrefslogtreecommitdiff
path: root/networking/tls.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-15 17:13:08 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-15 17:13:08 +0200
commit79376ecdbd2fff83795dfcbddf5a0cc5eed3adf9 (patch)
tree382eab8a080862c6c51a83d810061e26ef2c1908 /networking/tls.h
parent367a55c7d7e31a8162e795edc343277f8eb35f38 (diff)
downloadbusybox-w32-79376ecdbd2fff83795dfcbddf5a0cc5eed3adf9.tar.gz
busybox-w32-79376ecdbd2fff83795dfcbddf5a0cc5eed3adf9.tar.bz2
busybox-w32-79376ecdbd2fff83795dfcbddf5a0cc5eed3adf9.zip
tls: fix pstm asm constraint problem
function old new delta pstm_sqr_comba 551 475 -76 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tls.h')
-rw-r--r--networking/tls.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/networking/tls.h b/networking/tls.h
index b80cc6448..d487f3810 100644
--- a/networking/tls.h
+++ b/networking/tls.h
@@ -26,10 +26,8 @@
26#undef USE_SEED 26#undef USE_SEED
27/* pstm: multiprecision numbers */ 27/* pstm: multiprecision numbers */
28#undef DISABLE_PSTM 28#undef DISABLE_PSTM
29#if defined(__GNUC__) && defined(__i386__) && ENABLE_STATIC 29#if defined(__GNUC__) && defined(__i386__)
30 /* PSTM_X86 works correctly. +25 bytes. */ 30 /* PSTM_X86 works correctly. +25 bytes. */
31 /* Only enabled on static build since tls_pstm_mul_comba.c::MULADD
32 * and tls_pstm_sqr_comba.c::SQRADD2 need too many registers, choke when ebx is not available */
33# define PSTM_32BIT 31# define PSTM_32BIT
34# define PSTM_X86 32# define PSTM_X86
35#endif 33#endif