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