diff libtommath/dep.pl @ 1436:60fc6476e044

Update to libtommath v1.0
author Matt Johnston <matt@ucc.asn.au>
date Sat, 24 Jun 2017 22:37:14 +0800
parents eed26cff980b
children 8bba51a55704
line wrap: on
line diff
--- a/libtommath/dep.pl	Sat Jun 24 17:50:50 2017 +0800
+++ b/libtommath/dep.pl	Sat Jun 24 22:37:14 2017 +0800
@@ -68,7 +68,7 @@
           $line = $';
           # now $& is the match, we want to skip over LTM keywords like
           # mp_int, mp_word, mp_digit
-          if (!($& eq "mp_digit") && !($& eq "mp_word") && !($& eq "mp_int")) {
+          if (!($& eq "mp_digit") && !($& eq "mp_word") && !($& eq "mp_int") && !($& eq "mp_min_u32")) {
              my $a = $&;
              $a =~ tr/[a-z]/[A-Z]/;
              $a = "BN_" . $a . "_C";