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
/
2007-11-07-ZeroAggregateAlign.c
blob
3caf404d1fc01736d5c2fc687e36b2cfe051b2c5
1
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2
struct
A
{
short
s
;
short
t
;
int
i
; };
3
// CHECK: %a = alloca %struct.A, align 4
4
// CHECK: call void @llvm.memset.p0.{{.*}} align 4 {{.*}}, i1 false)
5
void
q
(
void
) {
struct
A a
= {
0
}; }