mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 01:28:00 -04:00
5 lines
235 B
C
5 lines
235 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.p0i8.{{.*}} align 4 {{.*}}, i1 false)
|
|
void q() { struct A a = {0}; }
|