关于_fltif和__c6xabi_fltif函数的具体使用方法,有示例么?!谢谢
这两个函数是将整型数据转换为float32的。
Shine:
这个不用添加到自己的代码里,如果需要转换的话,编译器会自动去调用_fltif这个函数。
The compiler automatically adds these routines when appropriate; they are not intended to be called directly by your programs.如
int y = 2;
float z;
z = (float)y;
Liu Chunjing:
回复 Shine:
需要在编译器里面进行特殊的设置么?比如加上 -xxx等选择要求等。还是说,不需要任何特殊设置,编译器就能根据需要的ABI或EABI模式自动调用_fltif或__c6xabi_fltif