Commit ed0ca1e1 by Jakub Jelinek Committed by Jakub Jelinek

re PR other/59545 (Signed integer overflow issues)

	PR other/59545
	* real.c (real_to_integer2): Change type of low to UHWI.

From-SVN: r208848
parent b9487dd8
2014-03-26 Jakub Jelinek <jakub@redhat.com>
PR other/59545
* real.c (real_to_integer2): Change type of low to UHWI.
2014-03-26 Tobias Burnus <burnus@net-b.de>
* gcc.c (LINK_COMMAND_SPEC): Use libcilkrts.spec for -fcilkplus.
......
......@@ -1377,7 +1377,8 @@ real_to_integer2 (HOST_WIDE_INT *plow, HOST_WIDE_INT *phigh,
const REAL_VALUE_TYPE *r)
{
REAL_VALUE_TYPE t;
HOST_WIDE_INT low, high;
unsigned HOST_WIDE_INT low;
HOST_WIDE_INT high;
int exp;
switch (r->cl)
......
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