1 // RUN: %clang_cc1 -emit-llvm -std=c99 %s -o - | FileCheck %s
3 // Demonstrate that statics are properly zero initialized.
4 static _Complex
float f_global
;
6 static _Complex
double d_local
;
10 // CHECK-DAG: @func.d_local = internal global { double, double } zeroinitializer
11 // CHECK-DAG: @f_global = internal global { float, float } zeroinitializer