forked from OSchip/llvm-project
20 lines
198 B
C
20 lines
198 B
C
|
// RUN: clang -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;
|
||
|
}
|