
Conversion performed using the script at: https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 These are only tests where no manual fixup was required.
6 lines
237 B
C
6 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}; }
|