mbed-os/libraries/tests/benchmarks/float_math/main.cpp

9 lines
106 B
C++

#include "mbed.h"
volatile float w, x, y, z;
int main() {
while (1) {
z = x * y / w;
}
}