genmodes.c (emit_max_int): Fixed missing parens.
2013-12-13 Kenneth Zadeck <zadeck@naturalbridge.com> * genmodes.c (emit_max_int): Fixed missing parens. From-SVN: r205970
This commit is contained in:
parent
17fc8d6f0e
commit
7424147986
@ -1,3 +1,7 @@
|
|||||||
|
2013-12-13 Kenneth Zadeck <zadeck@naturalbridge.com>
|
||||||
|
|
||||||
|
* genmodes.c (emit_max_int): Fixed missing parens.
|
||||||
|
|
||||||
2013-12-13 Aldy Hernandez <aldyh@redhat.com>
|
2013-12-13 Aldy Hernandez <aldyh@redhat.com>
|
||||||
|
|
||||||
PR tree-optimization/59149
|
PR tree-optimization/59149
|
||||||
|
@ -891,7 +891,7 @@ emit_max_int (void)
|
|||||||
max = i->bytesize;
|
max = i->bytesize;
|
||||||
if (max > mmax)
|
if (max > mmax)
|
||||||
mmax = max;
|
mmax = max;
|
||||||
printf ("#define MAX_BITSIZE_MODE_ANY_INT %d*BITS_PER_UNIT\n", mmax);
|
printf ("#define MAX_BITSIZE_MODE_ANY_INT (%d*BITS_PER_UNIT)\n", mmax);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
printf ("#define MAX_BITSIZE_MODE_ANY_INT %d\n", max_bitsize_mode_any_int);
|
printf ("#define MAX_BITSIZE_MODE_ANY_INT %d\n", max_bitsize_mode_any_int);
|
||||||
@ -901,7 +901,7 @@ emit_max_int (void)
|
|||||||
for (i = modes[j]; i; i = i->next)
|
for (i = modes[j]; i; i = i->next)
|
||||||
if (mmax < i->bytesize)
|
if (mmax < i->bytesize)
|
||||||
mmax = i->bytesize;
|
mmax = i->bytesize;
|
||||||
printf ("#define MAX_BITSIZE_MODE_ANY_MODE %d*BITS_PER_UNIT\n", mmax);
|
printf ("#define MAX_BITSIZE_MODE_ANY_MODE (%d*BITS_PER_UNIT)\n", mmax);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user