Tools: removed fast_atan

This commit is contained in:
Andrew Tridgell 2015-05-05 13:57:10 +10:00
parent 189a8fd007
commit 75229ebf6c
1 changed files with 0 additions and 1 deletions

View File

@ -128,7 +128,6 @@ static void show_timings(void)
TIMEIT("acos()", v_out = acosf(v_f * 0.2), 20);
TIMEIT("asin()", v_out = asinf(v_f * 0.2), 20);
TIMEIT("atan2()", v_out = atan2f(v_f * 0.2, v_f * 0.3), 20);
TIMEIT("fast_atan2()", v_out = fast_atan2(v_f * 0.2, v_f * 0.3), 20);
TIMEIT("sqrt()",v_out = sqrtf(v_f), 20);
TIMEIT("iadd8", v_out_8 += v_8, 100);