| 34 | return a * b; |
| 35 | } |
| 36 | FL_FAST_MATH_END |
| 37 | |
| 38 | // Test helper: O3 optimized functions (macros are file-scope only on Clang) |
| 39 | FL_OPTIMIZATION_LEVEL_O3_BEGIN |
| 40 | static int o3_sum(int a, int b) { |
| 41 | return a + b; |
| 42 | } |
| 43 | static int o3_loop_sum() { |
| 44 | int sum = 0; |
| 45 | for (int i = 0; i < 10; i++) { |