dep.pl: add new type mp_min_u32

This commit is contained in:
Steffen Jaeckel 2014-09-28 13:33:35 +02:00
parent 7ede0852da
commit 8ed6043209

2
dep.pl
View File

@ -68,7 +68,7 @@ foreach my $filename (glob "bn*.c") {
$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";