Division by zero exception flag not set in STM32H7 FPU
I'm digging into the FPU of a STM32H743 (Nucleo board, Keil IDE).I've checked that the FPU is enabled in register CPACR.I've compiled the following dumb code:volatile double test = 0; test = 1.0 / test;If I look at the assembly I've got:VDIV.F64 d0...