This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
运行时支持的程序库里面的浮点数除法函数_divf,__c6xabi_divf,怎么使用,有人跟我说把函数所在的头文件(elfnames.h)加进去就好了,但还是有提醒:函数声明不清晰。是因为软件仿真的原因吗?这些函数到底该怎么用,还有把含有浮点数除法的C程序利用编译器生产汇编,总能看到 CALLP .S2 __c6xabi_divd,B3,这样的语句,怎么告诉函数__c6xabi_divd(),它的两个入参?
入参不用担心的,在编译器会按照函数声明自动带入。
C语言能调用像__divf ,__c6xabi_divf这样的函数吗?