greenhills 编译器关闭文件或部分文件的优化
greenhills compiler turn off optimization for file or part of
我找到了几个代码片段,用于为专用代码部分禁用 GCC 优化。
使用 pragma GCC optimize(0)
但是我找不到类似的 Greenhils 编译器。
没有这个选项吗?
来自手册:
#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.
我找到了几个代码片段,用于为专用代码部分禁用 GCC 优化。
使用 pragma GCC optimize(0)
但是我找不到类似的 Greenhils 编译器。
没有这个选项吗?
来自手册:
#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.