diff options
| author | David Wood <david.wood@huawei.com> | 2023-08-23 15:29:23 +0100 |
|---|---|---|
| committer | David Wood <david.wood@huawei.com> | 2023-12-15 11:36:41 +0000 |
| commit | 07931c5a08d4836e127b63762fe310982172e9fa (patch) | |
| tree | 0c8f02c7b9b1ead5c6efe6563bb1af9c1f9bd371 /tests/codegen/debug-accessibility/crate-struct.rs | |
| parent | d253bf61ad38a59cc579aee688f81a06c31283d3 (diff) | |
| download | rust-07931c5a08d4836e127b63762fe310982172e9fa.tar.gz rust-07931c5a08d4836e127b63762fe310982172e9fa.zip | |
codegen_llvm: set DW_AT_accessibility
Sets the accessibility of types and fields in DWARF using `DW_AT_accessibility` attribute. `DW_AT_accessibility` (public/protected/private) isn't exactly right for Rust, but neither is `DW_AT_visibility` (local/exported/qualified), and there's no way to set `DW_AT_visbility` in LLVM's API. Signed-off-by: David Wood <david@davidtw.co>
Diffstat (limited to 'tests/codegen/debug-accessibility/crate-struct.rs')
| -rw-r--r-- | tests/codegen/debug-accessibility/crate-struct.rs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/codegen/debug-accessibility/crate-struct.rs b/tests/codegen/debug-accessibility/crate-struct.rs new file mode 100644 index 00000000000..68d126a3478 --- /dev/null +++ b/tests/codegen/debug-accessibility/crate-struct.rs @@ -0,0 +1,23 @@ +// compile-flags: -C debuginfo=2 + +#![allow(dead_code)] + +// Checks that visibility information is present in the debuginfo for crate-visibility structs. + +mod module { + use std::hint::black_box; + + pub(crate) struct CrateFooStruct { + x: u32, + } + + // CHECK: {{!.*}} = !DICompositeType(tag: DW_TAG_structure_type, name: "CrateFooStruct"{{.*}}flags: DIFlagProtected{{.*}}) + + pub fn use_everything() { + black_box(CrateFooStruct { x: 2 }); + } +} + +fn main() { + module::use_everything(); +} |
