repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
openmp_default_simd_align.c
blob
59fc7d699bfe9a219b936e77e6494878c3b5ee4e
1
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -O1 -emit-llvm -o - %s | FileCheck %s
2
3
enum
e0
{
E0
};
4
struct
s0
{
5
enum
e0 a
:
31
;
6
};
7
8
int
f0
(
void
) {
9
return
__builtin_omp_required_simd_align
(
struct
s0
);
10
// CHECK: ret i32 16
11
}