* stabsread.c (read_huge_number): Attempt to compute value before
values that it depends on.
2007-08-10 Michael Snyder <msnyder@access-company.com>
+ * stabsread.c (read_huge_number): Attempt to compute value before
+ values that it depends on.
+
* linespec.c (decode_dollar): Dead code, ptr can't be non-null.
(decode_objc): Use "NULL" instead of 0.
(find_method): Ditto.
int nbits = 0;
int c;
long upper_limit;
- int twos_complement_representation = radix == 8 && twos_complement_bits > 0;
+ int twos_complement_representation;
if (*p == '-')
{
p++;
}
+ twos_complement_representation = radix == 8 && twos_complement_bits > 0;
upper_limit = LONG_MAX / radix;
while ((c = *p++) >= '0' && c < ('0' + radix))