summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2003-09-30-StructLayout.c
blob: 45ef69ce60f818a5c30b629798c9baf5a190dff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null

enum En {
  ENUM_VAL
};

struct St {
  unsigned char A;
  enum En B;
  unsigned char C;
  enum En D;
  float E;
};


void func(struct St* A) {
  A->D = ENUM_VAL;
}