summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/alignof.c
blob: 64d0c08356870803f2e018df5313afe8faf5a34c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -triple i386-unknown-unknown -O1 -emit-llvm -o %t %s
// RUN: grep 'ret i32 4' %t

enum e0 { E0 };
struct s0 {
  enum e0         a:31;
};

struct s0 t1_tmp;
int f0() {
  return __alignof__(t1_tmp);
}