view gcc/testsuite/gcc.dg/pch/struct-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

#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
}