aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pch/struct-1.c
blob: 9559c07e9806a7e83432b4593564ab04a0e84698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "struct-1.h"

struct ChainSearchRecord {
 int identity;
};
typedef struct ChainSearchRecord ChainSearchRecord;
void foo (ChainSearchPtr s)
{
#if(__SIZEOF_INT__ >= 4)	
  s->identity = 0x6a73616d;
#else
   s->identity = 0x616d;
#endif
}