gpt4 book ai didi

c++ - FPU 控制字设置问题

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:35:52 25 4
gpt4 key购买 nike

我有一个函数是实用程序库的一部分,它在 C++ Builder 中编译和运行时创建的单元测试失败。问题函数如下。运行单元测试时,程序似乎卡在 fldcw controlWord 行,无法越过该行。似乎在等待着永远不会发生的事情。有什么想法吗?

void FPUControl::setControlWord(short controlWord)
{
// set the control word - note this assembly construct works on
// Visual C++ and Borland C++, but may need to be changed for other
// compilers
#ifndef __GNUC__
__asm
{
fldcw controlWord
}
#else
asm volatile
(
"fldcw %[controlWord]"
:
: [controlWord] "m" (controlWord)
);
#endif
}

最佳答案

您的代码对我来说工作正常(使用 C++ Builder 2007 验证)。

setControlWord(Default8087CW);

其中 Default8087CW 是 4978。

关于c++ - FPU 控制字设置问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4643841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com