File: debug-linkage-name.rs

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (42 lines) | stat: -rw-r--r-- 1,243 bytes parent folder | download | duplicates (5)
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
39
40
41
42
// Verifies that linkage name is omitted when it is
// the same as variable / function name.
//
//@ compile-flags: -C no-prepopulate-passes -Copt-level=0
//@ compile-flags: -C debuginfo=2 -Copt-level=0
#![crate_type = "lib"]

pub mod xyz {
    // CHECK: !DIGlobalVariable(name: "A",
    // CHECK:                   linkageName:
    // CHECK-SAME:              line: 12,
    pub static A: u32 = 1;

    // CHECK: !DIGlobalVariable(name: "B",
    // CHECK-NOT:               linkageName:
    // CHECK-SAME:              line: 18,
    #[no_mangle]
    pub static B: u32 = 2;

    // CHECK: !DIGlobalVariable(name: "C",
    // CHECK-NOT:               linkageName:
    // CHECK-SAME:              line: 24,
    #[export_name = "C"]
    pub static C: u32 = 2;

    // CHECK: !DISubprogram(name: "e",
    // CHECK:               linkageName:
    // CHECK-SAME:          line: 29,
    pub extern "C" fn e() {}

    // CHECK: !DISubprogram(name: "f",
    // CHECK-NOT:           linkageName:
    // CHECK-SAME:          line: 35,
    #[no_mangle]
    pub extern "C" fn f() {}

    // CHECK: !DISubprogram(name: "g",
    // CHECK-NOT:           linkageName:
    // CHECK-SAME:          line: 41,
    #[export_name = "g"]
    pub extern "C" fn g() {}
}