2 A crash in iCode generation for parameters to calls to functions without prototypes.
7 // Function declarations without prototypes no longer exist in C2X.
9 #pragma disable_warning 283
11 // Test derived from code by SF user "Under4Mhz" in 2022.
15 #if 0 // Bug not yet fixed
18 void ImageStatusImage( uint8_t health
) {
19 uint8_t frame
= fast_rand( health
) % 4;
24 ASSERT ( fast_rand ( 1 ) == 2 );
27 uint16_t fast_rand( int x
) {
34 #if 0 // Bug not yet fixed
35 ASSERT ( fast_rand ( 1 ) == 2 );