Commit 1f28a07a by James E Wilson Committed by Jim Wilson

Fix stupidity.

* gcc.dg/large-size-array.c (DIM): Use USHRT_MAX not USHORT_MAX.

From-SVN: r103195
parent fe2ae685
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
......
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