Fix stupidity.
* gcc.dg/large-size-array.c (DIM): Use USHRT_MAX not USHORT_MAX. From-SVN: r103195
This commit is contained in:
parent
fe2ae685a1
commit
1f28a07aa6
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2005-08-16 James E Wilson <wilson@specifix.com>
|
||||
|
||||
* gcc.dg/large-size-array.c (DIM): Use USHRT_MAX not USHORT_MAX.
|
||||
|
||||
2005-08-16 Andrew Pinski <pinskia@physics.uc.edu>
|
||||
|
||||
PR tree-opt/23402
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#ifdef __LP64__
|
||||
#define DIM UINT_MAX>>1
|
||||
#else
|
||||
#define DIM USHORT_MAX>>1
|
||||
#define DIM USHRT_MAX>>1
|
||||
#endif
|
||||
|
||||
int
|
||||
|
|
Loading…
Add table
Reference in a new issue