aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2007-11-07-ZeroAggregateAlign.c
blob: b059607ba5865de8c99405d01106a339794f8207 (plain) (blame)
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.p0i8.{{.*}}i32 4, i1 false)
void q() { struct A a = {0}; }