MCPcopy Create free account
hub / github.com/WebAssembly/wabt / Set64BitPrecisionControl

Function Set64BitPrecisionControl

src/config.cc:63–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61typedef unsigned int FPControl;
62
63FPControl Set64BitPrecisionControl() {
64 FPControl old_ctrl = _control87(0, 0);
65 _control87(_PC_64, _MCW_PC);
66 return old_ctrl;
67}
68
69void ResetPrecisionControl(FPControl old_ctrl) {
70 _control87(old_ctrl, _MCW_PC);

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected