mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-03-24 05:01:11 +01:00
Usually, compilers are clever enough to pick the best inlining strategy, but in this instance, it appears that compiling on ARMC6, the compilers inlines xxx_prf_yyy() and xxx_calc_finished_yyy() even though it really shouldn't. Forbid inlining through the use of __attribute__((noinline)).