我想用这个基准来评估我在编译器中的优化。
我可以编译int计算
main函数类型为float
我知道它在X86架构中是不允许的,所以我想知道是否有其他方法在X86上编译它。
谢谢! !
您只需创建一个float函数并在main函数中调用它。请阅读一些C教程。
我建议这个:https://www.tutorialspoint.com/cprogramming/index.htm
float computation(float f);
int main(int argc, char *argv[]) {
float test = 3.14;
test = computation(test);
return 0;
}
float computation(float f) {
f = f + f;
return f;
}