Commit eda190c5 by Martin v. Löwis

New test case.

From-SVN: r31048
parent 1948c2d9
int main( void )
{
unsigned long totalsize = 80;
unsigned long msize = 64;
if (sizeof(long) != 4)
exit(0);
if ( totalsize > (2147483647L * 2UL + 1)
|| (msize != 0 && ((msize - 1) > (2147483647L * 2UL + 1) )))
abort();
exit( 0 );
}
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