5 lines
237 B
C
5 lines
237 B
C
// 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}; }
|