Fix test case from PR 39639. This time around, be portable.

This commit is contained in:
dholland 2008-09-28 07:43:42 +00:00
parent e2a43ad977
commit 73c1f72053
2 changed files with 7 additions and 2 deletions

View File

@ -0,0 +1,7 @@
/* PR 39639: writing "long double" gave "long int" */
int
fail(long double *a, long int *b)
{
return a == b;
}

View File

@ -1,2 +0,0 @@
/* PR 39639 */
char a[sizeof(long double)] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};