- Improved build support for s390x and sparc64 in bignum.h

This commit is contained in:
Paul Bakker 2011-11-26 09:23:07 +00:00
parent 5c356d6f8f
commit 4463740fe4
2 changed files with 4 additions and 1 deletions

View file

@ -86,7 +86,9 @@ typedef unsigned long t_udbl;
#else
#if defined(__amd64__) || defined(__x86_64__) || \
defined(__ppc64__) || defined(__powerpc64__) || \
defined(__ia64__) || defined(__alpha__)
defined(__ia64__) || defined(__alpha__) || \
(defined(__sparc__) && defined(__arch64__)) || \
defined(__s390x__)
typedef unsigned int t_udbl __attribute__((mode(TI)));
#else
#if defined(POLARSSL_HAVE_LONGLONG)