1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s 2*f4a2713aSLionel Sambuc struct A { short s; short t; int i; }; 3*f4a2713aSLionel Sambuc // CHECK: %a = alloca %struct.A, align 4 4*f4a2713aSLionel Sambuc // CHECK: call void @llvm.memset.p0i8.{{.*}}i32 4, i1 false) q()5*f4a2713aSLionel Sambucvoid q() { struct A a = {0}; } 6