File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 117
117
$line = $' ;
118
118
# now $& is the match, we want to skip over LTM keywords like
119
119
# mp_int, mp_word, mp_digit
120
- if (!($& eq ' mp_digit' ) && !($& eq ' mp_word' ) && !($& eq ' mp_int' ) && !( $& eq ' mp_min_u32 ' ) ) {
120
+ if (!($& eq ' mp_digit' ) && !($& eq ' mp_word' ) && !($& eq ' mp_int' )) {
121
121
my $a = $& ;
122
122
$a =~ tr / [a-z]/ [A-Z]/ ;
123
123
$a = ' BN_' . $a . ' _C' ;
Original file line number Diff line number Diff line change @@ -96,9 +96,6 @@ typedef uint64_t mp_word;
96
96
/* otherwise the bits per digit is calculated automatically from the size of a mp_digit */
97
97
#ifndef DIGIT_BIT
98
98
# define DIGIT_BIT (((CHAR_BIT * MP_SIZEOF_MP_DIGIT) - 1)) /* bits per digit */
99
- typedef uint_least32_t mp_min_u32 ;
100
- #else
101
- typedef mp_digit mp_min_u32 ;
102
99
#endif
103
100
104
101
#define MP_DIGIT_BIT DIGIT_BIT
You can’t perform that action at this time.
0 commit comments