mirror of
https://github.com/intel/llvm.git
synced 2026-01-31 16:29:50 +08:00
- 'for i in $(find . -type f); do sed -e 's#\(RUN:.*[^ ]\) *&& *$#\1#g' $i | FileUpdate $i; done', for the curious. llvm-svn: 86430
13 lines
216 B
C
13 lines
216 B
C
// RUN: clang-cc -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);
|
|
}
|