blob: a8c4f0cdbd30ff6669dd6407c748717befdfeb8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
namespace foo {
// CHECK-NOT: @a = global i32
extern "C" int a;
// CHECK-NOT: @_ZN3foo1bE = global i32
extern int b;
// CHECK: @_ZN3foo1cE = global i32
int c = 5;
// CHECK-NOT: @_ZN3foo1dE
extern "C" struct d;
}
namespace test1 {
namespace {
struct X {};
}
extern "C" {
// CHECK: @test1_b = global
X test1_b = X();
}
void *use = &test1_b;
// CHECK: @_ZN5test13useE = global
}
namespace test2 {
namespace {
struct X {};
}
// CHECK: @test2_b = global
extern "C" X test2_b;
X test2_b;
}
|