blob: a8b43df8f67a42cd6ec81549944d1dc04cb64630 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2struct A { short s; short t; int i; };
3// CHECK: %a = alloca %struct.A, align 4
Eric Christopherb8f31ac2011-07-26 22:32:44 +00004// CHECK: call void @llvm.memset.p0i8.i64{{.*}}i32 4, i1 false)
Eric Christopher3883e662011-07-26 22:17:02 +00005void q() { struct A a = {0}; }