提交 d69d2ca9 编写于 作者: B blueswir1

Fix tadd op generation with GCC 4.x


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3196 c046a42c-6fe2-441c-8c8c-71466251a162
上级 0f8a249a
......@@ -520,8 +520,11 @@ void OPPROTO op_tadd_T1_T0_ccTV(void)
{
target_ulong src1;
if ((T0 & 0x03) || (T1 & 0x03))
if ((T0 & 0x03) || (T1 & 0x03)) {
raise_exception(TT_TOVF);
FORCE_RET();
return;
}
src1 = T0;
T0 += T1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册