]> git.proxmox.com Git - rustc.git/blame - src/llvm/test/SymbolRewriter/rewrite.map
Imported Upstream version 1.0.0+dfsg1
[rustc.git] / src / llvm / test / SymbolRewriter / rewrite.map
CommitLineData
85aaf69f
SL
1function: {
2 source: source_function,
3 target: target_function,
4}
5
6global variable: {
7 source: source_variable,
8 target: target_variable,
9}
10
11function: {
12 source: source_function_(.*),
13 transform: target_\1,
14}
15
16global variable: {
17 source: source_variable_(.*),
18 transform: target_\1,
19}
20
21function: {
22 source: naked_source_function,
23 target: naked_target_function,
24 naked: true,
25}
26
27function: {
28 source: imported_function,
29 target: exported_function,
30}
31
32function: {
33 source: missing_global_leader_prefix,
34 target: DO_NOT_REWRITE,
35}
36
37function: {
38 source: first_callee,
39 target: renamed_callee,
40}
41
42global alias: {
43 source: _ZN1SC1Ev,
44 target: _ZN1SD1Ev,
45}
46
47function: {
48 source: source_comdat_function,
49 target: target_comdat_function,
50}
51
52function: {
53 source: source_comdat_function_(.*),
54 transform: target_comdat_function_\1,
55}
56
57global variable: {
58 source: source_comdat_variable,
59 target: target_comdat_variable,
60}
61
62global variable: {
63 source: source_comdat_variable_(.*),
64 transform: target_comdat_variable_\1,
65}
66