void function1(void){... // Optimized at O1 (from armcc -O1)}#pragma push#pragma O3void function2(void){... // Optimized at O3}#pragma popvoid function3(void){... // Optimized at O1 (from armcc -O1)}
How do we find an alternative way?
disappointed. that means I cannot set different Onum for a section in a source file?
I want to set different levels of optimization for different sections In a C source file