Hello If I declare a function __attribute__((noipa, optimize (“-O0”))), I was kinda expecting that it would not be optimized at all ..
however it does not seem to prevent functions called by it from being inlined into its body .. am I missing some additional constraint that should be added? (I explicitly want to avoid called functions being inlined into the body, but cannot mark _those_ functions as noinline) thanks Iain