comparison test/test.c @ 46:31cee67540b5

f32/f64: add floor, ceil, round, and trunc operations we also need saturated add sub mul etc
author Paper <paper@tflc.us>
date Sat, 09 Aug 2025 15:55:59 -0400
parents 7955bed1d169
children
comparison
equal deleted inserted replaced
45:7955bed1d169 46:31cee67540b5
150 ret |= test_align(); 150 ret |= test_align();
151 ret |= test_arith(); 151 ret |= test_arith();
152 ret |= test_compare(); 152 ret |= test_compare();
153 ret |= test_shift(); 153 ret |= test_shift();
154 154
155 #if 0
155 test_benchmark(); 156 test_benchmark();
157 #endif
156 158
157 return ret; 159 return ret;
158 } 160 }