提交 18b41f95 编写于 作者: D Dmitry Poletaev 提交者: Richard Henderson

target-i386: fbld instruction doesn't set minus sign

Signed-off-by: NDmitry Poletaev <poletaev-qemu@yandex.ru>
Signed-off-by: NRichard Henderson <rth@twiddle.net>
上级 ea32aaf1
......@@ -639,7 +639,7 @@ void helper_fbld_ST0(CPUX86State *env, target_ulong ptr)
}
tmp = int64_to_floatx80(val, &env->fp_status);
if (cpu_ldub_data(env, ptr + 9) & 0x80) {
floatx80_chs(tmp);
tmp = floatx80_chs(tmp);
}
fpush(env);
ST0 = tmp;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册