I\'m trying to compile a specific function with no optimization using clang, in order to prevent certain security-related calls to memset() from be
clang
memset()
As advocated by @dulacc in his comment, __attribute__ ((optnone)) works on clang 9.0.0 on Mac's High Sierra.
__attribute__ ((optnone))