我找到了几个代码片段,用于禁用专用代码部分的GCC优化。
使用pragma GCC优化(0)
但我无法为Greenhils编译器找到类似的东西。
没有这样的选择吗?
答案 0 :(得分:3)
从手册:
#pragma ghs Ostring
Turns on optimizations. The optional string may contain any or all of the following letters:
L — Loop optimizations
M — Memory optimizations
S — Small (but Slow) optimizations
#pragma ghs ZO
Disables all optimizations, starting from the next function.