commit | cf0360a14e3306f270870cf68e78eb3cbcbf4fa9 | [log] [tgz] |
---|---|---|
author | Paul Bakker <p.j.bakker@polarssl.org> | Fri Jan 20 10:08:14 2012 +0000 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Fri Jan 20 10:08:14 2012 +0000 |
tree | 2c73b2741c91fe6f7124d88b632dffe1c53b8267 | |
parent | ec1b9842c4fa3be4ff30ca1776c726927403472f [diff] [blame] |
- Fixed compiler error on 64-bit systems not using GCC - t_udbl optimization now also works on platforms that did not define POLARSSL_HAVE_LONGLONG
diff --git a/library/bignum.c b/library/bignum.c index 9dff991..162b3f0 100644 --- a/library/bignum.c +++ b/library/bignum.c
@@ -1101,7 +1101,7 @@ Z.p[i - t - 1] = ~0; else { -#if defined(POLARSSL_HAVE_LONGLONG) +#if defined(t_udbl) t_udbl r; r = (t_udbl) X.p[i] << biL;