YouCompleteMe/cpp/llvm/tools/clang/test/CodeGenCXX/member-init-anon-union.cpp
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

36 lines
619 B
C++

// RUN: %clang_cc1 %s -std=c++11 -emit-llvm -o - | FileCheck %s
// PR10531.
static union {
int a = 42;
char *b;
};
int f() { return a; }
// CHECK: define internal void @__cxx_global_var_init
// CHECK-NOT: }
// CHECK: call {{.*}}@"[[CONSTRUCT_GLOBAL:.*]]C1Ev"
int g() {
union {
int a;
int b = 81;
};
// CHECK: define {{.*}}_Z1gv
// CHECK-NOT: }
// CHECK: call {{.*}}@"[[CONSTRUCT_LOCAL:.*]]C1Ev"
return b;
}
// CHECK: define {{.*}}@"[[CONSTRUCT_LOCAL]]C2Ev"
// CHECK-NOT: }
// CHECK: store i32 81
// CHECK: define {{.*}}@"[[CONSTRUCT_GLOBAL]]C2Ev"
// CHECK-NOT: }
// CHECK: store i32 42