mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-03 10:20:42 +08:00
(eadd1): Check for overflow on X plus X.
From-SVN: r11782
This commit is contained in:
parent
bde304768e
commit
2dedbe1f31
@ -2663,8 +2663,15 @@ eadd1 (a, b, c)
|
||||
{
|
||||
if (bi[j] != 0)
|
||||
{
|
||||
/* This could overflow, but let emovo take care of that. */
|
||||
ltb += 1;
|
||||
if (ltb >= 0x7fff)
|
||||
{
|
||||
eclear (c);
|
||||
if (ai[0] != 0)
|
||||
eneg (c);
|
||||
einfin (c);
|
||||
return;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user