dep.pl: add new type mp_min_u32
This commit is contained in:
parent
7ede0852da
commit
8ed6043209
2
dep.pl
2
dep.pl
@ -68,7 +68,7 @@ foreach my $filename (glob "bn*.c") {
|
|||||||
$line = $';
|
$line = $';
|
||||||
# now $& is the match, we want to skip over LTM keywords like
|
# now $& is the match, we want to skip over LTM keywords like
|
||||||
# mp_int, mp_word, mp_digit
|
# 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 = $&;
|
my $a = $&;
|
||||||
$a =~ tr/[a-z]/[A-Z]/;
|
$a =~ tr/[a-z]/[A-Z]/;
|
||||||
$a = "BN_" . $a . "_C";
|
$a = "BN_" . $a . "_C";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user