Commit 8ed6043209ec9bbfc45125c177405c3b27c0a5ec

Steffen Jaeckel 2014-09-28T13:33:35

dep.pl: add new type mp_min_u32

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/dep.pl b/dep.pl
index c39e27e..0a5d19a 100644
--- a/dep.pl
+++ b/dep.pl
@@ -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";