File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2245,7 +2245,7 @@ static void test_scalar_check_overflow(void) {
22452245 /* Random inputs */
22462246 for (i = 0 ; i < 256 ; i ++ ) {
22472247 int expected_overflow ;
2248-
2248+
22492249 /* Generate random 32 bytes using a simple Linear Congruential Generator */
22502250 for (j = 0 ; j < 32 ; j ++ ) {
22512251 seed = seed * 1664525 + 1013904223 ;
@@ -2254,7 +2254,7 @@ static void test_scalar_check_overflow(void) {
22542254
22552255 /* Force top bits to be 0xFF sometimes to ensure we hit overflows */
22562256 if (i % 2 == 0 ) {
2257- memset (b32 , 0xFF , 16 );
2257+ memset (b32 , 0xFF , 16 );
22582258 }
22592259
22602260 /* Check if b32 >= N */
@@ -2264,6 +2264,7 @@ static void test_scalar_check_overflow(void) {
22642264 CHECK (overflow == expected_overflow );
22652265 }
22662266}
2267+
22672268static void run_scalar_tests (void ) {
22682269 int i ;
22692270 test_scalar_check_overflow ();
You can’t perform that action at this time.
0 commit comments