summaryrefslogtreecommitdiff
path: root/gcc/testsuite/consistency.vlad/layout/size-double.c
blob: 635d75b86e996b439ea0a070cc1eee0e3d3c492f (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

static double d;

int main(void)
{
  printf ("+++Double size:\n");
  printf ("%d\n", sizeof (d));
  return 0;
}