Commit 2247a58c by James Van Artsdalen

(notice_update_cc): Only set CC_IN_80387 for float compares.

From-SVN: r2398
parent 5c8ad7f4
......@@ -1334,10 +1334,10 @@ notice_update_cc (exp)
if (SET_DEST (XVECEXP (exp, 0, 0)) == cc0_rtx)
{
CC_STATUS_INIT;
if (! stack_regs_mentioned_p (SET_SRC (XVECEXP (exp, 0, 0))))
if (stack_regs_mentioned_p (SET_SRC (XVECEXP (exp, 0, 0))))
cc_status.flags |= CC_IN_80387;
else
cc_status.value1 = SET_SRC (XVECEXP (exp, 0, 0));
cc_status.flags |= CC_IN_80387;
return;
}
CC_STATUS_INIT;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment