TI中文支持网
TI专业的中文技术问题搜集分享网站

关于_fltif和__c6xabi_fltif函数的具体使用方法,有示例么?!谢谢

关于_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

赞(0)
未经允许不得转载:TI中文支持网 » 关于_fltif和__c6xabi_fltif函数的具体使用方法,有示例么?!谢谢
分享到: 更多 (0)