- 论坛徽章:
- 3
|
什么编译器?
是gcc吗?
如果是gcc的话,我不知道最新的gcc是否支持硬件级的128bit
这是man gcc的结果
-msoft-quad-float
Generate output containing library calls for quad-word (long double) floating point instructions. The functions called are those specified in
the SPARC ABI. This is the default.
As of this writing, there are no SPARC implementations that have hardware support for the quad-word floating point instructions. They all
invoke a trap handler for one of these instructions, and then the trap handler emulates the effect of the instruction. Because of the trap
handler overhead, this is much slower than calling the ABI library routines. Thus the -msoft-quad-float option is the default.
2006-6-16 |
|