blob: edeb0db771e5b952f83bc84409ec3638aa8f2738 [file] [log] [blame]
Daniel Dunbarb7d08442009-02-17 22:16:19 +00001// RUN: clang -triple i386-unknown-unknown -O1 -emit-llvm -o %t %s &&
2// RUN: grep 'ret i32 4' %t
3
4enum e0 { E0 };
5struct s0 {
6 enum e0 a:31;
7};
8
9struct s0 t1_tmp;
10int f0() {
11 return __alignof__(t1_tmp);
12}