mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 11:50:47 -05:00
19 lines
201 B
C
19 lines
201 B
C
// RUN: clang-cc -emit-llvm -o - %s | not grep "zeroinitializer"
|
|
|
|
struct s {
|
|
int a;
|
|
};
|
|
|
|
static void *v;
|
|
|
|
static struct s a;
|
|
|
|
static struct s a = {
|
|
10
|
|
};
|
|
|
|
void *f()
|
|
{
|
|
if (a.a)
|
|
return v;
|
|
}
|